Home
last modified time | relevance | path

Searched refs:nextBox (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/editing/
DVisiblePosition.cpp178 InlineBox* nextBox = box; in leftVisuallyDistinctCandidate() local
180 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() local
210 if (nextBox->bidiLevel() < level) in leftVisuallyDistinctCandidate()
212 box = nextBox; in leftVisuallyDistinctCandidate()
288 InlineBox* nextBox = box->nextLeafChild(); in rightVisuallyDistinctCandidate() local
289 if (!nextBox) { in rightVisuallyDistinctCandidate()
303 box = nextBox; in rightVisuallyDistinctCandidate()
[all …]
/external/webkit/Source/WebCore/dom/
DPosition.cpp1122 InlineBox* nextBox = inlineBox->nextLeafChild(); in getInlineBoxAndOffset() local
1123 if (!nextBox || nextBox->bidiLevel() >= level) in getInlineBoxAndOffset()
1126 level = nextBox->bidiLevel(); in getInlineBoxAndOffset()
1136 while (InlineBox* nextBox = inlineBox->nextLeafChild()) { in getInlineBoxAndOffset() local
1137 if (nextBox->bidiLevel() < level) in getInlineBoxAndOffset()
1139 inlineBox = nextBox; in getInlineBoxAndOffset()
1148 InlineBox* nextBox = inlineBox; in getInlineBoxAndOffset() local
1150 nextBox = nextBox->nextLeafChild(); in getInlineBoxAndOffset()
1151 } while (nextBox && nextBox->bidiLevel() > level); in getInlineBoxAndOffset()
1153 if (nextBox && nextBox->bidiLevel() == level) in getInlineBoxAndOffset()
[all …]