/external/webkit/Source/WebCore/platform/graphics/android/layers/ |
D | VideoLayerManager.cpp | 155 GLuint VideoLayerManager::getTextureId(const int layerId) in getTextureId() argument 159 if (m_videoLayerInfoMap.contains(layerId)) in getTextureId() 160 result = m_videoLayerInfoMap.get(layerId)->textureId; in getTextureId() 165 float VideoLayerManager::getAspectRatio(const int layerId) in getAspectRatio() argument 169 if (m_videoLayerInfoMap.contains(layerId)) in getAspectRatio() 170 result = m_videoLayerInfoMap.get(layerId)->aspectRatio; in getAspectRatio() 175 GLfloat* VideoLayerManager::getMatrix(const int layerId) in getMatrix() argument 179 if (m_videoLayerInfoMap.contains(layerId)) in getMatrix() 180 result = m_videoLayerInfoMap.get(layerId)->surfaceMatrix; in getMatrix() 195 void VideoLayerManager::registerTexture(const int layerId, const GLuint textureId) in registerTexture() argument [all …]
|
D | VideoLayerManager.h | 73 void registerTexture(const int layerId, const GLuint textureId); 75 void updateVideoLayerSize(const int layerId, const int size, const float ratio); 77 void updateMatrix(const int layerId, const GLfloat* matrix); 79 void removeLayer(const int layerId); 82 GLuint getTextureId(const int layerId); 84 GLfloat* getMatrix(const int layerId); 86 float getAspectRatio(const int layerId); 91 double drawIcon(const int layerId, IconType type); 110 void removeLayerInternal(const int layerId);
|
D | CanvasTexture.cpp | 200 CanvasTexture::CanvasTexture(int layerId) in CanvasTexture() argument 202 , m_layerId(layerId) in CanvasTexture()
|
D | CanvasTexture.h | 77 CanvasTexture(int layerId);
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | LayerDrawableTest.java | 64 int layerId = 345; in testSetDrawableByLayerId1() local 65 layerDrawable.setId(index, layerId); in testSetDrawableByLayerId1() 67 layerDrawable.setDrawableByLayerId(layerId, drawable4000); in testSetDrawableByLayerId1() 77 int layerId = 345; in testSetDrawableByLayerId2() local 78 layerDrawable.setId(index, layerId); in testSetDrawableByLayerId2() 80 layerDrawable.setDrawableByLayerId(layerId, drawable4000); in testSetDrawableByLayerId2() 97 int layerId = 345; in setDrawableByLayerId_shouldReturnTrueIfIdWasFound() local 98 layerDrawable.setId(index, layerId); in setDrawableByLayerId_shouldReturnTrueIfIdWasFound() 100 boolean ret = layerDrawable.setDrawableByLayerId(layerId, drawable4000); in setDrawableByLayerId_shouldReturnTrueIfIdWasFound()
|
/external/webkit/Source/WebKit/android/nav/ |
D | DrawExtra.cpp | 50 int layerId = layer ? layer->uniqueId() : 0; in getHighlightRegionsForLayer() local 51 return m_highlightRegions.get(layerId); in getHighlightRegionsForLayer() 60 int layerId = layer ? layer->uniqueId() : 0; in addHighlightRegion() local 61 SkRegion* region = m_highlightRegions.get(layerId); in addHighlightRegion() 64 m_highlightRegions.set(layerId, region); in addHighlightRegion()
|
D | WebView.cpp | 416 void scrollLayer(int layerId, int x, int y) in scrollLayer() argument 419 m_glWebViewState->scrollLayer(layerId, x, y); in scrollLayer() 490 LayerAndroid* toRoot, int layerId) in copyScrollPosition() argument 494 const LayerAndroid* from = fromRoot->findById(layerId); in copyScrollPosition() 495 LayerAndroid* to = toRoot->findById(layerId); in copyScrollPosition() 578 const TransformationMatrix* getLayerTransform(int layerId) { in getLayerTransform() argument 579 if (layerId != -1 && m_baseLayer) { in getLayerTransform() 580 LayerAndroid* layer = m_baseLayer->findById(layerId); in getLayerTransform() 596 int layerId = selectText->caretLayerId(handleId); in getHandleLayerId() local 605 const TransformationMatrix* transform = getLayerTransform(layerId); in getHandleLayerId() [all …]
|
D | SelectText.h | 52 void setCaretLayerId(HandleId id, int layerId) { m_caretLayerId[id] = layerId; } in setCaretLayerId() argument
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
D | SurfaceCollectionManager.cpp | 184 void SurfaceCollectionManager::updateScrollableLayer(int layerId, int x, int y) in updateScrollableLayer() argument 187 m_queuedCollection->updateScrollableLayer(layerId, x, y); in updateScrollableLayer() 189 m_paintingCollection->updateScrollableLayer(layerId, x, y); in updateScrollableLayer() 191 m_drawingCollection->updateScrollableLayer(layerId, x, y); in updateScrollableLayer()
|
D | SurfaceCollection.cpp | 212 void SurfaceCollection::updateScrollableLayer(int layerId, int x, int y) in updateScrollableLayer() argument 214 LayerAndroid* layer = m_compositedRoot->findById(layerId); in updateScrollableLayer()
|
D | SurfaceCollectionManager.h | 50 void updateScrollableLayer(int layerId, int x, int y);
|
D | SurfaceCollection.h | 69 void updateScrollableLayer(int layerId, int x, int y);
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
D | GLWebViewState.h | 213 void scrollLayer(int layerId, int x, int y);
|
D | GLWebViewState.cpp | 122 void GLWebViewState::scrollLayer(int layerId, int x, int y) in scrollLayer() argument 124 m_surfaceCollectionManager.updateScrollableLayer(layerId, x, y); in scrollLayer()
|
/external/webkit/Source/WebKit/android/jni/ |
D | WebViewCore.cpp | 1565 int layerId = platformLayerIdFromNode(node, &layer); in setSelectionCaretInfo() local 1566 selectTextContainer->setCaretLayerId(handleId, layerId); in setSelectionCaretInfo() 1677 int layerId = platformLayerIdFromNode(node, &layer); in createSelectText() local 3466 int layerId = platformLayerIdFromNode(node, &layer); in createTextFieldInitData() local 3470 env->SetIntField(initData, classDef->m_nodeLayerId, layerId); in createTextFieldInitData()
|