Lines Matching defs:numLines
74 int numLines; /* Number of structs at *linePtr. */
246 textPtr->numLines = 0;
521 int numLines, wrapPixels, maxLinePixels, leftX, topY, y;
544 for (numLines = 0; (numLines < MAX_LINES); numLines++) {
552 lineStart[numLines] = p;
553 lineChars[numLines] = numChars;
554 linePixels[numLines] = numPixels;
576 numLines++;
598 topY -= (lineHeight * numLines)/2;
604 topY -= lineHeight * numLines;
632 if (numLines > 0) {
634 (numLines * sizeof(TextLine)));
638 textPtr->numLines = numLines;
640 i < numLines; i++, linePtr++, y += lineHeight) {
643 if (i == (numLines-1)) {
676 textPtr->header.y2 = topY + numLines*lineHeight;
677 for (linePtr = textPtr->linePtr, i = textPtr->numLines; i > 0;
748 for (linePtr = textPtr->linePtr, i = textPtr->numLines;
1089 for (linePtr = textPtr->linePtr, i = textPtr->numLines;
1175 for (linePtr = textPtr->linePtr, i = textPtr->numLines;
1363 if (i >= textPtr->numLines) {
1538 for (i = textPtr->numLines, linePtr = textPtr->linePtr;