Searched refs:wordLength (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/ICU-531.30/icuSources/common/
H A Ddictbe.cpp255 int32_t wordLength; local
264 wordLength = 0;
271 wordLength = words[wordsFound % THAI_LOOKAHEAD].acceptMarked(text);
307 wordLength = words[wordsFound % THAI_LOOKAHEAD].acceptMarked(text);
316 if ((int32_t)utext_getNativeIndex(text) < rangeEnd && wordLength < THAI_ROOT_COMBINE_THRESHOLD) {
321 && (wordLength == 0
325 int32_t remaining = rangeEnd - (current+wordLength);
344 utext_setNativeIndex(text, current + wordLength + chars);
353 if (wordLength <= 0) {
358 wordLength
483 int32_t wordLength; local
684 int32_t wordLength; local
892 getKatakanaCost(int wordLength) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/xbm/
H A Dxbm.c42 int wordLength; /* Number of non-NULL bytes in word. */ member in struct:ParseInfo
365 parseInfoPtr->wordLength = 0;
378 parseInfoPtr->wordLength++;
379 if (num == 0 || parseInfoPtr->wordLength > MAX_WORD_LENGTH) {
384 if (parseInfoPtr->wordLength == 0) {
387 parseInfoPtr->word[parseInfoPtr->wordLength] = 0;
425 if ((pi->wordLength >= 6) && (pi->word[pi->wordLength-6] == '_')
426 && (strcmp(pi->word+pi->wordLength-6, "_width") == 0)) {
434 } else if ((pi->wordLength >
[all...]
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkImgBmap.c142 int wordLength; /* Number of non-NULL bytes in word. */ member in struct:ParseInfo
556 if ((pi.wordLength >= 6) && (pi.word[pi.wordLength-6] == '_')
557 && (strcmp(pi.word+pi.wordLength-6, "_width") == 0)) {
565 } else if ((pi.wordLength >= 7) && (pi.word[pi.wordLength-7] == '_')
566 && (strcmp(pi.word+pi.wordLength-7, "_height") == 0)) {
574 } else if ((pi.wordLength >= 6) && (pi.word[pi.wordLength-6] == '_')
575 && (strcmp(pi.word+pi.wordLength
[all...]
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkImgBmap.c150 int wordLength; /* Number of non-NULL bytes in word. */ member in struct:ParseInfo
577 if ((pi.wordLength >= 6) && (pi.word[pi.wordLength-6] == '_')
578 && (strcmp(pi.word+pi.wordLength-6, "_width") == 0)) {
586 } else if ((pi.wordLength >= 7) && (pi.word[pi.wordLength-7] == '_')
587 && (strcmp(pi.word+pi.wordLength-7, "_height") == 0)) {
595 } else if ((pi.wordLength >= 6) && (pi.word[pi.wordLength-6] == '_')
596 && (strcmp(pi.word+pi.wordLength
[all...]
/macosx-10.10/WebCore-7600.1.25/page/ios/
H A DFrameIOS.mm138 int wordLength = i - startOfWordBoundary;
139 RetainPtr<NSString> chunk = text.substring(startOfWordBoundary, wordLength).createNSStringWithoutCopying();
142 startOfWordBoundary += wordLength + 1;
193 int wordLength = i - startOfWordBoundary;
194 if (wordLength > 0) {
195 RetainPtr<NSString> chunk = text.substring(startOfWordBoundary, wordLength).createNSString();
198 startOfWordBoundary += wordLength + 1;
/macosx-10.10/WebCore-7600.1.25/editing/
H A DTextCheckingHelper.cpp85 int wordLength = wordEnd - wordStart; local
88 client.checkSpellingOfString(text.substring(wordStart, wordLength), &misspellingLocation, &misspellingLength);
92 ASSERT(misspellingLocation <= wordLength);
94 ASSERT(misspellingLocation + misspellingLength <= wordLength);
H A DEditor.cpp2124 int wordLength = word.length(); local
2129 return misspellingLength == wordLength ? word : String();
/macosx-10.10/WTF-7600.1.24/wtf/text/
H A DStringImpl.h949 unsigned wordLength = length >> 2;
950 for (unsigned i = 0; i != wordLength; ++i) {
977 unsigned wordLength = length >> 1;
978 for (unsigned i = 0; i != wordLength; ++i) {
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderBlockLineLayout.cpp495 int wordLength = lastEndOffset - wordMeasurement.startOffset; local
497 measuredWidth += renderer->width(wordMeasurement.startOffset, wordLength, xPos + measuredWidth, lineInfo.isFirstLine(),
500 if (i > 0 && wordLength == 1 && (c == ' ' || c == '\t'))

Completed in 320 milliseconds