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

  /external/chromium_org/cc/trees/
tree_synchronizer.cc 251 DCHECK(!layer_impl->clip_parent() || !!layer->clip_parent());
258 if (layer_impl->clip_parent())
259 DCHECK_EQ(layer->clip_parent()->id(), layer_impl->clip_parent()->id());
279 DCHECK_EQ((*it)->clip_parent(), layer);
285 DCHECK_EQ((*it)->clip_parent(), layer_impl);
tree_synchronizer_unittest.cc 167 const Layer* layer_clip_parent = layer->clip_parent();
168 const LayerImpl* layer_impl_clip_parent = layer_impl->clip_parent();
687 scoped_refptr<Layer> clip_parent = Layer::Create(); local
691 layer_tree_root->AddChild(clip_parent);
692 clip_parent->AddChild(intervening);
699 clip_child1->SetClipParent(clip_parent.get());
700 clip_child2->SetClipParent(clip_parent.get());
729 additional_clip_child->SetClipParent(clip_parent.get());
741 clip_parent->RemoveFromParent();
742 clip_parent = NULL
    [all...]
layer_tree_host_common.cc 169 // clip_parent, it may not inherit its immediate ancestor's clip.
175 // If the layer has no clip_parent, or the ancestor is the same as its actual
178 const LayerType* clip_parent = layer->scroll_parent(); local
180 if (!clip_parent)
181 clip_parent = layer->clip_parent();
183 if (!clip_parent || clip_parent == layer->parent())
190 *clip_rect_in_parent_target_space = clip_parent->clip_rect();
191 *subtree_should_be_clipped = clip_parent->is_clipped()
    [all...]
layer_tree_host_common_unittest.cc 6344 scoped_refptr<Layer> clip_parent = Layer::Create(); local
6445 scoped_refptr<Layer> clip_parent = Layer::Create(); local
6572 scoped_refptr<Layer> clip_parent = Layer::Create(); local
6698 scoped_refptr<Layer> clip_parent = Layer::Create(); local
6782 scoped_refptr<Layer> clip_parent = Layer::Create(); local
    [all...]
layer_tree_impl.cc     [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_compositor_host.cc 221 scoped_refptr<cc::Layer> clip_parent = layer->parent(); local
222 if (clip_parent.get() == layer_.get()) {
224 clip_parent = cc::Layer::Create();
225 clip_parent->SetMasksToBounds(true);
226 clip_parent->SetIsDrawable(true);
227 layer_->ReplaceChild(layer.get(), clip_parent);
228 clip_parent->AddChild(layer);
231 clip_parent->SetPosition(position);
232 clip_parent->SetBounds(PP_ToGfxSize(new_layer->common.clip_rect.size));
  /external/chromium_org/cc/blink/
web_layer_impl.cc 469 cc::Layer* clip_parent = NULL; local
471 clip_parent = static_cast<WebLayerImpl*>(parent)->layer();
472 layer_->SetClipParent(clip_parent);
  /external/chromium_org/cc/layers/
layer.cc 937 LayerImpl* clip_parent = NULL; local
939 clip_parent =
941 DCHECK(clip_parent);
944 layer->SetClipParent(clip_parent);
949 DCHECK_EQ((*it)->clip_parent(), this);
    [all...]
layer.h 199 Layer* clip_parent() { return clip_parent_; } function in class:cc::Layer
200 const Layer* clip_parent() const { function in class:cc::Layer
layer_impl.h 149 LayerImpl* clip_parent() { function in class:cc::LayerImpl
152 const LayerImpl* clip_parent() const { function in class:cc::LayerImpl
layer_impl.cc 574 LayerImpl* clip_parent = NULL; local
576 clip_parent = layer->layer_tree_impl()->LayerById(
578 DCHECK(clip_parent);
581 layer->SetClipParent(clip_parent);
    [all...]
layer_impl_unittest.cc 105 scoped_ptr<LayerImpl> clip_parent = local
201 root->SetClipParent(clip_parent.get()));
242 root->SetClipParent(clip_parent.get()));
    [all...]

Completed in 345 milliseconds