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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBlockLineLayout.cpp     [all...]
RenderFlowThread.cpp 444 LayoutState* layoutState = currentBoxDescendant->view()->layoutState();
445 if (layoutState && layoutState->isPaginated()) {
446 ASSERT(layoutState->renderer() == currentBoxDescendant);
447 LayoutSize offsetDelta = layoutState->layoutOffset() - layoutState->pageOffset();
460 LayoutState* layoutState = currentBoxDescendant->view()->layoutState()
    [all...]
RenderView.h 26 #include "core/rendering/LayoutState.h"
129 // Returns true if layoutState should be used for its cached offset and clip.
131 LayoutState* layoutState() const { return m_layoutState; }
135 // FIXME: LayoutState should be enabled for other repaint containers than the RenderView. crbug.com/363834
185 void pushLayoutState(LayoutState&);
223 LayoutState* m_layoutState;
234 // Suspends the LayoutState cached offset and clipRect optimization. Used under transforms
235 // that cannot be represented by LayoutState (common in SVG) and when manipulating the render
237 // moves its list marker around). Note that even when disabled, LayoutState is still used t
    [all...]
LayoutState.cpp 27 #include "core/rendering/LayoutState.h"
36 LayoutState::LayoutState(LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, RenderView& view)
50 ASSERT(!view.layoutState());
54 LayoutState::LayoutState(RenderBox& renderer, const LayoutSize& offset, LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, ColumnInfo* columnInfo)
56 , m_next(renderer.view()->layoutState())
150 LayoutState::LayoutState(RenderObject& root)
160 , m_next(root.view()->layoutState())
    [all...]
RenderBlockFlow.cpp 229 // is known. The page logical height thing in LayoutState is meaningless for flow
256 view()->layoutState()->pageLogicalOffset(*this, borderBefore() + paddingBefore() + layoutOverflowLogicalBottom) - colInfo->forcedBreakOffset());
318 if (renderView->layoutState()->pageLogicalHeight())
319 setPageLogicalOffset(renderView->layoutState()->pageLogicalOffset(*this, logicalTop()));
352 LayoutState state(*this, locationOffset(), pageLogicalHeight, pageLogicalHeightChanged, columnInfo());
566 bool paginated = view()->layoutState()->isPaginated();
    [all...]
RenderBlock.cpp 374 // Take care of positioned objects. This is required as LayoutState keeps a single clip rect.
377 LayoutState state(*this, isTableRow() ? LayoutSize() : locationOffset());
387 // the inline elements position in LayoutState.
    [all...]
RenderInline.cpp     [all...]
RenderView.cpp 257 LayoutState rootLayoutState(pageLogicalHeight(), pageLogicalHeightChanged(), *this);
463 LayoutState rootLayoutState(0, false, *this);
    [all...]
RenderBox.cpp 324 LayoutState state(*this, locationOffset());
    [all...]
RenderTable.cpp 368 if (view()->layoutState()->isPaginated()) {
428 LayoutState state(*this, locationOffset());
568 if (view()->layoutState()->pageLogicalHeight())
569 setPageLogicalOffset(view()->layoutState()->pageLogicalOffset(*this, logicalTop()));
    [all...]
RenderDeprecatedFlexibleBox.cpp 266 // LayoutState needs this deliberate scope to pop before repaint
267 LayoutState state(*this, locationOffset());
305 if (view()->layoutState()->pageLogicalHeight())
306 setPageLogicalOffset(view()->layoutState()->pageLogicalOffset(*this, logicalTop()));
    [all...]
RootInlineBox.cpp 252 if (block().view()->layoutState()->isPaginated())
    [all...]
RenderTableSection.cpp 646 LayoutState state(*this);
734 LayoutState state(*this, locationOffset());
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
LinearLayoutManager.java 70 private LayoutState mLayoutState;
604 ? LayoutState.LAYOUT_START : LayoutState.LAYOUT_END;
605 if (direction == LayoutState.LAYOUT_START) {
    [all...]
GridLayoutManager.java 333 LayoutState layoutState, LayoutChunkResult result) {
335 layoutState.mItemDirection == LayoutState.ITEM_DIRECTION_TAIL;
340 int itemSpanIndex = getSpanIndex(recycler, state, layoutState.mCurrentPosition);
341 int itemSpanSize = getSpanSize(recycler, state, layoutState.mCurrentPosition);
344 while (count < mSpanCount && layoutState.hasMore(state) && remainingSpan > 0) {
345 int pos = layoutState.mCurrentPosition;
356 View view = layoutState.next(recycler);
376 if (layoutState.mScrapList == null)
    [all...]
StaggeredGridLayoutManager.java 39 import static android.support.v7.widget.LayoutState.LAYOUT_START;
40 import static android.support.v7.widget.LayoutState.LAYOUT_END;
41 import static android.support.v7.widget.LayoutState.ITEM_DIRECTION_HEAD;
42 import static android.support.v7.widget.LayoutState.ITEM_DIRECTION_TAIL;
114 private LayoutState mLayoutState;
496 mLayoutState = new LayoutState();
    [all...]
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.cpp 714 ASSERT(!renderer->view()->layoutState());
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 785 LayoutState layoutState(*rootForThisLayout);
    [all...]

Completed in 267 milliseconds