Home | History | Annotate | Download | only in layoutex

Lines Matching refs:fCharCount

318                                  : fChars(chars), fCharCount(count),
331 fCharCount = -1;
351 fCharCount = -1;
415 fStyleRunInfo[run].glyphCount = fStyleRunInfo[run].engine->layoutChars(fChars, runStart, fStyleRunLimits[run] - runStart, fCharCount,
436 fCharToMinGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1);
437 fCharToMaxGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1);
492 fGlyphToCharMap[fGlyphCount] = fCharCount;
497 for (chIndex = 0; chIndex <= fCharCount; chIndex += 1) {
508 fCharToMinGlyphMap[fCharCount] = fGlyphCount;
516 fCharToMaxGlyphMap[fCharCount] = fGlyphCount;
519 fillMissingCharToGlyphMapValues(fCharToMinGlyphMap, fCharCount);
520 fillMissingCharToGlyphMapValues(fCharToMaxGlyphMap, fCharCount);
632 if (fAscent <= 0 && fCharCount > 0) {
641 if (fAscent <= 0 && fCharCount > 0) {
650 if (fAscent <= 0 && fCharCount > 0) {
659 return fLineEnd >= fCharCount;
698 fLineEnd = fCharCount;
712 fEmbeddingLevels = LE_NEW_ARRAY(UBiDiLevel, fCharCount);
724 fParaBidi = ubidi_openSized(fCharCount, 0, &bidiStatus);
725 ubidi_setPara(fParaBidi, fChars, fCharCount, paragraphLevel, fEmbeddingLevels, &bidiStatus);
750 UScriptRun *sr = uscript_openRun(fChars, fCharCount, &scriptStatus);
770 localeRuns->add(defaultLocale, fCharCount);
983 while (charIndex < fCharCount &&
992 UCharCharacterIterator *iter = new UCharCharacterIterator(fChars, fCharCount);
1017 fLineBidi = ubidi_openSized(fCharCount, 0, &bidiStatus);
1134 if (charIndex < 0 || charIndex > fCharCount) {