Lines Matching refs:fCharCount
318 : fChars(chars), fCharCount(count), in ParagraphLayout()
331 fCharCount = -1; in ParagraphLayout()
354 fCharCount = -1; in ParagraphLayout()
418 …tyleRunInfo[run].engine->layoutChars(fChars, runStart, fStyleRunLimits[run] - runStart, fCharCount, in ParagraphLayout()
439 fCharToMinGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1); in ParagraphLayout()
440 fCharToMaxGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1); in ParagraphLayout()
495 fGlyphToCharMap[fGlyphCount] = fCharCount; in ParagraphLayout()
500 for (chIndex = 0; chIndex <= fCharCount; chIndex += 1) { in ParagraphLayout()
511 fCharToMinGlyphMap[fCharCount] = fGlyphCount; in ParagraphLayout()
519 fCharToMaxGlyphMap[fCharCount] = fGlyphCount; in ParagraphLayout()
522 fillMissingCharToGlyphMapValues(fCharToMinGlyphMap, fCharCount); in ParagraphLayout()
523 fillMissingCharToGlyphMapValues(fCharToMaxGlyphMap, fCharCount); in ParagraphLayout()
635 if (fAscent <= 0 && fCharCount > 0) { in getAscent()
644 if (fAscent <= 0 && fCharCount > 0) { in getDescent()
653 if (fAscent <= 0 && fCharCount > 0) { in getLeading()
662 return fLineEnd >= fCharCount; in isDone()
701 fLineEnd = fCharCount; in nextLine()
715 fEmbeddingLevels = LE_NEW_ARRAY(UBiDiLevel, fCharCount); in computeLevels()
727 fParaBidi = ubidi_openSized(fCharCount, 0, &bidiStatus); in computeLevels()
728 ubidi_setPara(fParaBidi, fChars, fCharCount, paragraphLevel, fEmbeddingLevels, &bidiStatus); in computeLevels()
753 UScriptRun *sr = uscript_openRun(fChars, fCharCount, &scriptStatus); in computeScripts()
773 localeRuns->add(defaultLocale, fCharCount); in computeLocales()
986 while (charIndex < fCharCount && in previousBreak()
995 UCharCharacterIterator *iter = new UCharCharacterIterator(fChars, fCharCount); in previousBreak()
1020 fLineBidi = ubidi_openSized(fCharCount, 0, &bidiStatus); in computeVisualRuns()
1137 if (charIndex < 0 || charIndex > fCharCount) { in getCharRun()