• Home
  • Raw
  • Download

Lines Matching refs:fCharCount

320                                  : fChars(chars), fCharCount(count),  in ParagraphLayout()
333 fCharCount = -1; in ParagraphLayout()
356 fCharCount = -1; in ParagraphLayout()
420 …tyleRunInfo[run].engine->layoutChars(fChars, runStart, fStyleRunLimits[run] - runStart, fCharCount, in ParagraphLayout()
441 fCharToMinGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1); in ParagraphLayout()
442 fCharToMaxGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1); in ParagraphLayout()
497 fGlyphToCharMap[fGlyphCount] = fCharCount; in ParagraphLayout()
502 for (chIndex = 0; chIndex <= fCharCount; chIndex += 1) { in ParagraphLayout()
513 fCharToMinGlyphMap[fCharCount] = fGlyphCount; in ParagraphLayout()
521 fCharToMaxGlyphMap[fCharCount] = fGlyphCount; in ParagraphLayout()
524 fillMissingCharToGlyphMapValues(fCharToMinGlyphMap, fCharCount); in ParagraphLayout()
525 fillMissingCharToGlyphMapValues(fCharToMaxGlyphMap, fCharCount); in ParagraphLayout()
637 if (fAscent <= 0 && fCharCount > 0) { in getAscent()
646 if (fAscent <= 0 && fCharCount > 0) { in getDescent()
655 if (fAscent <= 0 && fCharCount > 0) { in getLeading()
664 return fLineEnd >= fCharCount; in isDone()
703 fLineEnd = fCharCount; in nextLine()
717 fEmbeddingLevels = LE_NEW_ARRAY(UBiDiLevel, fCharCount); in computeLevels()
729 fParaBidi = ubidi_openSized(fCharCount, 0, &bidiStatus); in computeLevels()
730 ubidi_setPara(fParaBidi, fChars, fCharCount, paragraphLevel, fEmbeddingLevels, &bidiStatus); in computeLevels()
755 UScriptRun *sr = uscript_openRun(fChars, fCharCount, &scriptStatus); in computeScripts()
775 localeRuns->add(defaultLocale, fCharCount); in computeLocales()
988 while (charIndex < fCharCount && in previousBreak()
997 UCharCharacterIterator *iter = new UCharCharacterIterator(fChars, fCharCount); in previousBreak()
1022 fLineBidi = ubidi_openSized(fCharCount, 0, &bidiStatus); in computeVisualRuns()
1139 if (charIndex < 0 || charIndex > fCharCount) { in getCharRun()