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

  /external/webkit/Source/WebCore/platform/graphics/android/layers/
PicturePileLayerContent.h 44 virtual float maxZoomScale() { return m_maxZoomScale; }
PictureLayerContent.cpp 54 maxZoomScale(); // for now only check the maximum scale for painting
57 float PictureLayerContent::maxZoomScale()
PictureLayerContent.h 44 virtual float maxZoomScale();
63 virtual float maxZoomScale() { return 1e6; }
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;
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.h 150 float maxZoomScale() { return m_maxZoomScale; }
  /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;

Completed in 575 milliseconds