Home | History | Annotate | Download | only in editing

Lines Matching refs:box

122     InlineBox* box = atLeftmostOffsetInBox() ? prevLeafChild() : m_inlineBox;
123 return box ? box->bidiLevel() : 0;
128 InlineBox* box = atRightmostOffsetInBox() ? nextLeafChild() : m_inlineBox;
129 return box ? box->bidiLevel() : 0;
137 InlineBox* box = m_inlineBox;
139 InlineBox* prev = box->prevLeafChildIgnoringLineBreak();
141 return RenderedPosition(box->renderer(), box, box->caretLeftmostOffset());
142 box = prev;
143 } while (box);
154 InlineBox* box = m_inlineBox;
156 InlineBox* next = box->nextLeafChildIgnoringLineBreak();
158 return RenderedPosition(box->renderer(), box, box->caretRightmostOffset());
159 box = next;
160 } while (box);