HomeSort by relevance Sort by last modified time
    Searched full:layer (Results 1 - 25 of 2937) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
drawable1-expected-completion49.txt 2 android:left : Left coordinate of the layer. [dimension]
3 android:top : Top coordinate of the layer. [dimension]
4 android:right : Right coordinate of the layer. [dimension]
5 android:bottom : Bottom coordinate of the layer. [dimension]
6 android:drawable : Drawable used to render the layer. [reference]
7 android:id : Identifier of the layer. [reference]
drawable1.xml 2 <layer-list
5 </layer-list>
drawable1-expected-completion48.txt 2 android:opacity : Indicates the opacity of the layer. [enum]
  /frameworks/base/libs/hwui/
LayerCache.cpp 37 INIT_LOGD(" Setting layer cache size to %sMB", property);
40 INIT_LOGD(" Using default layer cache size of %.2fMB", DEFAULT_LAYER_CACHE_SIZE);
81 void LayerCache::deleteLayer(Layer* layer) {
82 if (layer) {
83 LAYER_LOGD("Destroying layer %dx%d, fbo %d", layer->getWidth(), layer->getHeight(),
84 layer->getFbo());
85 mSize -= layer->getWidth() * layer->getHeight() * 4
100 Layer* layer = nullptr; local
    [all...]
LayerRenderer.h 23 #include "Layer.h"
49 LayerRenderer(RenderState& renderState, Layer* layer);
58 static Layer* createTextureLayer(RenderState& renderState);
59 static Layer* createRenderLayer(RenderState& renderState, uint32_t width, uint32_t height);
60 static bool resizeLayer(Layer* layer, uint32_t width, uint32_t height);
61 static void updateTextureLayer(Layer* layer, uint32_t width, uint32_t height,
63 static void destroyLayer(Layer* layer)
    [all...]
LayerRenderer.cpp 38 LayerRenderer::LayerRenderer(RenderState& renderState, Layer* layer)
40 , 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();
87 LAYER_RENDERER_LOGD("Finished rendering into layer, fbo = %d", mLayer->getFbo());
103 // Layer support
163 const float height = mLayer->layer.getHeight();
186 Layer* LayerRenderer::createRenderLayer(RenderState& renderState, uint32_t width, uint32_t height)
198 Layer* layer = caches.layerCache.get(renderState, width, height); local
275 Layer* layer = new Layer(Layer::kType_Texture, renderState, 0, 0); local
    [all...]
LayerCache.h 21 #include "Layer.h"
49 * Returns a layer large enough for the specified dimensions. If no suitable
50 * layer can be found, a new one is created and returned. If creating a new
51 * layer fails, NULL is returned.
53 * When a layer is obtained from the cache, it is removed and the total
56 * @param width The desired width of the layer
57 * @param height The desired height of the layer
59 Layer* get(RenderState& renderState, const uint32_t width, const uint32_t height);
62 * Adds the layer to the cache. The layer will not be added if there i
    [all...]
Layer.cpp 19 #include "Layer.h"
32 ATRACE_FORMAT("%s HW Layer DisplayList %s %ux%u", \
40 Layer::Layer(Type layerType, RenderState& renderState, uint32_t layerWidth, uint32_t layerHeight)
55 Layer::~Layer() {
68 void Layer::onGlContextLost() {
73 uint32_t Layer::computeIdealWidth(uint32_t layerWidth) {
77 uint32_t Layer::computeIdealHeight(uint32_t layerHeight) {
81 void Layer::requireRenderer()
    [all...]
  /packages/apps/Camera2/res/drawable/
shutter_button_background_refocus.xml 2 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
4 </layer-list>
shutter_button_background_still.xml 2 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
4 </layer-list>
cover.xml 2 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
9 </layer-list>
shutter_button_background_video.xml 2 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
6 </layer-list>
  /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...]
  /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/skia/tests/
GpuLayerCacheTest.cpp 24 static int Uses(GrCachedLayer* layer) {
25 return layer->uses();
43 GrCachedLayer* layer = cache->findLayerOrCreate(picture.uniqueID(), local
50 REPORTER_ASSERT(reporter, layer);
53 REPORTER_ASSERT(reporter, temp == layer);
57 REPORTER_ASSERT(reporter, picture.uniqueID() == layer->pictureID());
58 REPORTER_ASSERT(reporter, layer->start() == idOffset + i + 1);
59 REPORTER_ASSERT(reporter, layer->stop() == idOffset + i + 2);
60 REPORTER_ASSERT(reporter, NULL == layer->texture());
61 REPORTER_ASSERT(reporter, NULL == layer->paint())
123 GrCachedLayer* layer = TestingAccess::Find(&cache, picture->uniqueID(), SkMatrix::I(), local
143 GrCachedLayer* layer = TestingAccess::Find(&cache, picture->uniqueID(), SkMatrix::I(), local
152 GrCachedLayer* layer = TestingAccess::Find(&cache, picture->uniqueID(), SkMatrix::I(), local
182 GrCachedLayer* layer = TestingAccess::Find(&cache, picture->uniqueID(), SkMatrix::I(), local
193 GrCachedLayer* layer = TestingAccess::Find(&cache, picture->uniqueID(), SkMatrix::I(), local
    [all...]
  /cts/tests/tests/graphics/res/xml/
layerdrawable.xml 18 <layer-list_full>
19 <layer-list>
36 </layer-list>
37 </layer-list_full>
38 <layer-list_empty>
39 <layer-list>
41 </layer-list>
42 </layer-list_empty>
43 <layer-list_exception>
44 <layer-list
    [all...]
  /external/iproute2/include/linux/tc_ematch/
tc_em_nbyte.h 10 __u8 layer:4; member in struct:tcf_em_nbyte
  /external/iptables/extensions/
libxt_pkttype.man 1 This module matches the link-layer packet type.
libxt_length.man 1 This module matches the length of the layer-3 payload (e.g. layer-4 packet)
  /external/kernel-headers/original/uapi/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.11-4.8/sysroot/usr/include/linux/tc_ematch/
tc_em_nbyte.h 11 __u8 layer:4; member in struct:tcf_em_nbyte
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/tc_ematch/
tc_em_nbyte.h 10 __u8 layer:4; member in struct:tcf_em_nbyte
  /external/skia/include/effects/
SkLayerDrawLooper.h 23 * Bits specifies which aspects of the layer's paint should replace the
25 * kEntirePaint_Bits means use the layer's paint completely.
26 * 0 means ignore the layer's paint... except for fColorMode, which is
30 kStyle_Bit = 1 << 0, //!< use this layer's Style/stroke settings
31 kTextSkewX_Bit = 1 << 1, //!< use this layer's textskewx
32 kPathEffect_Bit = 1 << 2, //!< use this layer's patheffect
33 kMaskFilter_Bit = 1 << 3, //!< use this layer's maskfilter
34 kShader_Bit = 1 << 4, //!< use this layer's shader
35 kColorFilter_Bit = 1 << 5, //!< use this layer's colorfilter
36 kXfermode_Bit = 1 << 6, //!< use this layer's xfermod
    [all...]
  /external/libvorbis/macos/
libvorbis.mcp.exp 20 # Vorbis PRIMITIVES: analysis/DSP layer
32 # Vorbis PRIMITIVES: synthesis layer
  /external/nist-sip/java/gov/nist/core/net/
package.html 2 Contains the Network layer classes and interfaces. The network layer

Completed in 868 milliseconds

1 2 3 4 5 6 7 8 91011>>