HomeSort by relevance Sort by last modified time
    Searched refs:layer (Results 126 - 150 of 1091) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/cc/layers/
nine_patch_layer.cc 53 void NinePatchLayer::PushPropertiesTo(LayerImpl* layer) {
54 UIResourceLayer::PushPropertiesTo(layer);
55 NinePatchLayerImpl* layer_impl = static_cast<NinePatchLayerImpl*>(layer);
scrollbar_layer_impl_base.cc 33 void ScrollbarLayerImplBase::PushPropertiesTo(LayerImpl* layer) {
34 float active_opacity = layer->opacity();
35 LayerImpl::PushPropertiesTo(layer);
36 layer->SetOpacity(active_opacity);
37 DCHECK(layer->ToScrollbarLayer());
38 layer->ToScrollbarLayer()->set_is_overlay_scrollbar(is_overlay_scrollbar_);
39 PushScrollClipPropertiesTo(layer);
42 void ScrollbarLayerImplBase::PushScrollClipPropertiesTo(LayerImpl* layer) {
43 DCHECK(layer->ToScrollbarLayer());
44 layer->ToScrollbarLayer()->SetScrollLayerById(ScrollLayerId())
    [all...]
scrollbar_layer_interface.h 13 class Layer;
21 virtual void PushScrollClipPropertiesTo(LayerImpl* layer) = 0;
surface_layer.h 9 #include "cc/layers/layer.h"
14 // A layer that renders a surface referencing the output of another compositor
16 class CC_EXPORT SurfaceLayer : public Layer {
22 // Layer overrides.
26 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
  /external/chromium_org/cc/test/
layer_test_common.h 57 scoped_ptr<T> layer = T::Create(host_->host_impl()->active_tree(), 2); local
58 T* ptr = layer.get();
59 root_layer_impl_->AddChild(layer.template PassAs<LayerImpl>());
65 scoped_ptr<T> layer = T::Create(host_->host_impl()->active_tree(), 2, a); local
66 T* ptr = layer.get();
67 root_layer_impl_->AddChild(layer.template PassAs<LayerImpl>());
73 scoped_ptr<T> layer = local
75 T* ptr = layer.get();
76 root_layer_impl_->AddChild(layer.template PassAs<LayerImpl>());
91 scoped_ptr<T> layer local
    [all...]
layer_tree_json_parser_unittest.cc 7 #include "cc/layers/layer.h"
19 Layer* const layer) {
29 layer->children().size()));
31 layer->bounds()));
33 layer->position()));
36 layer->draw_transform()));
38 layer->contents_opaque()));
40 layer->scrollable()));
42 layer->opacity()))
    [all...]
