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();
684 scoped_refptr<Layer> clip_parent = Layer::Create(); local
688 layer_tree_root->AddChild(clip_parent);
689 clip_parent->AddChild(intervening);
696 clip_child1->SetClipParent(clip_parent);
697 clip_child2->SetClipParent(clip_parent);
726 additional_clip_child->SetClipParent(clip_parent);
738 clip_parent->RemoveFromParent();
739 clip_parent = NULL
    [all...]
layer_tree_host_common.cc 167 // clip_parent, it may not inherit its immediate ancestor's clip.
173 // If the layer has no clip_parent, or the ancestor is the same as its actual
176 const LayerType* clip_parent = layer->scroll_parent(); local
178 if (!clip_parent)
179 clip_parent = layer->clip_parent();
181 if (!clip_parent || clip_parent == layer->parent())
188 *clip_rect_in_parent_target_space = clip_parent->clip_rect();
189 *subtree_should_be_clipped = clip_parent->is_clipped()
    [all...]
layer_tree_host_common_unittest.cc 6385 scoped_refptr<Layer> clip_parent = Layer::Create(); local
6486 scoped_refptr<Layer> clip_parent = Layer::Create(); local
6613 scoped_refptr<Layer> clip_parent = Layer::Create(); local
6739 scoped_refptr<Layer> clip_parent = Layer::Create(); local
6823 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 == layer_) {
224 clip_parent = cc::Layer::Create();
225 clip_parent->SetMasksToBounds(true);
226 clip_parent->SetIsDrawable(true);
227 layer_->ReplaceChild(layer, 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/content/renderer/compositor_bindings/
web_layer_impl.cc 478 cc::Layer* clip_parent = NULL; local
480 clip_parent = static_cast<WebLayerImpl*>(parent)->layer();
481 layer_->SetClipParent(clip_parent);
  /external/chromium_org/cc/layers/
layer.cc 930 LayerImpl* clip_parent = NULL; local
932 clip_parent =
934 DCHECK(clip_parent);
937 layer->SetClipParent(clip_parent);
942 DCHECK_EQ((*it)->clip_parent(), this);
    [all...]
layer.h 198 Layer* clip_parent() { return clip_parent_; } function in class:cc::Layer
199 const Layer* clip_parent() const { function in class:cc::Layer
layer_impl.h 133 LayerImpl* clip_parent() { function in class:cc::LayerImpl
136 const LayerImpl* clip_parent() const { function in class:cc::LayerImpl
layer_impl.cc 557 LayerImpl* clip_parent = NULL; local
559 clip_parent = layer->layer_tree_impl()->LayerById(
561 DCHECK(clip_parent);
564 layer->SetClipParent(clip_parent);
    [all...]
layer_impl_unittest.cc 103 scoped_ptr<LayerImpl> clip_parent = local
199 root->SetClipParent(clip_parent.get()));
238 root->SetClipParent(clip_parent.get()));

Completed in 699 milliseconds