/external/webkit/Source/WebCore/rendering/ |
D | RenderInline.h | 34 class RenderInline : public RenderBoxModelObject { 36 explicit RenderInline(Node*); 72 RenderInline* inlineElementContinuation() const; 101 FloatRect culledInlineBoundingBox(const RenderInline* container) const; 105 void culledInlineAbsoluteRects(const RenderInline* container, Vector<IntRect>&, const IntSize&); 106 void culledInlineAbsoluteQuads(const RenderInline* container, Vector<FloatQuad>&); 163 static RenderInline* cloneInline(RenderInline* src); 175 inline RenderInline* toRenderInline(RenderObject* object) in toRenderInline() 178 return static_cast<RenderInline*>(object); in toRenderInline() 181 inline const RenderInline* toRenderInline(const RenderObject* object) in toRenderInline() [all …]
|
D | RenderInline.cpp | 48 RenderInline::RenderInline(Node* node) in RenderInline() function in WebCore::RenderInline 56 void RenderInline::destroy() in destroy() 111 RenderInline* RenderInline::inlineElementContinuation() const in inlineElementContinuation() 119 void RenderInline::updateBoxModelInfoFromStyle() in updateBoxModelInfoFromStyle() 130 void RenderInline::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) in styleDidChange() 140 …for (RenderInline* currCont = inlineElementContinuation(); currCont; currCont = currCont->inlineEl… in styleDidChange() 165 void RenderInline::updateAlwaysCreateLineBoxes() in updateAlwaysCreateLineBoxes() 173 RenderInline* parentRenderInline = parent()->isRenderInline() ? toRenderInline(parent()) : 0; in updateAlwaysCreateLineBoxes() 197 void RenderInline::addChild(RenderObject* newChild, RenderObject* beforeChild) in addChild() 211 RenderBoxModelObject* RenderInline::continuationBefore(RenderObject* beforeChild) in continuationBefore() [all …]
|
D | RenderRuby.cpp | 114 : RenderInline(node) in RenderRubyAsInline() 128 RenderInline::addChild(child, firstChild()); in addChild() 134 RenderInline::addChild(beforeBlock, firstChild()); in addChild() 143 RenderInline::addChild(child); in addChild() 149 RenderInline::addChild(afterBlock); in addChild() 158 RenderInline::addChild(child, beforeChild); in addChild() 182 RenderInline::addChild(lastRun); in addChild() 193 RenderInline::removeChild(child); in removeChild()
|
D | PaintInfo.h | 42 class RenderInline; variable 53 RenderObject* newPaintingRoot, ListHashSet<RenderInline*>* newOutlineObjects, 105 …ListHashSet<RenderInline*>* outlineObjects; // used to list outlines that should be painted by a b…
|
D | RenderLineBoxList.cpp | 226 ListHashSet<RenderInline*> outlineObjects; in paint() 267 ListHashSet<RenderInline*>::iterator end = info.outlineObjects->end(); in paint() 268 … for (ListHashSet<RenderInline*>::iterator it = info.outlineObjects->begin(); it != end; ++it) { in paint() 269 RenderInline* flow = *it; in paint() 320 RenderInline* inlineContainer = container->isRenderInline() ? toRenderInline(container) : 0; in dirtyLinesFromChangedChild()
|
D | RenderRuby.h | 54 class RenderRubyAsInline : public RenderInline {
|
D | RenderBlock.h | 41 class RenderInline; variable 140 void addContinuationWithOutline(RenderInline*); 141 bool paintsContinuationOutline(RenderInline*); 145 RenderInline* inlineElementContinuation() const;
|
D | HitTestResult.cpp | 554 RenderInline* currInline = toRenderInline(curr); in addNodeToRectBasedTestResult() 585 RenderInline* currInline = toRenderInline(curr); in addNodeToRectBasedTestResult()
|
D | RenderBlock.cpp | 78 typedef WTF::HashMap<RenderBlock*, ListHashSet<RenderInline*>*> ContinuationOutlineTableMap; 1569 … RenderInline* inlineRunIn = new (renderArena()) RenderInline(runInNode ? runInNode : document()); in handleRunInChild() 2535 RenderInline* inlineCont = inlineElementContinuation(); in paintObject() 2537 RenderInline* inlineRenderer = toRenderInline(inlineCont->node()->renderer()); in paintObject() 2633 RenderInline* RenderBlock::inlineElementContinuation() const in inlineElementContinuation() 2656 void RenderBlock::addContinuationWithOutline(RenderInline* flow) in addContinuationWithOutline() 2663 ListHashSet<RenderInline*>* continuations = table->get(this); in addContinuationWithOutline() 2665 continuations = new ListHashSet<RenderInline*>; in addContinuationWithOutline() 2672 bool RenderBlock::paintsContinuationOutline(RenderInline* flow) in paintsContinuationOutline() 2678 ListHashSet<RenderInline*>* continuations = table->get(this); in paintsContinuationOutline() [all …]
|
D | RenderBlockLineLayout.cpp | 71 static inline int borderPaddingMarginStart(RenderInline* child) in borderPaddingMarginStart() 76 static inline int borderPaddingMarginEnd(RenderInline* child) in borderPaddingMarginEnd() 87 RenderInline* parentAsRenderInline = toRenderInline(parent); in inlineLogicalWidth() 226 RenderInline* inlineFlow = (obj != this) ? toRenderInline(obj) : 0; in createLineBoxes() 1546 static bool inlineFlowRequiresLineBox(RenderInline* flow) in inlineFlowRequiresLineBox() 1934 RenderInline* flowBox = toRenderInline(o); in findNextLineBreak()
|
D | RenderBox.cpp | 2146 const RenderInline* flow = toRenderInline(containingBlock); in containingBlockLogicalWidthForPositioned() 2186 const RenderInline* flow = toRenderInline(containingBlock); in containingBlockLogicalHeightForPositioned() 2544 const RenderInline* flow = toRenderInline(containerBlock); in computePositionedLogicalWidthUsing() 2969 const RenderInline* flow = toRenderInline(containerBlock); in computePositionedLogicalWidthReplaced()
|
D | RenderTreeAsText.cpp | 260 const RenderInline& inlineFlow = *toRenderInline(&o); in writeRenderObject()
|
D | InlineFlowBox.cpp | 311 RenderInline* inlineFlow = toRenderInline(renderer()); in determineSpacingForFlowBoxes() 964 RenderInline* inlineFlow = toRenderInline(renderer()); in paint()
|
D | RenderObject.h | 55 class RenderInline; variable
|
D | RenderObject.cpp | 140 return new (arena) RenderInline(node); in createObject()
|
/external/webkit/Source/WebCore/rendering/svg/ |
D | RenderSVGInline.cpp | 34 : RenderInline(n) in RenderSVGInline() 99 RenderInline::destroy(); in destroy() 106 RenderInline::styleWillChange(diff, newStyle); in styleWillChange() 111 RenderInline::styleDidChange(diff, oldStyle); in styleDidChange() 117 RenderInline::updateFromElement(); in updateFromElement()
|
D | RenderSVGInline.h | 31 class RenderSVGInline : public RenderInline {
|
D | SVGTextQuery.cpp | 71 RenderInline* renderInline = toRenderInline(renderer); in flowBoxForRenderer()
|
/external/webkit/LayoutTests/platform/android/fast/text/ |
D | hyphens-expected.txt | 8 RenderInline {TT} at (0,0) size 118x15 34 RenderInline {TT} at (0,0) size 103x15 62 RenderInline {TT} at (0,0) size 118x15 92 RenderInline {TT} at (0,0) size 103x15
|
D | hyphenate-character-expected.txt | 10 RenderInline {TT} at (0,0) size 32x15 38 RenderInline {TT} at (0,0) size 198x15 66 RenderInline {TT} at (0,0) size 221x15 94 RenderInline {TT} at (0,0) size 314x34
|
/external/webkit/Source/WebCore/accessibility/ |
D | AccessibilityRenderObject.cpp | 221 static inline RenderInline* startOfContinuations(RenderObject* r) in startOfContinuations() 254 static inline RenderObject* childBeforeConsideringContinuations(RenderInline* r, RenderObject* chil… in childBeforeConsideringContinuations() 299 RenderInline* startOfConts; in previousSibling() 337 RenderInline* inlineContinuation; in nextSibling()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2009-06-16 | 15744 * rendering/RenderInline.cpp: 15745 (WebCore::RenderInline::absoluteRects): 15746 (WebCore::RenderInline::absoluteQuads): 15747 * rendering/RenderInline.h: 20440 generated, and if so, make the RenderInline anonymous instead of passing 20441 a 0 node to the RenderInline constructor. If the run-in itself is 27115 * rendering/RenderInline.cpp: 27116 (WebCore::RenderInline::splitFlow): When repurposing the existing 28952 which changed the base class of RenderInline to 28995 * rendering/RenderInline.cpp: [all …]
|
D | ChangeLog-2003-10-25 | 521 uninitialized variable. m_isContinuation needed to be set to false in the RenderInline 1852 (RenderInline::addChildToFlow): 1853 (RenderInline::splitFlow): 1854 (RenderInline::renderName): 2261 (RenderInline::addChildToFlow): 2659 (RenderInline::nodeAtPoint): 3724 (RenderInline::isInlineContinuation): 3725 (RenderInline::addChildToFlow): 3726 (RenderInline::cloneInline): 3727 (RenderInline::splitInlines): [all …]
|
D | ChangeLog | 2229 Regression(r85869): Restore dirty line logic in RenderInline::destroy. 2234 * rendering/RenderInline.cpp: 2235 (WebCore::RenderInline::destroy): 3647 …as running for inline blocks, which was definitely not even the intent) or in the RenderInline case 3655 * rendering/RenderInline.cpp: 3656 (WebCore::RenderInline::destroy): 3657 (WebCore::RenderInline::culledInlineFirstLineBox): 3658 (WebCore::RenderInline::culledInlineLastLineBox): 3973 * rendering/RenderInline.cpp: 3974 (WebCore::RenderInline::destroy): [all …]
|
D | Android.mk | 859 rendering/RenderInline.cpp \
|