HomeSort by relevance Sort by last modified time
    Searched refs:layer (Results 26 - 50 of 860) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/cc/layers/
tiled_layer_unittest.cc 38 void SetRenderTarget(Layer* render_target) {
71 layer_tree_host_->SetRootLayer(Layer::Create());
117 void LayerPushPropertiesTo(FakeTiledLayer* layer,
121 layer->PushPropertiesTo(layer_impl);
122 layer->ResetNumDependentsNeedPushProperties();
125 void LayerUpdate(FakeTiledLayer* layer, TestOcclusionTracker* occluded) {
127 layer->Update(queue_.get(), occluded);
209 scoped_refptr<FakeTiledLayer> layer = local
215 layer_tree_host_->root_layer()->AddChild(layer);
218 layer->SetBounds(gfx::Size(100, 200))
238 scoped_refptr<FakeTiledLayer> layer = local
290 scoped_refptr<FakeTiledLayer> layer = local
329 scoped_refptr<FakeTiledLayer> layer = local
369 scoped_refptr<FakeTiledLayer> layer = local
509 scoped_refptr<FakeTiledLayer> layer = local
535 scoped_refptr<FakeTiledLayer> layer = local
639 scoped_refptr<FakeTiledLayer> layer = local
686 scoped_refptr<FakeTiledLayer> layer = local
715 scoped_refptr<FakeTiledLayer> layer = local
748 scoped_refptr<FakeTiledLayer> layer = local
786 scoped_refptr<FakeTiledLayer> layer = local
828 scoped_refptr<FakeTiledLayerWithScaledBounds> layer = make_scoped_refptr( local
874 scoped_refptr<FakeTiledLayer> layer = local
988 scoped_refptr<FakeTiledLayer> layer = local
1007 scoped_refptr<FakeTiledLayer> layer = local
1034 scoped_refptr<FakeTiledLayer> layer = make_scoped_refptr( local
1138 scoped_refptr<FakeTiledLayer> layer = local
1156 scoped_refptr<FakeTiledLayer> layer = local
1222 scoped_refptr<FakeTiledLayer> layer = local
1296 scoped_refptr<FakeTiledLayer> layer = local
1343 scoped_refptr<FakeTiledLayer> layer = local
1382 scoped_refptr<FakeTiledLayer> layer = local
1489 scoped_refptr<FakeTiledLayer> layer = local
1612 scoped_refptr<FakeTiledLayer> layer = local
1886 scoped_refptr<UpdateTrackingTiledLayer> layer = local
1922 scoped_refptr<UpdateTrackingTiledLayer> layer = local
    [all...]
delegated_frame_provider.h 23 // Only one observing layer has ownership of the DelegatedFrameProvider. Only
35 void AddObserver(DelegatedRendererLayer* layer);
36 void RemoveObserver(DelegatedRendererLayer* layer);
60 DelegatedRendererLayer* layer; member in struct:cc::DelegatedFrameProvider::Observer
63 Observer(DelegatedRendererLayer* layer, const gfx::RectF& damage)
64 : layer(layer), damage(damage) {}
picture_layer_unittest.cc 30 scoped_refptr<PictureLayer> layer = PictureLayer::Create(&client); local
31 layer->SetBounds(gfx::Size(10, 10));
34 host->SetRootLayer(layer);
35 layer->SetIsDrawable(true);
36 layer->SavePaintProperties();
40 layer->Update(queue.get(), &occlusion);
42 layer->SetBounds(gfx::Size(0, 0));
43 layer->SavePaintProperties();
45 // a layer with empty bounds.
57 layer->PushPropertiesTo(layer_impl.get())
    [all...]
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_external_texture_layer_impl.cc 28 scoped_refptr<TextureLayer> layer = TextureLayer::CreateForMailbox(cc_client); local
29 layer->SetIsDrawable(true);
30 layer_.reset(new WebLayerImpl(layer));
34 static_cast<TextureLayer*>(layer_->layer())->ClearClient();
37 blink::WebLayer* WebExternalTextureLayerImpl::layer() { return layer_.get(); } function in class:webkit::WebExternalTextureLayerImpl
40 TextureLayer *layer = static_cast<TextureLayer*>(layer_->layer()); local
41 layer->WillModifyTexture();
42 layer->SetTextureMailbox(cc::TextureMailbox(),
47 static_cast<TextureLayer*>(layer_->layer())->SetContentsOpaque(opaque)
    [all...]
web_solid_color_layer_impl.cc 16 layer_->layer()->SetIsDrawable(true);
21 blink::WebLayer* WebSolidColorLayerImpl::layer() { return layer_.get(); } function in class:webkit::WebSolidColorLayerImpl
  /external/chromium_org/third_party/WebKit/Source/web/tests/
Canvas2DLayerManagerTest.cpp 57 // Because the fake layer has no canvas to query, just
137 // verify multi-layer allocation tracking
152 FakeCanvas2DLayerBridgePtr layer(adoptRef(new FakeCanvas2DLayerBridge(context, canvas.release())));
153 layer->fakeFreeableBytes(10);
154 layer->storageAllocatedForRecordingChanged(8); // under the max
155 EXPECT_EQ(0, layer->m_freeMemoryIfPossibleCount);
156 layer->storageAllocatedForRecordingChanged(12); // over the max
157 EXPECT_EQ(1, layer->m_freeMemoryIfPossibleCount);
158 EXPECT_EQ((size_t)3, layer->m_freeableBytes);
159 EXPECT_EQ(0, layer->m_flushCount); // eviction succeeded without triggering a flus
    [all...]
  /frameworks/base/libs/hwui/
LayerRenderer.cpp 36 LayerRenderer::LayerRenderer(Layer* layer): mLayer(layer) {
48 LAYER_RENDERER_LOGD("Rendering into layer, fbo = %d", mLayer->getFbo());
52 const float width = mLayer->layer.getWidth();
53 const float height = mLayer->layer.getHeight();
89 LAYER_RENDERER_LOGD("Finished rendering into layer, fbo = %d", mLayer->getFbo());
104 // Layer support
164 const float height = mLayer->layer.getHeight();
187 Layer* LayerRenderer::createLayer(uint32_t width, uint32_t height, bool isOpaque)
198 Layer* layer = caches.layerCache.get(width, height); local
276 Layer* layer = new Layer(0, 0); local
    [all...]
  /external/opencv/ml/src/
mlcnn.cpp 70 static void icvCNNetworkAddLayer( CvCNNetwork* network, CvCNNLayer* layer );
73 /* In all layer functions we denote input by X and output by Y, where
78 /*------------------------ functions for convolutional layer ---------------------------*/
81 static void icvCNNConvolutionForward( CvCNNLayer* layer, const CvMat* X, CvMat* Y );
83 static void icvCNNConvolutionBackward( CvCNNLayer* layer, int t,
86 /*------------------------ functions for sub-sampling layer ----------------------------*/
89 static void icvCNNSubSamplingForward( CvCNNLayer* layer, const CvMat* X, CvMat* Y );
91 static void icvCNNSubSamplingBackward( CvCNNLayer* layer, int t,
94 /*------------------------ functions for full connected layer --------------------------*/
97 static void icvCNNFullConnectForward( CvCNNLayer* layer, const CvMat* X, CvMat* Y )
    [all...]
  /external/chromium_org/ash/wm/
screen_dimmer_unittest.cc 13 #include "ui/compositor/layer.h"
39 // Don't create a layer until we need to.
40 EXPECT_TRUE(test_api_->layer() == NULL);
42 EXPECT_TRUE(test_api_->layer() == NULL);
44 // When we enable dimming, the layer should be created and stacked at the top
47 ASSERT_TRUE(test_api_->layer() != NULL);
48 ui::Layer* root_layer = Shell::GetPrimaryRootWindow()->layer();
50 EXPECT_EQ(test_api_->layer(), root_layer->children().back());
51 EXPECT_TRUE(test_api_->layer()->visible())
    [all...]
  /external/wpa_supplicant_8/hostapd/logwatch/
hostapd 29 if (my ($iface,$mac,$layer,$details) = ($line =~ /(.*?): STA (.*?) (.*?): (.*?)$/i)) {
34 $hostapd{$iface}->{$mac}->{$layer}->{$details}++;
45 foreach my $layer (sort keys %{$hostapd{$iface}->{$mac}}) {
46 print " $layer:\n";
47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) {
49 my $count = $hostapd{$iface}->{$mac}->{$layer}->{$details};
  /external/chromium_org/third_party/WebKit/public/platform/
WebContentLayer.h 40 virtual WebLayer* layer() = 0;
42 // Set to true if the backside of this layer's contents should be visible when composited.
46 // Allow the compositor to determine the scale at which the layer should
47 // be rasterized based on the layer's hierarchy and transform. This defaults
51 // Set to draw a system-defined checkerboard if the compositor would otherwise draw a tile in this layer
52 // and the actual contents are unavailable. If false, the compositor will draw the layer's background color
WebExternalTextureLayer.h 37 // This class represents a layer that renders a texture that is generated
47 virtual WebLayer* layer() = 0;
49 // Clears texture from the layer.
52 // Sets whether every pixel in this layer is opaque. Defaults to false.
55 // Sets whether this layer's texture has premultiplied alpha or not. Defaults to true.
WebNinePatchLayer.h 45 virtual WebLayer* layer() = 0;
WebScrollbarLayer.h 43 virtual WebLayer* layer() = 0;
  /external/chromium_org/ui/compositor/
debug_utils.h 16 class Layer;
18 // Log the layer hierarchy. Mark layers which contain |mouse_location| with '*'.
19 COMPOSITOR_EXPORT void PrintLayerHierarchy(const Layer* layer,
layer_owner.h 11 #include "ui/compositor/layer.h"
20 // Releases the owning reference to its layer, and returns it.
23 // function, and the caller is then responsible for disposing of the layer
24 // once any animation completes. Note that layer() will remain valid until the
26 Layer* AcquireLayer() WARN_UNUSED_RESULT;
28 ui::Layer* layer() { return layer_; } function in class:ui::LayerOwner
29 const ui::Layer* layer() const { return layer_; } function in class:ui::LayerOwner
32 // The LayerOwner owns its layer unless ownership is relinquished via a cal
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_ematch/
tc_em_nbyte.h 10 __u8 layer:4; member in struct:tcf_em_nbyte
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_ematch/
tc_em_nbyte.h 10 __u8 layer:4; member in struct:tcf_em_nbyte
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_ematch/
tc_em_nbyte.h 10 __u8 layer:4; member in struct:tcf_em_nbyte
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
ComposingText.java 36 * Text layer 0.
38 * This text layer holds key strokes.<br>
43 * Text layer 1.
45 * This text layer holds the result of the letter converter.<br>
50 * Text layer 2.
52 * This text layer holds the result of the consecutive clause converter.<br>
60 /** Composing text's layer data */
96 * @param layer Layer
101 public StrSegment getStrSegment(int layer, int pos)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
LayersPanel.js 112 var layer = /** @type {!WebInspector.Layer} */ (event.data);
113 this._selectLayer(layer);
121 var layer = /** @type WebInspector.Layer */ (event.data);
122 this._hoverLayer(layer);
130 var layer = /** @type {!WebInspector.Layer} */ (event.data);
132 this._paintProfilerView.profile(layer);
136 * @param {?WebInspector.Layer} laye
    [all...]
  /external/chromium_org/content/shell/android/
shell_manager.h 33 void ShellAttachLayer(blink::WebLayer* layer);
34 void ShellRemoveLayer(blink::WebLayer* layer);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_resolve_map.c 30 * \brief Set that the miptree slice at (level, layer) needs a resolve.
38 uint32_t layer,
45 if ((*tail)->level == level && (*tail)->layer == layer) {
57 (*tail)->layer = layer;
68 uint32_t layer)
73 if (item->level == level && item->layer == layer)
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_resolve_map.c 30 * \brief Set that the miptree slice at (level, layer) needs a resolve.
38 uint32_t layer,
45 if ((*tail)->level == level && (*tail)->layer == layer) {
57 (*tail)->layer = layer;
68 uint32_t layer)
73 if (item->level == level && item->layer == layer)
  /external/chromium-trace/trace-viewer/src/cc/
layer_picker.css 6 layer-picker {
11 layer-picker > top-controls {
22 layer-picker > .x-list-view {
28 layer-picker > x-generic-object-view {
34 layer-picker > x-generic-object-view * {

Completed in 663 milliseconds

12 3 4 5 6 7 8 91011>>