HomeSort by relevance Sort by last modified time
    Searched refs:InlineBox (Results 1 - 25 of 39) sorted by null

1 2

  /external/webkit/WebCore/rendering/
InlineBox.cpp 21 #include "InlineBox.h"
39 InlineBox::~InlineBox()
47 void InlineBox::remove()
53 void InlineBox::destroy(RenderArena* renderArena)
67 void* InlineBox::operator new(size_t sz, RenderArena* renderArena) throw()
72 void InlineBox::operator delete(void* ptr, size_t sz)
81 void InlineBox::showTreeForThis() const
88 int InlineBox::height() const
109 int InlineBox::caretMinOffset() const
    [all...]
EllipsisBox.h 23 #include "InlineBox.h"
30 class EllipsisBox : public InlineBox {
33 int width, int height, int y, bool firstLine, InlineBox* markupBox)
34 : InlineBox(obj, 0, y, width, firstLine, true, false, false, 0, 0, parent)
54 InlineBox* m_markupBox;
InlineRunBox.h 24 #include "InlineBox.h"
28 class InlineRunBox : public InlineBox {
31 : InlineBox(obj)
SVGCharacterLayoutInfo.h 39 class InlineBox;
254 InlineBox* box;
298 virtual void start(InlineBox*) = 0;
299 virtual void end(InlineBox*) = 0;
301 virtual bool setupBackground(InlineBox*) = 0;
302 virtual bool setupFill(InlineBox*) = 0;
303 virtual bool setupFillSelection(InlineBox*) = 0;
304 virtual bool setupStroke(InlineBox*) = 0;
305 virtual bool setupStrokeSelection(InlineBox*) = 0;
306 virtual bool setupForeground(InlineBox*) = 0
    [all...]
BidiRun.h 34 class InlineBox;
60 InlineBox* m_box;
InlineBox.h 34 // InlineBox represents a rectangle that occurs on a line. It corresponds to
36 class InlineBox {
38 InlineBox(RenderObject* obj)
70 InlineBox(RenderObject* obj, int x, int y, int width, bool firstLine, bool constructed,
71 bool dirty, bool extracted, InlineBox* next, InlineBox* prev, InlineFlowBox* parent)
103 virtual ~InlineBox();
163 InlineBox* nextOnLine() const { return m_next; }
164 InlineBox* prevOnLine() const { return m_prev; }
165 void setNextOnLine(InlineBox* next
    [all...]
RootInlineBox.h 86 void childRemoved(InlineBox* box);
89 void placeEllipsis(const AtomicString& ellipsisStr, bool ltr, int blockLeftEdge, int blockRightEdge, int ellipsisWidth, InlineBox* markupBox = 0);
111 InlineBox* firstSelectedBox();
112 InlineBox* lastSelectedBox();
119 InlineBox* closestLeafChildForXPos(int x, bool onlyEditableLeaves = false);
RenderSVGInlineText.h 49 virtual IntRect localCaretRect(InlineBox*, int caretOffset, int* extraWidthToEndOfLine = 0);
RootInlineBox.cpp 84 InlineBox* markupBox)
194 void RootInlineBox::childRemoved(InlineBox* box)
246 InlineBox* firstBox = firstSelectedBox();
247 InlineBox* lastBox = lastSelectedBox();
268 for (InlineBox* box = firstBox->nextLeafChild(); box; box = box->nextLeafChild()) {
296 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
312 InlineBox* RootInlineBox::firstSelectedBox()
314 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
322 InlineBox* RootInlineBox::lastSelectedBox()
324 for (InlineBox* box = lastLeafChild(); box; box = box->prevLeafChild())
    [all...]
InlineFlowBox.h 60 InlineBox* firstChild() const { checkConsistency(); return m_firstChild; }
61 InlineBox* lastChild() const { checkConsistency(); return m_lastChild; }
65 InlineBox* firstLeafChild() const;
66 InlineBox* lastLeafChild() const;
70 InlineBox::setConstructed();
75 void addToLine(InlineBox* child);
131 void removeChild(InlineBox* child);
170 InlineBox* m_firstChild;
171 InlineBox* m_lastChild;
InlineFlowBox.cpp 49 for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
58 for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
65 void InlineFlowBox::addToLine(InlineBox* child)
88 void InlineFlowBox::removeChild(InlineBox* child)
113 InlineBox* child = firstChild();
114 InlineBox* next = 0;
142 for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
155 for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
167 for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
244 for (InlineBox* currChild = firstChild(); currChild; currChild = currChild->nextOnLine())
    [all...]
RenderListMarker.h 58 virtual InlineBox* createInlineBox();
RenderBox.h 191 void positionLineBox(InlineBox*);
193 virtual InlineBox* createInlineBox();
199 InlineBox* inlineBoxWrapper() const { return m_inlineBoxWrapper; }
200 void setInlineBoxWrapper(InlineBox* boxWrapper) { m_inlineBoxWrapper = boxWrapper; }
260 virtual IntRect localCaretRect(InlineBox*, int caretOffset, int* extraWidthToEndOfLine = 0);
375 InlineBox* m_inlineBoxWrapper;
RenderText.h 68 void positionLineBox(InlineBox*);
97 virtual IntRect localCaretRect(InlineBox*, int caretOffset, int* extraWidthToEndOfLine = 0);
RenderSVGText.cpp 129 for (InlineBox* box = flowBox->firstChild(); box; box = box->nextOnLine()) {
150 for (InlineBox* box = flowBox->firstChild(); box; box = box->nextOnLine()) {
176 for (InlineBox* box = flowBox->firstChild(); box; box = box->nextOnLine())
SVGRootInlineBox.cpp 366 bool mayHaveSelection(InlineBox* box) const
395 void chunkStartCallback(InlineBox* box)
414 void chunkEndCallback(InlineBox* box)
439 bool chunkSetupBackgroundCallback(InlineBox* /*box*/)
445 bool chunkSetupFillCallback(InlineBox* box)
467 bool chunkSetupFillSelectionCallback(InlineBox* box)
495 bool chunkSetupStrokeCallback(InlineBox* box)
519 bool chunkSetupStrokeSelectionCallback(InlineBox* box)
548 bool chunkSetupForegroundCallback(InlineBox* /*box*/)
883 InlineBox* curBox = range.box
    [all...]
RenderListMarker.cpp     [all...]
RenderSVGInlineText.cpp 141 IntRect RenderSVGInlineText::localCaretRect(InlineBox*, int, int*)
RenderBlock.h 368 virtual IntRect localCaretRect(InlineBox*, int caretOffset, int* extraWidthToEndOfLine = 0);
379 Position positionForBox(InlineBox*, bool start = true) const;
RenderLineBoxList.cpp 276 InlineBox* wrapper = toRenderBox(curr)->inlineBoxWrapper();
  /external/webkit/WebCore/editing/
VisiblePosition.h 48 class InlineBox;
87 void getInlineBoxAndOffset(InlineBox*& inlineBox, int& caretOffset) const
89 m_deepPosition.getInlineBoxAndOffset(m_affinity, inlineBox, caretOffset);
92 void getInlineBoxAndOffset(TextDirection primaryDirection, InlineBox*& inlineBox, int& caretOffset) const
94 m_deepPosition.getInlineBoxAndOffset(m_affinity, primaryDirection, inlineBox, caretOffset);
VisiblePosition.cpp 122 InlineBox* box;
144 InlineBox* prevBox = box->prevLeafChild();
158 InlineBox* prevBox = box->prevLeafChild();
166 InlineBox* nextBox = box;
174 while (InlineBox* prevBox = box->prevLeafChild()) {
201 while (InlineBox* nextBox = box->nextLeafChild()) {
209 while (InlineBox* prevBox = box->prevLeafChild()) {
264 InlineBox* box;
286 InlineBox* nextBox = box->nextLeafChild();
300 InlineBox* nextBox = box->nextLeafChild()
    [all...]
visible_units.cpp 362 InlineBox* box;
398 InlineBox *startBox = rootBox->firstLeafChild();
466 InlineBox *endBox = rootBox->lastLeafChild();
567 InlineBox* box;
669 InlineBox* box;
    [all...]
  /external/webkit/WebCore/dom/
Position.h 40 class InlineBox;
158 void getInlineBoxAndOffset(EAffinity, InlineBox*&, int& caretOffset) const;
159 void getInlineBoxAndOffset(EAffinity, TextDirection primaryDirection, InlineBox*&, int& caretOffset) const;
Position.cpp 560 InlineBox* otherBox = box;
682 InlineBox* otherBox = box;
874 InlineBox* b1;
876 InlineBox* b2;
    [all...]

Completed in 1189 milliseconds

1 2