Home
last modified time | relevance | path

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

/external/webkit/WebCore/editing/
DVisiblePosition.cpp166 InlineBox* nextBox = box; in leftVisuallyDistinctCandidate() local
168 nextBox = nextBox->nextLeafChild(); in leftVisuallyDistinctCandidate()
169 } while (nextBox && nextBox->bidiLevel() > level); in leftVisuallyDistinctCandidate()
171 if (nextBox && nextBox->bidiLevel() == level) in leftVisuallyDistinctCandidate()
201 while (InlineBox* nextBox = box->nextLeafChild()) { in leftVisuallyDistinctCandidate() local
202 if (nextBox->bidiLevel() < level) in leftVisuallyDistinctCandidate()
204 box = nextBox; in leftVisuallyDistinctCandidate()
286 InlineBox* nextBox = box->nextLeafChild(); in rightVisuallyDistinctCandidate() local
287 if (!nextBox) in rightVisuallyDistinctCandidate()
291 box = nextBox; in rightVisuallyDistinctCandidate()
[all …]
/external/webkit/WebCore/dom/
DPosition.cpp1064 InlineBox* nextBox = inlineBox->nextLeafChild(); in getInlineBoxAndOffset() local
1065 if (!nextBox || nextBox->bidiLevel() >= level) in getInlineBoxAndOffset()
1068 level = nextBox->bidiLevel(); in getInlineBoxAndOffset()
1078 while (InlineBox* nextBox = inlineBox->nextLeafChild()) { in getInlineBoxAndOffset() local
1079 if (nextBox->bidiLevel() < level) in getInlineBoxAndOffset()
1081 inlineBox = nextBox; in getInlineBoxAndOffset()
1090 InlineBox* nextBox = inlineBox; in getInlineBoxAndOffset() local
1092 nextBox = nextBox->nextLeafChild(); in getInlineBoxAndOffset()
1093 } while (nextBox && nextBox->bidiLevel() > level); in getInlineBoxAndOffset()
1095 if (nextBox && nextBox->bidiLevel() == level) in getInlineBoxAndOffset()
[all …]