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

1 2

  /external/webkit/WebCore/rendering/
RenderText.h 30 class InlineTextBox;
47 void extractTextBox(InlineTextBox*);
48 void attachTextBox(InlineTextBox*);
49 void removeTextBox(InlineTextBox*);
55 InlineTextBox* createInlineTextBox();
104 InlineTextBox* firstTextBox() const { return m_firstTextBox; }
105 InlineTextBox* lastTextBox() const { return m_lastTextBox; }
117 InlineTextBox* findNextInlineTextBox(int offset, int& pos) const;
133 virtual InlineTextBox* createTextBox(); // Subclassed by SVG.
156 InlineTextBox* m_firstTextBox
    [all...]
InlineTextBox.h 36 // Helper functions shared by InlineTextBox / SVGRootInlineBox
40 class InlineTextBox : public InlineRunBox {
42 InlineTextBox(RenderObject* obj)
50 InlineTextBox* nextTextBox() const { return static_cast<InlineTextBox*>(nextLineBox()); }
51 InlineTextBox* prevTextBox() const { return static_cast<InlineTextBox*>(prevLineBox()); }
141 inline RenderText* InlineTextBox::textRenderer() const
SVGRootInlineBox.h 35 class InlineTextBox;
83 void buildLayoutInformationForTextBox(SVGCharacterLayoutInfo&, InlineTextBox*, LastGlyphInfo&);
98 TextRun svgTextRunForInlineTextBox(const UChar*, int len, RenderStyle* style, const InlineTextBox* textBox, float xPos);
RenderSVGInlineText.h 54 virtual InlineTextBox* createTextBox();
RenderText.cpp 33 #include "InlineTextBox.h"
136 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
145 void RenderText::extractTextBox(InlineTextBox* box)
161 void RenderText::attachTextBox(InlineTextBox* box)
170 InlineTextBox* last = box;
171 for (InlineTextBox* curr = box; curr; curr = curr->nextTextBox()) {
180 void RenderText::removeTextBox(InlineTextBox* box)
200 InlineTextBox* next;
201 for (InlineTextBox* curr = firstTextBox(); curr; curr = next) {
217 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()
    [all...]
InlineTextBox.cpp 24 #include "InlineTextBox.h"
46 int InlineTextBox::selectionTop()
51 int InlineTextBox::selectionHeight()
56 bool InlineTextBox::isSelected(int startPos, int endPos) const
63 RenderObject::SelectionState InlineTextBox::selectionState()
106 IntRect InlineTextBox::selectionRect(int tx, int ty, int startPos, int endPos)
128 void InlineTextBox::deleteLine(RenderArena* arena)
134 void InlineTextBox::extractLine()
142 void InlineTextBox::attachLine()
150 int InlineTextBox::placeEllipsisBox(bool flowIsLTR, int visibleLeftEdge, int visibleRightEdge, int ellipsisWidth, bo (…)
    [all...]
RenderSVGInlineText.cpp 128 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
134 InlineTextBox* RenderSVGInlineText::createTextBox()
136 InlineTextBox* box = new (renderArena()) SVGInlineTextBox(this);
SVGInlineTextBox.h 26 #include "InlineTextBox.h"
51 class SVGInlineTextBox : public InlineTextBox {
SVGRootInlineBox.cpp 718 InlineTextBox* textBox = static_cast<InlineTextBox*>(range.box);
731 InlineTextBox* textBox = static_cast<InlineTextBox*>(range.box);
738 TextRun svgTextRunForInlineTextBox(const UChar* c, int len, RenderStyle* style, const InlineTextBox* textBox, float xPos)
    [all...]
InlineFlowBox.cpp 27 #include "InlineTextBox.h"
273 InlineTextBox* text = static_cast<InlineTextBox*>(curr);
415 static_cast<InlineTextBox*>(curr)->takeFallbackFonts(usedFonts);
557 InlineTextBox* text = static_cast<InlineTextBox*>(curr);
    [all...]
RenderTreeAsText.cpp 37 #include "InlineTextBox.h"
374 static void writeTextRun(TextStream& ts, const RenderText& o, const InlineTextBox& run)
425 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
RenderLineBoxList.cpp 32 #include "InlineTextBox.h"
280 InlineTextBox* textBox = toRenderText(curr)->lastTextBox();
RenderBlockLineLayout.cpp 28 #include "InlineTextBox.h"
187 InlineTextBox* textBox = toRenderText(obj)->createInlineTextBox();
300 InlineTextBox* text = static_cast<InlineTextBox*>(box);
368 static_cast<InlineTextBox*>(r->m_box)->setFallbackFonts(fallbackFonts);
472 static_cast<InlineTextBox*>(r->m_box)->setSpaceAdd(spaceAdd);
    [all...]
SVGInlineTextBox.cpp 42 : InlineTextBox(obj)
SVGRenderTreeAsText.cpp 35 #include "InlineTextBox.h"
448 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox())
  /external/webkit/WebCore/dom/
Position.cpp 355 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
545 InlineTextBox* lastTextBox = textRenderer->lastTextBox();
546 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
565 if (otherBox == lastTextBox || (otherBox->renderer() == textRenderer && static_cast<InlineTextBox*>(otherBox)->start() > textOffset))
574 if (otherBox == lastTextBox || (otherBox->renderer() == textRenderer && static_cast<InlineTextBox*>(otherBox)->start() > textOffset))
667 InlineTextBox* lastTextBox = textRenderer->lastTextBox();
668 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
687 if (otherBox == lastTextBox || (otherBox->renderer() == textRenderer && static_cast<InlineTextBox*>(otherBox)->start() >= textOffset))
696 if (otherBox == lastTextBox || (otherBox->renderer() == textRenderer && static_cast<InlineTextBox*>(otherBox)->start() >= textOffset))
772 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox())
    [all...]
  /external/webkit/WebCore/editing/
TextIterator.h 29 #include "InlineTextBox.h"
127 InlineTextBox* m_textBox;
138 Vector<InlineTextBox*> m_sortedTextBoxes;
TextIterator.cpp 35 #include "InlineTextBox.h"
425 static inline bool compareBoxStart(const InlineTextBox* first, const InlineTextBox* second)
468 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
491 InlineTextBox* firstTextBox = renderer->containsReversedText() ? m_sortedTextBoxes[0] : renderer->firstTextBox();
508 InlineTextBox* nextTextBox = 0;
    [all...]
visible_units.cpp 417 InlineTextBox *startTextBox = static_cast<InlineTextBox *>(startBox);
486 InlineTextBox *endTextBox = static_cast<InlineTextBox *>(endBox);
    [all...]
CompositeEditCommand.cpp 41 #include "InlineTextBox.h"
492 InlineTextBox* box = textRenderer->firstTextBox();
504 InlineTextBox* prevBox = 0;
    [all...]
SelectionController.cpp     [all...]
  /external/webkit/WebKit/android/nav/
CacheBuilder.h 46 class InlineTextBox;
116 InlineTextBox* mLastInline;
126 typedef bool (*FindText)(BoundsPart* result, InlineTextBox* , const String& match);
221 InlineTextBox* textBox, int start, int relEnd, int x, int y,
CacheBuilder.cpp 47 #include "InlineTextBox.h"
542 InlineTextBox* textBox = renderText->firstTextBox();
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSAttributedStringExtras.mm 45 #import <WebCore/InlineTextBox.h>
  /external/webkit/WebCore/
Android.mk 593 rendering/InlineTextBox.cpp \

Completed in 1032 milliseconds

1 2