Searched refs:hasLayer (Results 1 - 22 of 22) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
H A D | RenderLayerModelObject.cpp | 46 ASSERT(!hasLayer()); 113 if (hasLayer()) { 138 bool hadLayer = hasLayer(); 186 if (hasLayer()) {
|
H A D | RenderObject.cpp | 348 if (newChild->hasLayer() && !layerCreationAllowedForSubtree()) 450 if (obj->hasLayer()) { 481 if (hasLayer()) { 495 if (hasLayer()) { 516 RenderLayer* ourLayer = hasLayer() ? toRenderLayerModelObject(this)->layer() : 0; 548 RenderLayer* layer = curr->hasLayer() ? toRenderLayerModelObject(curr)->layer() : 0; 776 ASSERT(hasLayer()); 782 ASSERT(hasLayer()); 1319 if (hasLayer()) 1428 bool viewHasCompositedLayer = v->hasLayer() [all...] |
H A D | RenderObject.h | 522 bool hasLayer() const { return m_bitfields.hasLayer(); } function in class:WebCore::RenderObject 656 void setHasLayer(bool hasLayer) { m_bitfields.setHasLayer(hasLayer); } argument 1167 ADD_BOOLEAN_BITFIELD(hasLayer, HasLayer); 1273 if (hasLayer()) 1312 if (hasLayer()) 1324 if (hasLayer())
|
H A D | RenderLineBoxList.cpp | 206 ASSERT(renderer->isRenderBlock() || (renderer->isRenderInline() && renderer->hasLayer())); // The only way an inline could paint like this is if it has a layer. 245 ASSERT(renderer->isRenderBlock() || (renderer->isRenderInline() && renderer->hasLayer())); // The only way an inline could hit test like this is if it has a layer.
|
H A D | LayoutState.cpp | 64 if (renderer->isInFlowPositioned() && renderer->hasLayer())
|
H A D | RenderWidget.cpp | 158 if (hasLayer() && layer()->compositingState() == PaintsIntoOwnBacking)
|
H A D | RenderBox.cpp | 602 if (hasLayer()) 825 return hasOverflowClip() && hasLayer() && layer()->scrollableArea()->usesCompositedScrolling(); 985 ASSERT(hasLayer()); 992 ASSERT(hasLayer()); 1181 if (!child->hasLayer() && child->nodeAtPoint(request, result, locationInContainer, adjustedLocation, action)) { 1509 bool compositedMask = hasLayer() && layer()->hasCompositedMask(); 1635 if (hasLayer() && layer()->hasCompositedMask() && layersUseImage(image, style()->maskLayers())) 1714 if (hasLayer()) 1928 bool hasTransform = hasLayer() && layer()->transform(); 1968 bool hasTransform = hasLayer() [all...] |
H A D | RenderBoxModelObject.cpp | 92 if (!hasLayer()) 105 ASSERT(hasLayer()); 112 ASSERT(hasLayer()); 119 ASSERT(hasLayer()); 126 ASSERT(hasLayer()); 133 ASSERT(hasLayer()); 140 ASSERT(hasLayer()); 2767 bool hasTransform = !isInline && hasLayer() && layer()->transform();
|
H A D | RenderTreeAsText.cpp | 479 if (child->hasLayer()) 785 if (!renderer->hasLayer())
|
H A D | RenderReplaced.cpp | 126 if (paintInfo.phase == PaintPhaseClippingMask && (!hasLayer() || !layer()->hasCompositedClippingMask()))
|
H A D | RenderBlock.cpp | 1031 parent->children()->removeChildNode(parent, child, child->hasLayer()); 1032 child->moveAllChildrenTo(parent, nextSibling, child->hasLayer()); 1075 bool inlineChildrenBlockHasLayer = inlineChildrenBlock->hasLayer(); 1081 inlineChildrenBlockHasLayer || blockChildrenBlock->hasLayer()); 1093 nextBlock->moveAllChildrenIncludingFloatsTo(prevBlock, nextBlock->hasLayer() || prevBlock->hasLayer()); 2278 if (!inlineEnclosedInSelfPaintingLayer && !hasLayer()) 2280 else if (!inlineRenderer->firstLineBox() || (!inlineEnclosedInSelfPaintingLayer && hasLayer())) 2435 if (!hasLayer()) { 2542 if (curr->isInFlowPositioned() && curr->hasLayer()) { [all...] |
H A D | RenderLayer.cpp | 683 if (containingBlock->hasLayer()) { 822 if (!r->hasLayer()) { 884 if (r->style()->visibility() == VISIBLE && !r->hasLayer()) { 888 if (r->firstChild() && !r->hasLayer()) 968 while (curr && !curr->hasLayer()) { 3818 if (!child->hasLayer()) {
|
H A D | RenderInline.cpp | 1019 if (inlineFlow->style()->hasInFlowPosition() && inlineFlow->hasLayer()) 1364 if (curr->hasLayer())
|
H A D | RenderLayerCompositor.cpp | 1776 return pluginRenderer->hasLayer() && pluginRenderer->layer()->hasCompositedLayerMapping(); 1805 return frameRenderer->hasLayer() && frameRenderer->layer()->hasCompositedLayerMapping();
|
H A D | RenderTableCell.cpp | 1192 bool shouldClip = backgroundObject->hasLayer() && (backgroundObject == this || backgroundObject == parent()) && tableElt->collapseBorders();
|
H A D | InlineFlowBox.cpp | 1346 bool compositedMask = renderer()->hasLayer() && boxModelObject()->layer()->hasCompositedMask();
|
H A D | RenderBlockLineLayout.cpp | 1165 if (v && !v->doingFullRepaint() && hasLayer()) {
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
H A D | ScrollingCoordinatorChromiumTest.cpp | 303 ASSERT_TRUE(renderer->hasLayer()); 343 ASSERT_TRUE(renderer->hasLayer()); 366 ASSERT_TRUE(renderer->hasLayer());
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
H A D | RenderSVGResourceContainer.cpp | 181 if (!node->renderer() || !node->renderer()->hasLayer())
|
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/ |
H A D | ScrollingCoordinator.cpp | 865 if (!viewportConstrainedObject->isBoxModelObject() || !viewportConstrainedObject->hasLayer())
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
H A D | FrameView.cpp | 1199 if (!renderer->hasLayer()) { 1453 ASSERT(renderer->hasLayer());
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
H A D | AXRenderObject.cpp | 1256 if (!m_renderer || !m_renderer->hasLayer())
|
Completed in 1688 milliseconds