HomeSort by relevance Sort by last modified time
    Searched refs:layer (Results 226 - 250 of 396) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/html/
HTMLMarqueeElement.cpp 196 return renderBoxModelObject()->layer()->marquee();
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.h 57 // This set of flags help us defer which properties of the layer have been
144 void uploadTextureFromContent(TextureMapper* textureMapper, const IntRect& visibleRect, GraphicsLayer* layer);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h 70 int layer; /* current video layer */ member in struct:tagApplicationData
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.h 36 int BitstreamOpen(BitstreamDecVideo *stream, int layer);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/
mp4enc_api.h 157 /** @brief Specifies encoded heights in pixels, height[n] represents the n-th layer's height. */
160 /** @brief Specifies encoded widths in pixels, width[n] represents the n-th layer's width.*/
163 /** @brief Specifies target frame rates in frames per second, frameRate[n] represents the n-th layer's target frame rate.*/
166 /** @brief Specifies target bit rates in bits per second unit, bitRate[n] represents the n-th layer's target bit rate. */
169 /** @brief Specifies default quantization parameters for I-Vop. Iquant[n] represents the n-th layer default quantization parameter. The default is Iquant[0]=12.*/
172 /** @brief Specifies default quantization parameters for P-Vop. Pquant[n] represents the n-th layer default quantization parameter. The default is Pquant[0]=10.*/
175 /** @brief specifies quantization mode (H263 mode or MPEG mode) of the encoded base and enhance layer (if any).
273 * @param layer is the layer of the requested VOL header.
276 OSCL_IMPORT_REF Bool PVGetVolHeader(VideoEncControls *encCtrl, UChar *volHeader, Int *size, Int layer);
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
LayerDrawable.java 37 * It can be defined in an XML file with the <code>&lt;layer-list></code> element.
38 * Each Drawable in the layer is defined in a nested <code>&lt;item></code>. For more
62 * Create a new layer drawable with the list of specified layers.
71 * Create a new layer drawable with the specified list of layers and the specified
176 * Add a new layer to this drawable. The new layer is identified by an id.
178 * @param layer The drawable to add as a layer.
179 * @param id The id of the new layer.
180 * @param left The left padding of the new layer
    [all...]
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 250 status_t DisplayListRenderer::drawLayer(Layer* layer, float x, float y) {
251 layer = refLayer(layer);
252 addDrawOp(new (alloc()) DrawLayerOp(layer, x, y));
ResourceCache.cpp 82 void ResourceCache::incrementRefcount(Layer* layerResource) {
116 void ResourceCache::incrementRefcountLocked(Layer* layerResource) {
145 void ResourceCache::decrementRefcount(Layer* layerResource) {
182 void ResourceCache::decrementRefcountLocked(Layer* layerResource) {
339 Layer* layer = (Layer*) resource; local
340 Caches::getInstance().deleteLayerDeferred(layer);
  /frameworks/base/services/input/
InputWindow.h 133 int32_t layer; member in struct:android::InputWindowInfo
  /frameworks/native/include/gui/
SurfaceComposerClient.h 116 status_t setLayer(const sp<IBinder>& id, int32_t layer);
130 /* setDisplayProjection() defines the projection of layer stacks
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 707 // faster without using the shadow layer at all.
    [all...]
  /external/libnfc-nci/src/adaptation/
libmain.c 380 UINT8 *scru_dump_hex (UINT8 *p, char *pTitle, UINT32 len, UINT32 layer, UINT32 type)
384 dumpbin(p, len, layer, type);
  /external/webkit/Source/WebCore/rendering/
RenderLayerBacking.cpp 87 RenderLayerBacking::RenderLayerBacking(RenderLayer* layer)
88 : m_owningLayer(layer)
157 static bool layerOrAncestorIsTransformed(RenderLayer* layer)
159 for (RenderLayer* curr = layer; curr; curr = curr->parent()) {
168 static bool layerOrAncestorIsFullScreen(RenderLayer* layer)
170 // Don't traverse through the render layer tree if we do not yet have a full screen renderer.
171 if (!layer->renderer()->document()->fullScreenRenderer())
174 for (RenderLayer* curr = layer; curr; curr = curr->parent()) {
187 // Clip to the size of the document or enclosing overflow-scroll layer.
198 RenderLayer* rootLayer = view->layer();
    [all...]
RenderFlexibleBox.cpp 184 layer()->setHasVerticalScrollbar(true);
242 layer()->setHasHorizontalScrollbar(true);
244 layer()->setHasVerticalScrollbar(true);
290 layer()->updateScrollInfoAfterLayout();
407 RenderLayer* childLayer = child->layer();
642 RenderLayer* childLayer = child->layer();
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.cpp 48 #include "../Layer.h" // needed only for debugging
799 * This holds the pointer to the concrete hwc layer type
807 Iterable(HWCTYPE* layer) : mLayerList(layer), mCurrentLayer(layer) { }
829 HWCLayerVersion1(struct hwc_composer_device_1* hwc, hwc_layer_1_t* layer)
830 : Iterable<HWCLayerVersion1, hwc_layer_1_t>(layer), mHwc(hwc) { }
923 * returns an iterator initialized at a given index in the layer list
937 * returns an iterator on the beginning of the layer list
944 * returns an iterator on the end of the layer lis
    [all...]
  /external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
main.m 276 // Show the controller layer.
282 // Hide the controller layer if the movie is playing.
355 // Setup layer hierarchy.
356 obj->rootLayer = [[CALayer layer] retain];
358 obj->movieLayer = [QTMovieLayer layer];
362 obj->controllerLayer = [MovieControllerLayer layer];
380 // Make sure to return a retained layer
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 69 unsigned layer = (ptr[1] >> 1) & 3; local
71 if (layer != 0) {
102 unsigned layer = (ptr[1] >> 1) & 3; local
104 if (layer == 0) {
427 bits.skipBits(3); // ID, layer
668 unsigned layer = 4 - ((header >> 17) & 3); local
687 switch (layer) {
  /frameworks/base/core/java/android/view/
GLES20Canvas.java 44 // Must match modifiers used in the JNI layer
94 GLES20Canvas(int layer, boolean translucent) {
96 mRenderer = nCreateLayerRenderer(layer);
125 private static native int nCreateLayerRenderer(int layer);
160 void pushLayerUpdate(HardwareLayer layer) {
161 nPushLayerUpdate(mRenderer, ((GLES20RenderLayer) layer).mLayer);
186 private static native void nPushLayerUpdate(int renderer, int layer);
398 // Hardware layer
401 void drawHardwareLayer(HardwareLayer layer, float x, float y, Paint paint) {
402 layer.setLayerPaint(paint)
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 1409 hwc_layer_1_t *layer = &hwcList->hwLayers[0]; local
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
colorcheckertest.cpp 128 // If the image is a color image and can be converted to a luminance layer
132 // Computes the gradient image on the luminance layer.
427 // Computes the gradient in both x and y direction of a layer
428 void ColorCheckerTest::computeGradient(unsigned char* layer,
437 0.5f * (layer[i * width + j + 1] -
438 layer[i * width + j - 1]);
440 0.5f * (layer[(i + 1) * width + j] -
441 layer[(i - 1) * width + j]);
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.h 508 // record content in a new BaseLayerAndroid, copying the layer tree as well
554 // Attempts to scroll the layer to the x,y coordinates of rect. The
555 // layer is the id of the LayerAndroid.
556 void scrollRenderLayer(int layer, const SkRect& rect);
581 static void layerToAbsoluteOffset(const WebCore::LayerAndroid* layer,
729 WebCore::LayerAndroid* layer);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
NavTabScroller.java 484 boolean layer = false;
510 layer = true;
522 if (layer) {
  /device/lge/mako/camera/
Android.mk 74 # if debug service layer and up , use stub camera!
  /external/bluetooth/bluedroid/main/
Android.mk 9 # HAL layer
  /external/webkit/Source/WebKit/chromium/src/
WebPluginContainerImpl.cpp 581 // Take our element and get the clip rect from the enclosing layer and
583 RenderLayer* layer = m_element->renderer()->enclosingLayer(); local
585 m_element->document()->view()->windowClipRectForLayer(layer, true));

Completed in 749 milliseconds

1 2 3 4 5 6 7 8 91011>>