Home
last modified time | relevance | path

Searched refs:lastRun (Results 1 – 7 of 7) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderRuby.cpp102 RenderRubyRun* lastRun = lastRubyRun(this); in addChild() local
103 if (!lastRun || lastRun->hasRubyText()) { in addChild()
104 lastRun = RenderRubyRun::staticCreateRubyRun(this); in addChild()
105 RenderInline::addChild(lastRun); in addChild()
107 lastRun->addChild(child); in addChild()
172 RenderRubyRun* lastRun = lastRubyRun(this); in addChild() local
173 if (!lastRun || lastRun->hasRubyText()) { in addChild()
174 lastRun = RenderRubyRun::staticCreateRubyRun(this); in addChild()
175 RenderBlock::addChild(lastRun); in addChild()
177 lastRun->addChild(child); in addChild()
DRenderBlockLineLayout.cpp264 RootInlineBox* RenderBlock::constructLine(unsigned runCount, BidiRun* firstRun, BidiRun* lastRun, b… in constructLine() argument
274 … isOnlyRun = ((style()->direction() == RTL) ? lastRun : firstRun)->m_object->isListMarker(); in constructLine()
810 …bool shouldReorder = trailingSpaceRun != (direction == LTR ? resolver.lastRun() : resolver.firstRu… in layoutInlineChildren()
845 …neBox = constructLine(resolver.runCount(), resolver.firstRun(), resolver.lastRun(), firstLine, !en… in layoutInlineChildren()
DRenderBlock.h265 …RootInlineBox* constructLine(unsigned runCount, BidiRun* firstRun, BidiRun* lastRun, bool firstLin…
/external/icu4c/layoutex/
DParagraphLayout.cpp1006 le_int32 lastRun = getCharRun(runEnd); in computeVisualRuns() local
1007 le_int32 startRun = (runDirection == UBIDI_LTR)? firstRun : lastRun; in computeVisualRuns()
1008 le_int32 stopRun = (runDirection == UBIDI_LTR)? lastRun + 1 : firstRun - 1; in computeVisualRuns()
1013 le_int32 lastChar = (run == lastRun)? runEnd : fStyleRunInfo[run].runLimit - 1; in computeVisualRuns()
1172 const VisualRun *lastRun = getVisualRun(fRunCount - 1); in getWidth() local
1174 if (lastRun == NULL) { in getWidth()
1178 le_int32 glyphCount = lastRun->getGlyphCount(); in getWidth()
1179 const float *positions = lastRun->getPositions(); in getWidth()
/external/webkit/WebCore/platform/graphics/mac/
DComplexTextController.cpp431 bool lastRun = r + 1 == runCount; in adjustGlyphsAndAdvances() local
449 bool lastGlyph = lastRun && i + 1 == glyphCount; in adjustGlyphsAndAdvances()
/external/webkit/WebCore/platform/text/
DBidiResolver.h168 Run* lastRun() const { return m_lastRun; } in lastRun() function
/external/webkit/WebCore/
DChangeLog-2007-10-1415030 (WebCore::BidiResolver::lastRun):