Lines Matching refs:numChars
36 int numChars; /* Number of characters in string, not
233 msgPtr->numChars = 0;
462 msgPtr->numChars = strlen(msgPtr->string);
568 msgPtr->numChars - (p - msgPtr->string), 0, width, 0,
638 int x, y, lineLength, numChars, charsLeft;
673 for (p = msgPtr->string, charsLeft = msgPtr->numChars; *p != 0;
680 numChars = TkMeasureChars(msgPtr->fontPtr, p, charsLeft, 0,
701 msgPtr->textGC, msgPtr->fontPtr, p, numChars, x, y, x, 0);
702 p += numChars;
703 charsLeft -= numChars;
896 msgPtr->numChars = strlen(value);
897 msgPtr->string = (char *) ckalloc((unsigned) (msgPtr->numChars + 1));