Searched defs:layerId (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DCanvasTexture.cpp200 CanvasTexture::CanvasTexture(int layerId) argument
202 , m_layerId(layerId)
H A DVideoLayerManager.cpp155 GLuint VideoLayerManager::getTextureId(const int layerId) argument
159 if (m_videoLayerInfoMap.contains(layerId))
160 result = m_videoLayerInfoMap.get(layerId)->textureId;
165 float VideoLayerManager::getAspectRatio(const int layerId) argument
169 if (m_videoLayerInfoMap.contains(layerId))
170 result = m_videoLayerInfoMap.get(layerId)->aspectRatio;
175 GLfloat* VideoLayerManager::getMatrix(const int layerId) argument
179 if (m_videoLayerInfoMap.contains(layerId))
180 result = m_videoLayerInfoMap.get(layerId)->surfaceMatrix;
195 void VideoLayerManager::registerTexture(const int layerId, cons argument
226 updateVideoLayerSize(const int layerId, const int size, const float ratio) argument
248 updateMatrix(const int layerId, const GLfloat* matrix) argument
326 removeLayer(const int layerId) argument
335 removeLayerInternal(const int layerId) argument
353 drawIcon(const int layerId, IconType type) argument
[all...]
/external/webkit/Source/WebKit/android/nav/
H A DDrawExtra.cpp50 int layerId = layer ? layer->uniqueId() : 0; local
51 return m_highlightRegions.get(layerId);
60 int layerId = layer ? layer->uniqueId() : 0; local
61 SkRegion* region = m_highlightRegions.get(layerId);
64 m_highlightRegions.set(layerId, region);
H A DSelectText.h52 void setCaretLayerId(HandleId id, int layerId) { m_caretLayerId[id] = layerId; } argument
H A DWebView.cpp416 void scrollLayer(int layerId, int x, int y) argument
419 m_glWebViewState->scrollLayer(layerId, x, y);
490 LayerAndroid* toRoot, int layerId)
494 const LayerAndroid* from = fromRoot->findById(layerId);
495 LayerAndroid* to = toRoot->findById(layerId);
578 const TransformationMatrix* getLayerTransform(int layerId) { argument
579 if (layerId != -1 && m_baseLayer) {
580 LayerAndroid* layer = m_baseLayer->findById(layerId);
596 int layerId = selectText->caretLayerId(handleId); local
605 const TransformationMatrix* transform = getLayerTransform(layerId);
489 copyScrollPosition(const LayerAndroid* fromRoot, LayerAndroid* toRoot, int layerId) argument
615 mapLayerRect(int layerId, SkIRect& rect) argument
686 findMaskedRectsForLayer(LayerAndroid* layer, Vector<FloatRect>& rects, int layerId) argument
743 isPointVisible(int layerId, int contentX, int contentY) argument
998 nativeDumpLayerContentToPicture(JNIEnv *env, jobject obj, jint instance, jstring jclassName, jint layerId, jobject pict) argument
1236 nativeScrollLayer(JNIEnv* env, jobject obj, jint nativeView, jint layerId, jint x, jint y) argument
1301 int layerId = webview->getHandleLayerId((SelectText::HandleId) handleIndex, local
1310 nativeMapLayerRect(JNIEnv *env, jobject obj, jint nativeView, jint layerId, jobject rect) argument
1344 nativeIsPointVisible(JNIEnv *env, jobject obj, jint nativeView, jint layerId, jint contentX, jint contentY) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DSurfaceCollectionManager.cpp184 void SurfaceCollectionManager::updateScrollableLayer(int layerId, int x, int y) argument
187 m_queuedCollection->updateScrollableLayer(layerId, x, y);
189 m_paintingCollection->updateScrollableLayer(layerId, x, y);
191 m_drawingCollection->updateScrollableLayer(layerId, x, y);
H A DSurfaceCollection.cpp212 void SurfaceCollection::updateScrollableLayer(int layerId, int x, int y) argument
214 LayerAndroid* layer = m_compositedRoot->findById(layerId);
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGLWebViewState.cpp122 void GLWebViewState::scrollLayer(int layerId, int x, int y) argument
124 m_surfaceCollectionManager.updateScrollableLayer(layerId, x, y);
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp1563 int layerId = platformLayerIdFromNode(node, &layer); local
1564 selectTextContainer->setCaretLayerId(handleId, layerId);
1675 int layerId = platformLayerIdFromNode(node, &layer); local
3464 int layerId = platformLayerIdFromNode(node, &layer); local
3468 env->SetIntField(initData, classDef->m_nodeLayerId, layerId);

Completed in 301 milliseconds