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

  /external/webkit/Source/WebCore/platform/graphics/android/layers/
PictureLayerContent.cpp 51 maxZoomScale(); // for now only check the maximum scale for painting
54 float PictureLayerContent::maxZoomScale()
PicturePileLayerContent.h 44 virtual float maxZoomScale() { return m_maxZoomScale; }
LayerAndroid.cpp 216 float LayerAndroid::maxZoomScale() const
218 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 283 float PicturePile::maxZoomScale() const
285 float maxZoomScale = 1;
287 maxZoomScale = std::max(maxZoomScale, m_pile[i].maxZoomScale);
289 return maxZoomScale;
316 pc.maxZoomScale = pgc.maxZoomScale();
368 pc.maxZoomScale = 1e6;
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.h 147 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 168 milliseconds