HomeSort by relevance Sort by last modified time
    Searched refs:maxZoomScale (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/android/layers/
PictureLayerContent.h 44 virtual float maxZoomScale();
63 virtual float maxZoomScale() { return 1e6; }
LayerContent.h 48 virtual float maxZoomScale() = 0;
PicturePileLayerContent.h 44 virtual float maxZoomScale() { return m_maxZoomScale; }
PicturePileLayerContent.cpp 15 , m_maxZoomScale(picturePile.maxZoomScale())
PictureLayerContent.cpp 54 maxZoomScale(); // for now only check the maximum scale for painting
57 float PictureLayerContent::maxZoomScale()
LayerAndroid.h 265 float maxZoomScale() const;
LayerAndroid.cpp 217 float LayerAndroid::maxZoomScale() const
219 return m_content ? m_content->maxZoomScale() : 1.0f;
    [all...]
  /external/webkit/Source/WebKit/android/jni/
PicturePile.h 74 float maxZoomScale;
80 , maxZoomScale(1)
108 float maxZoomScale() const;
PicturePile.cpp 282 float PicturePile::maxZoomScale() const
284 float maxZoomScale = 1;
286 maxZoomScale = std::max(maxZoomScale, m_pile[i].maxZoomScale);
288 return maxZoomScale;
315 pc.maxZoomScale = pgc.maxZoomScale();
367 pc.maxZoomScale = 1e6;
  /frameworks/base/core/tests/coretests/src/android/webkit/
ZoomManagerTest.java 84 // test the case where the maxZoomScale has changed to be < the default
86 float maxZoomScale = ZoomManager.DEFAULT_MAX_ZOOM_SCALE_FACTOR * newDefaultScale;
88 maxViewState.mMaxScale = maxZoomScale - 0.1f;
95 // test the case where the maxZoomScale has changed to be > the default
97 float maxZoomScale = ZoomManager.DEFAULT_MAX_ZOOM_SCALE_FACTOR * newDefaultScale;
99 maxViewState.mMaxScale = maxZoomScale + 0.1f;
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
SurfaceBacking.h 43 void prepareGL(GLWebViewState* state, float maxZoomScale,
SurfaceBacking.cpp 67 void SurfaceBacking::prepareGL(GLWebViewState* state, float maxZoomScale,
75 m_maxZoomScale = std::max(m_maxZoomScale, maxZoomScale);
Surface.cpp 143 m_maxZoomScale = std::max(m_maxZoomScale, layer->maxZoomScale());
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.h 150 float maxZoomScale() { return m_maxZoomScale; }

Completed in 285 milliseconds