OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:firstRootBox
(Results
1 - 2
of
2
) sorted by null
/external/webkit/WebCore/rendering/
RenderBlock.h
108
RootInlineBox*
firstRootBox
() const { return static_cast<RootInlineBox*>(firstLineBox()); }
RenderText.cpp
841
RootInlineBox*
firstRootBox
= 0;
856
if (!
firstRootBox
) {
857
firstRootBox
= root;
861
firstRootBox
->markDirty();
885
if (
firstRootBox
) {
886
RootInlineBox* prev =
firstRootBox
->prevRootBox();
888
firstRootBox
= prev;
891
firstRootBox
= lastTextBox()->root();
892
firstRootBox
->markDirty();
895
for (RootInlineBox* curr =
firstRootBox
; curr && curr != lastRootBox; curr = curr->nextRootBox())
[
all
...]
Completed in 151 milliseconds