HomeSort by relevance Sort by last modified time
    Searched refs:flowThread (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRegionSet.cpp 33 RenderRegionSet::RenderRegionSet(Element* element, RenderFlowThread* flowThread)
34 : RenderRegion(element, flowThread)
56 bool isHorizontal = flowThread()->isHorizontalWritingMode();
58 LayoutRect layoutRect = flowThread()->layoutOverflowRect();
RenderMedia.cpp 72 const RenderFlowThread* flowThread = flowThreadContainingBlock();
73 if (flowThread && !controlsNeedLayout) {
74 if (flowThread->pageLogicalSizeChanged())
FlowThreadController.h 51 void setCurrentRenderFlowThread(RenderFlowThread* flowThread) { m_currentRenderFlowThread = flowThread; }
RenderMultiColumnSet.cpp 38 RenderMultiColumnSet::RenderMultiColumnSet(RenderFlowThread* flowThread)
39 : RenderRegionSet(0, flowThread)
52 RenderMultiColumnSet* RenderMultiColumnSet::createAnonymous(RenderFlowThread* flowThread)
54 Document* document = flowThread->document();
55 RenderMultiColumnSet* renderer = new RenderMultiColumnSet(flowThread);
93 LayoutUnit logicalHeightGuess = ceilf(float(flowThread()->logicalHeight()) / float(m_computedColumnCount));
216 LayoutUnit logicalHeightInColumns = flowThread()->isHorizontalWritingMode() ? flowThreadPortionRect().height() : flowThreadPortionRect().width();
289 overflowRect.shiftXEdgeTo(min(flowThread()->visualOverflowRect().x(), portionRect.x()));
296 overflowRect.shiftMaxXEdgeTo(max(flowThread()->visualOverflowRect().maxX(), portionRect.maxX()));
304 overflowRect.shiftYEdgeTo(min(flowThread()->visualOverflowRect().y(), portionRect.y()))
    [all...]
RenderMultiColumnBlock.h 45 RenderMultiColumnFlowThread* flowThread() const { return m_flowThread; }
RenderRegion.cpp 44 RenderRegion::RenderRegion(Element* element, RenderFlowThread* flowThread)
46 , m_flowThread(flowThread)
151 return flowThread()->isHorizontalWritingMode() ? flowThreadPortionRect().y() : flowThreadPortionRect().x();
323 flowThread()->flipForWritingMode(flippedFlowThreadPortionRect); // Put the region rects into physical coordinates.
324 flowThread()->flipForWritingMode(flippedFlowThreadPortionOverflowRect);
443 return flowThread()->isHorizontalWritingMode() ? rect.y() : rect.x();
449 return flowThread()->isHorizontalWritingMode() ? rect.maxY() : rect.maxX();
471 if (!flowThread()->objectInFlowRegion(object, this))
RenderNamedFlowThread.cpp 403 RenderNamedFlowThread* flowThread = observers.at(i);
404 flowThread->checkInvalidRegions();
429 RenderNamedFlowThread* flowThread = (*iter).key;
430 if (list.contains(flowThread))
432 flowThread->pushDependencies(list);
433 list.add(flowThread);
RenderRegion.h 63 RenderFlowThread* flowThread() const { return m_flowThread; }
RenderBlock.cpp     [all...]
RenderBlockLineLayout.cpp     [all...]
RenderDeprecatedFlexibleBox.cpp 264 RenderFlowThread* flowThread = flowThreadContainingBlock();
265 if (logicalWidthChangedInRegions(flowThread))
267 if (updateRegionsAndShapesLogicalSize(flowThread))
299 computeRegionRangeForBlock(flowThread);
    [all...]
RenderBox.cpp 151 RenderFlowThread* flowThread = flowThreadContainingBlock();
152 if (flowThread)
153 flowThread->removeRenderBoxRegionInfo(this);
    [all...]
RenderFlexibleBox.cpp 254 RenderFlowThread* flowThread = flowThreadContainingBlock();
255 if (logicalWidthChangedInRegions(flowThread))
257 if (updateRegionsAndShapesLogicalSize(flowThread))
282 computeRegionRangeForBlock(flowThread);
    [all...]
RenderGrid.cpp 241 RenderFlowThread* flowThread = flowThreadContainingBlock();
242 if (logicalWidthChangedInRegions(flowThread))
244 if (updateRegionsAndShapesLogicalSize(flowThread))
262 computeRegionRangeForBlock(flowThread);
    [all...]
RenderFlowThread.cpp 770 RenderFlowThread* flowThread = object->flowThreadContainingBlock();
771 if (flowThread != this)
    [all...]
RenderInline.cpp 211 RenderFlowThread* flowThread = flowThreadContainingBlock();
218 || (flowThread && flowThread->hasRegionsWithStyling());
    [all...]
RootInlineBox.cpp 222 RenderFlowThread* flowThread = block()->flowThreadContainingBlock();
223 const RenderRegionList& regionList = flowThread->renderRegionList();
    [all...]
RenderObject.cpp 626 RenderFlowThread* flowThread = view()->flowThreadController()->currentRenderFlowThread();
627 if (flowThread)
628 return flowThread;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NamedFlow.cpp 78 static inline bool inFlowThread(RenderObject* renderer, RenderNamedFlowThread* flowThread)
83 if (flowThread == currentFlowThread)
89 return inFlowThread(currentFlowThread->containingBlock(), flowThread);
181 ASSERT(node->computedStyle()->flowThread() == m_parentFlowThread->flowThreadName());
NodeRenderingContext.cpp 58 if (renderer->style() && !renderer->style()->flowThread().isEmpty())
203 m_parentFlowRenderer = flowThreadController->ensureRenderFlowThreadWithName(m_style->flowThread());
Node.cpp 316 if ((s1 && s2) && (s1->flowThread() != s2->flowThread()))
    [all...]
Element.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]

Completed in 1677 milliseconds