Searched refs:prevBox (Results 1 – 3 of 3) sorted by relevance
137 InlineBox* prevBox = box->prevLeafChild(); in leftVisuallyDistinctCandidate() local138 if (!prevBox) { in leftVisuallyDistinctCandidate()152 box = prevBox; in leftVisuallyDistinctCandidate()154 offset = prevBox->caretRightmostOffset(); in leftVisuallyDistinctCandidate()161 InlineBox* prevBox = box->prevLeafChild(); in leftVisuallyDistinctCandidate() local164 if (!prevBox) { in leftVisuallyDistinctCandidate()173 if (prevBox->bidiLevel() >= level) in leftVisuallyDistinctCandidate()176 level = prevBox->bidiLevel(); in leftVisuallyDistinctCandidate()186 box = prevBox; in leftVisuallyDistinctCandidate()194 if (prevBox) { in leftVisuallyDistinctCandidate()[all …]
552 InlineTextBox* prevBox = 0; in deleteInsignificantText() local557 while (prevBox || box) { in deleteInsignificantText()558 unsigned gapStart = prevBox ? prevBox->start() + prevBox->len() : 0; in deleteInsignificantText()576 prevBox = box; in deleteInsignificantText()
1127 InlineBox* prevBox = inlineBox; in getInlineBoxAndOffset() local1129 prevBox = prevBox->prevLeafChild(); in getInlineBoxAndOffset()1130 } while (prevBox && prevBox->bidiLevel() > level); in getInlineBoxAndOffset()1132 if (prevBox && prevBox->bidiLevel() == level) // For example, abc FED 123 ^ CBA in getInlineBoxAndOffset()1143 InlineBox* prevBox = inlineBox->prevLeafChild(); in getInlineBoxAndOffset() local1144 if (!prevBox || prevBox->bidiLevel() >= level) in getInlineBoxAndOffset()1147 level = prevBox->bidiLevel(); in getInlineBoxAndOffset()1156 while (InlineBox* prevBox = inlineBox->prevLeafChild()) { in getInlineBoxAndOffset() local1157 if (prevBox->bidiLevel() < level) in getInlineBoxAndOffset()1159 inlineBox = prevBox; in getInlineBoxAndOffset()[all …]