Searched refs:nextBox (Results 1 – 2 of 2) sorted by relevance
178 InlineBox* nextBox = box; in leftVisuallyDistinctCandidate() local180 nextBox = nextBox->nextLeafChild(); in leftVisuallyDistinctCandidate()181 } while (nextBox && nextBox->bidiLevel() > level); in leftVisuallyDistinctCandidate()183 if (nextBox && nextBox->bidiLevel() == level) in leftVisuallyDistinctCandidate()209 while (InlineBox* nextBox = box->nextLeafChild()) { in leftVisuallyDistinctCandidate() local210 if (nextBox->bidiLevel() < level) in leftVisuallyDistinctCandidate()212 box = nextBox; in leftVisuallyDistinctCandidate()288 InlineBox* nextBox = box->nextLeafChild(); in rightVisuallyDistinctCandidate() local289 if (!nextBox) { in rightVisuallyDistinctCandidate()303 box = nextBox; in rightVisuallyDistinctCandidate()[all …]
1122 InlineBox* nextBox = inlineBox->nextLeafChild(); in getInlineBoxAndOffset() local1123 if (!nextBox || nextBox->bidiLevel() >= level) in getInlineBoxAndOffset()1126 level = nextBox->bidiLevel(); in getInlineBoxAndOffset()1136 while (InlineBox* nextBox = inlineBox->nextLeafChild()) { in getInlineBoxAndOffset() local1137 if (nextBox->bidiLevel() < level) in getInlineBoxAndOffset()1139 inlineBox = nextBox; in getInlineBoxAndOffset()1148 InlineBox* nextBox = inlineBox; in getInlineBoxAndOffset() local1150 nextBox = nextBox->nextLeafChild(); in getInlineBoxAndOffset()1151 } while (nextBox && nextBox->bidiLevel() > level); in getInlineBoxAndOffset()1153 if (nextBox && nextBox->bidiLevel() == level) in getInlineBoxAndOffset()[all …]