• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/tcl-102/tk/tk/generic/

Lines Matching defs:chunks

57  * and displayed by low-level text calls. In general, chunks will be delimited
60 * chunk, but not between characters in different chunks.
96 int numChunks; /* Number of chunks actually used in following
98 LayoutChunk chunks[1]; /* Array of chunks. The actual size will be
2165 * Remember width of this line, so that all chunks on this line can be
2181 if (layoutPtr->chunks[layoutPtr->numChunks - 1].start[0] == '\n') {
2202 layoutPtr->chunks[0].start = string;
2203 layoutPtr->chunks[0].numBytes = 0;
2204 layoutPtr->chunks[0].numChars = 0;
2205 layoutPtr->chunks[0].numDisplayChars = -1;
2206 layoutPtr->chunks[0].x = 0;
2207 layoutPtr->chunks[0].y = fmPtr->ascent;
2208 layoutPtr->chunks[0].totalWidth = 0;
2209 layoutPtr->chunks[0].displayWidth = 0;
2212 * Using maximum line length, shift all the chunks so that the lines
2217 chunkPtr = layoutPtr->chunks;
2329 chunkPtr = layoutPtr->chunks;
2471 lastPtr = chunkPtr = layoutPtr->chunks;
2478 * Point is to the left of all chunks on this line. Return the
2496 * Examine all chunks on this line to see which one contains the
2527 * Point is to the right of all chars in all the chunks on this
2613 chunkPtr = layoutPtr->chunks;
2724 chunkPtr = layoutPtr->chunks;
2809 * Scan the chunks one at a time, seeing whether each is entirely in,
2811 * return immediately; otherwise wait until all chunks have been processed
2816 chunkPtr = layoutPtr->chunks;
2914 chunkPtr = layoutPtr->chunks;
3376 * The text layout is reallocated to hold more chunks as necessary.
3380 * their own chunks. All characters in the text layout are accounted for.
3411 chunkPtr = &layoutPtr->chunks[layoutPtr->numChunks];
3925 || (layoutPtr->chunks->numDisplayChars <= 0)) {
3929 chunkPtr = layoutPtr->chunks;