Home
last modified time | relevance | path

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

/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
DInteractiveLineGraphView.java354 mAxisXPositionsBuffer[i] = getDrawX(mXStopsBuffer.stops[i]); in drawAxes()
357 mAxisYPositionsBuffer[i] = getDrawY(mYStopsBuffer.stops[i]); in drawAxes()
383 labelLength = formatFloat(mLabelBuffer, mXStopsBuffer.stops[i], mXStopsBuffer.decimals); in drawAxes()
396 labelLength = formatFloat(mLabelBuffer, mYStopsBuffer.stops[i], mYStopsBuffer.decimals); in drawAxes()
471 outStops.stops = new float[]{}; in computeAxisStops()
497 if (outStops.stops.length < n) { in computeAxisStops()
499 outStops.stops = new float[n]; in computeAxisStops()
503 outStops.stops[i] = (float) f; in computeAxisStops()
1181 float[] stops = new float[]{}; field in InteractiveLineGraphView.AxisStops