/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/ |
LayerRenderer.h | 21 #include "Layer.h" 45 LayerRenderer(Layer* layer): mLayer(layer) { 58 static Layer* createTextureLayer(bool isOpaque); 59 static Layer* createLayer(uint32_t width, uint32_t height, bool isOpaque = false); 60 static bool resizeLayer(Layer* layer, uint32_t width, uint32_t height); 61 static void updateTextureLayer(Layer* layer, uint32_t width, uint32_t height [all...] |
LayerRenderer.cpp | 35 LAYER_RENDERER_LOGD("Rendering into layer, fbo = %d", mLayer->getFbo()); 39 const float width = mLayer->layer.getWidth(); 40 const float height = mLayer->layer.getHeight(); 65 LAYER_RENDERER_LOGD("Finished rendering into layer, fbo = %d", mLayer->getFbo()); 140 const float height = mLayer->layer.getHeight(); 176 Layer* LayerRenderer::createLayer(uint32_t width, uint32_t height, bool isOpaque) { 177 LAYER_RENDERER_LOGD("Requesting new render layer %dx%d", width, height); 186 Layer* layer = Caches::getInstance().layerCache.get(width, height); local 187 if (!layer) { 259 Layer* layer = new Layer(0, 0); local [all...] |
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); 69 void LayerCache::deleteLayer(Layer* layer) { 70 if (layer) { 71 LAYER_LOGD("Destroying layer %dx%d", layer->getWidth(), layer->getHeight()); 72 mSize -= layer->getWidth() * layer->getHeight() * 4 88 Layer* layer = NULL; 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 width The desired height of the layer 59 Layer* get(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...] |
/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/webkit/Source/WebCore/platform/graphics/android/ |
Layer.cpp | 2 #include "Layer.h" 14 Layer::Layer() { 29 SkDebugf("Layer new: %d\n", gLayerAllocCount); 33 Layer::Layer(const Layer& src) : INHERITED() { 48 SkDebugf("Layer copy: %d\n", gLayerAllocCount); 52 Layer::~Layer() { [all...] |
Layer.h | 30 class Layer : public SkRefCnt { 33 Layer(); 34 Layer(const Layer&); 35 virtual ~Layer(); 37 // Whether the layer should apply its tranform directly onto the root 38 // layer, rather than using the transforms of all ancestor layers. This is 68 Layer* getChild(int index) const; 70 /** Add this layer to our child list at the end (top-most), and ref() it. 74 Layer* addChild(Layer* child) [all...] |
ScrollableLayerAndroid.h | 31 ScrollableLayerAndroid(const ScrollableLayerAndroid& layer) 32 : LayerAndroid(layer) 33 , m_scrollLimits(layer.m_scrollLimits) {} 34 ScrollableLayerAndroid(const LayerAndroid& layer) 35 : LayerAndroid(layer) 47 // Scrolls to the given position in the layer. 63 // Given a rect in the layer, scrolls to bring the rect into view. Uses a 66 // visible area of the layer, we favor the top and left of the rect. 70 friend void android::serializeLayer(LayerAndroid* layer, SkWStream* stream); 74 // The position of the visible area of the layer, relative to the paren [all...] |
/frameworks/base/core/java/android/view/ |
HardwareLayer.java | 24 * A hardware layer can be used to render graphics operations into a hardware 25 * friendly buffer. For instance, with an OpenGL backend, a hardware layer 26 * would use a Frame Buffer Object (FBO.) The hardware layer can be used as 42 * Creates a new hardware layer with undefined dimensions. 49 * Creates a new hardware layer at least as large as the supplied 52 * @param width The minimum width of the layer 53 * @param height The minimum height of the layer 54 * @param isOpaque Whether the layer should be opaque or not 63 * Returns the minimum width of the layer. 65 * @return The minimum desired width of the hardware layer [all...] |
/external/webkit/Source/WebKit/android/jni/ |
ViewStateSerializer.cpp | 31 #include "Layer.h" 87 LayerAndroid* layer = static_cast<LayerAndroid*>(baseLayer->getChild(i)); local 88 serializeLayer(layer, stream); 100 BaseLayerAndroid* layer = new BaseLayerAndroid(); 103 layer->setBackgroundColor(color); 106 layer->setContent(picture); 112 layer->addChild(childLayer); 115 for (int i = 0; i < layer->countChildren(); i++) { 116 LayerAndroid* childLayer = static_cast<LayerAndroid*>(layer->getChild(i)); 120 return layer; [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/include/effects/ |
SkLayerDrawLooper.h | 15 * Bits specifies which aspects of the layer's paint should replace the 17 * kEntirePaint_Bits means use the layer's paint completely. 18 * 0 means ignore the layer's paint. 21 kStyle_Bit = 1 << 0, //!< use this layer's Style/stroke settings 22 kTextSkewX_Bit = 1 << 1, //!< use this layer's textskewx 23 kPathEffect_Bit = 1 << 2, //!< use this layer's patheffect 24 kMaskFilter_Bit = 1 << 3, //!< use this layer's maskfilter 25 kShader_Bit = 1 << 4, //!< use this layer's shader 26 kColorFilter_Bit = 1 << 5, //!< use this layer's colorfilter 27 kXfermode_Bit = 1 << 6, //!< use this layer's xfermod [all...] |
/cts/tests/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)
|
/prebuilt/linux-x86/toolchain/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
|
/external/nist-sip/java/gov/nist/core/net/ |
package.html | 2 Contains the Network layer classes and interfaces. The network layer
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
ViewOverlay.java | 22 * This is implemented by {@link View}s that contain an alpha layer and touch interceptor layer. 23 * The alpha layer covers the entire fragment and has an alpha value which makes the fragment 24 * contents appear "dimmed" out. The touch interceptor layer covers the entire fragment so that 30 * Sets the alpha value on the alpha layer (if there is one). 35 * Makes the touch intercept layer on this fragment visible (if there is one). Also adds a click 36 * listener which is called when there is a touch event on the layer. 41 * Makes the touch intercept layer on this fragment gone (if there is one).
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
WebTiledLayer.mm | 62 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self); 63 if (layer && layer->owner() && layer->owner()->platformCALayerDrawsContent()) 69 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self); 70 if (layer) 71 setLayerNeedsDisplayInRect(self, layer->owner(), dirtyRect); 77 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self); 78 if (layer && layer->owner() [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
GcSnapshot.java | 55 * a list of Graphics2D for each layers. The class actually maintains a list of {@link Layer} 56 * for each layer. Doing a save() will duplicate this list so that each graphics2D object 57 * ({@link Layer#getGraphics()}) is configured only for the new snapshot. 65 private final ArrayList<Layer> mLayers = new ArrayList<Layer>(); 72 // local layer data 73 /** a local layer created with {@link Canvas#saveLayer(RectF, Paint, int)}. 74 * If this is null, this does not mean there's no layer, just that the snapshot is not the 75 * one that created the layer. 78 private final Layer mLocalLayer 330 Layer layer = mLayers.get(i); local 591 Layer layer = mLayers.get(i); local [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderLayerCompositor.cpp | 129 // layer creation from the enclosing RenderIFrame. 321 // Host the document layer in the RenderView's root layer. 346 bool RenderLayerCompositor::updateBacking(RenderLayer* layer, CompositingChangeRepaint shouldRepaint) 350 if (needsToBeComposited(layer)) { 354 if (requiresCompositingForTransform(layer->renderer())) 357 // If we are a child of a scrollable layer, ignore the overlap from the 358 // scrollable layer as it can cause child layers to become composited 359 // siblings and will not scroll with the main content layer. 360 if (layer->hasOverflowParent() 1892 RenderLayer* layer = m_renderView->layer(); local [all...] |