animation_test_common.h 18 class Layer;
137 int AddOpacityTransitionToLayer(Layer* layer,
143 int AddOpacityTransitionToLayer(LayerImpl* layer,
149 int AddAnimatedTransformToLayer(Layer* layer,
154 int AddAnimatedTransformToLayer(LayerImpl* layer,
159 int AddAnimatedTransformToLayer(Layer* layer,
164 int AddAnimatedTransformToLayer(LayerImpl* layer,
    [all...]
fake_picture_layer.cc 28 const OcclusionTracker<Layer>* occlusion) {
34 void FakePictureLayer::PushPropertiesTo(LayerImpl* layer) {
35 PictureLayer::PushPropertiesTo(layer);
  /external/chromium_org/media/formats/mpeg/
mp3_stream_parser.cc 33 // Maps version and layer information in the frame header
117 int layer; local
128 !reader.ReadBits(2, &layer) ||
142 << " layer 0x" << layer
149 layer == kLayerReserved ||
155 << " layer 0x" << layer
162 if (layer == kLayer2 && kIsAllowed[bitrate_index][channel_mode]) {
170 int bitrate = kBitrateMap[bitrate_index][kVersionLayerMap[version][layer]];
    [all...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_dump_layers.cpp 208 ALOGI("Display[%s] Layer[*] %s-HwcModuleCompType, %d-layer MdpComp %s",
216 ALOGE("Display[%s] Layer[%zu] Error. No hwc layers to log.",
221 hwc_layer_1_t *layer = &hwLayers[layerIndex]; local
222 hwc_rect_t sourceCrop = integerizeSourceCrop(layer->sourceCropf);
223 hwc_rect_t displayFrame = layer->displayFrame;
224 size_t numHwcRects = layer->visibleRegionScreen.numRects;
225 hwc_rect_t const *hwcRects = layer->visibleRegionScreen.rects;
226 private_handle_t *hnd = (private_handle_t *)layer->handle;
243 ALOGI("Display[%s] Layer[%zu] SrcBuff[%dx%d] SrcCrop[%dl, %dt, %dr, %db]
302 hwc_layer_1_t *layer = &hwLayers[layerIndex]; local
    [all...]
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_dump_layers.cpp 204 ALOGI("Display[%s] Layer[*] %s-HwcModuleCompType, %d-layer MdpComp %s",
212 ALOGE("Display[%s] Layer[%d] Error. No hwc layers to log.",
217 hwc_layer_1_t *layer = &hwLayers[layerIndex]; local
218 hwc_rect_t sourceCrop = integerizeSourceCrop(layer->sourceCropf);
219 hwc_rect_t displayFrame = layer->displayFrame;
220 size_t numHwcRects = layer->visibleRegionScreen.numRects;
221 hwc_rect_t const *hwcRects = layer->visibleRegionScreen.rects;
222 private_handle_t *hnd = (private_handle_t *)layer->handle;
239 ALOGI("Display[%s] Layer[%d] SrcBuff[%dx%d] SrcCrop[%dl, %dt, %dr, %db]
292 hwc_layer_1_t *layer = &hwLayers[layerIndex]; local
    [all...]
  /external/chromium_org/ash/rotator/
screen_rotation.h 16 class Layer;
31 // |degrees| are clockwise. |layer| is the target of the animation. Does not
32 // take ownership of |layer|.
33 ScreenRotation(int degrees, ui::Layer* layer);
39 void InitTransform(ui::Layer* layer);
  /external/chromium_org/ash/wm/
drag_window_controller.cc 12 #include "ui/compositor/layer.h"
58 ui::Layer* layer = drag_widget_->GetNativeWindow()->layer(); local
59 ui::ScopedLayerAnimationSettings scoped_setter(layer->GetAnimator());
60 layer->SetOpacity(opacity);
84 window->layer()->Add(layer_owner_->root());
85 window->layer()->StackAtTop(layer_owner_->root());
91 ui::Layer* widget_layer = drag_widget_->GetNativeWindow()->layer();
    [all...]
  /external/chromium_org/cc/debug/
invalidation_benchmark.h 15 class Layer;
17 // invalidate a certain area of each layer every frame. It is intended to be
28 virtual void RunOnLayer(PictureLayer* layer) OVERRIDE;
32 enum Mode { FIXED_SIZE, LAYER, VIEWPORT, RANDOM };
34 void Run(Layer* layer);
micro_benchmark_impl.h 34 virtual void RunOnLayer(LayerImpl* layer);
35 virtual void RunOnLayer(PictureLayerImpl* layer);
picture_record_benchmark.h 18 class Layer;
27 virtual void RunOnLayer(PictureLayer* layer) OVERRIDE;
30 void Run(Layer* layer);
rasterize_and_record_benchmark_impl.h 31 virtual void RunOnLayer(PictureLayerImpl* layer) OVERRIDE;
34 void Run(LayerImpl* layer);
  /external/deqp/framework/platform/ios/
tcuEAGLView.m 32 // Override default layer.
54 return (CAEAGLLayer*)self.layer;
  /external/chromium_org/ui/aura/
window.cc 31 #include "ui/compositor/layer.h"
87 // Depth first search for the first Window with a layer to stack relative
90 ui::Layer* FindStackingTargetLayerDown(aura::Window* target,
95 if (target->layer())
96 return target->layer();
100 ui::Layer* layer = FindStackingTargetLayerDown<T>(*i, ignore); local
101 if (layer)
102 return layer;
109 // template type) and ignoring |ignore|. Returns the Layer of the first Windo
118 ui::Layer* layer = FindStackingTargetLayerDown<T>(*i, ignore); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerRepainter.cpp 68 if (m_renderer.layer()->hasVisibleContent()) {
103 ASSERT(!m_renderer.layer()->hasVisibleContent());
125 // FIXME: computeRepaintRects() has to walk up the parent chain for every layer to compute the rects.
130 for (RenderLayer* layer = m_renderer.layer()->firstChild(); layer; layer = layer->nextSibling()) {
131 if (layer->compositingState() != PaintsIntoOwnBacking && layer->compositingState() != PaintsIntoGroupedBacking
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayersPanel.js 120 if (this._currentlySelectedLayer && (!layerTree || !layerTree.layerById(this._currentlySelectedLayer.layer.id())))
122 if (this._currentlyHoveredLayer && (!layerTree || !layerTree.layerById(this._currentlyHoveredLayer.layer.id())))
133 if (this._currentlySelectedLayer && this._currentlySelectedLayer.layer === event.data)
160 var layer = /** @type {!WebInspector.Layer} */ (event.data);
162 this._paintProfilerView.profileLayer(layer);
170 var layer = activeObject && activeObject.layer;
174 var node = layer ? layer.nodeForSelfOrAncestor() : null
    [all...]
  /external/chromium_org/ui/wm/core/
transient_window_manager_unittest.cc 357 window11->layer()->set_delegate(NULL);
358 window13->layer()->set_delegate(NULL);
406 window1->layer()->set_delegate(NULL);
471 window->layer()->set_delegate(NULL);
473 window->layer()->SetVisible(visible);
475 window->layer()->SetVisible(visible);
485 // aura client attempts to manipulate the visibility and delegate of a layer
490 // spurious updating the client code may also clear window's layer's delegate,
492 // uses the presence of a NULL layer delegate as a signal in stacking to note
528 // resulting in window12's layer being below window1's layer (though th
    [all...]
  /bionic/libc/kernel/uapi/linux/tc_ematch/
tc_em_cmp.h 31 __u8 layer:4; member in struct:tcf_em_cmp
  /development/ndk/platforms/android-L/include/linux/tc_ematch/
tc_em_cmp.h 31 __u8 layer:4; member in struct:tcf_em_cmp
  /external/chromium-trace/trace-viewer/src/cc/
layer_tree_quad_stack_viewer.css 7 layer-tree-quad-stack-viewer > top-controls {
19 layer-tree-quad-stack-viewer > quad-stack-viewer {

Completed in 255 milliseconds

1 2 3 4 56 7 8 91011>>