Home
last modified time | relevance | path

Searched refs:mDrawableBoundsCache (Results 1 – 2 of 2) sorted by relevance

/external/MPAndroidChart/MPChartLib/src/main/java/com/github/mikephil/charting/components/
DMarkerImage.java37 private Rect mDrawableBoundsCache = new Rect(); field in MarkerImage
152 mDrawable.copyBounds(mDrawableBoundsCache); in draw()
154 mDrawableBoundsCache.left, in draw()
155 mDrawableBoundsCache.top, in draw()
156 mDrawableBoundsCache.left + (int)width, in draw()
157 mDrawableBoundsCache.top + (int)height); in draw()
165 mDrawable.setBounds(mDrawableBoundsCache); in draw()
/external/MPAndroidChart/MPChartLib/src/main/java/com/github/mikephil/charting/utils/
DUtils.java528 private static Rect mDrawableBoundsCache = new Rect();
539 drawable.copyBounds(mDrawableBoundsCache);
541 mDrawableBoundsCache.left,
542 mDrawableBoundsCache.top,
543 mDrawableBoundsCache.left + width,
544 mDrawableBoundsCache.top + width);