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

  /sdk/traceview/src/com/android/traceview/
TickScaler.java 77 public void setTickIncrement(double tickIncrement) {
78 mTickIncrement = tickIncrement;
134 // Round down the min val to a multiple of tickIncrement
TimeLineView.java 791 double tickIncrement = mScaleInfo.getTickIncrement();
792 double minorTickIncrement = tickIncrement / 5;
809 if (tickIncrement <= 10) {
810 // TODO avoid rendering the loop when tickIncrement is invalid. It can be zero
812 // System.out.println(String.format("Timescale.drawTicks error: tickIncrement=%1f", tickIncrement));
815 for (double x = minMajorTick; x <= maxVal; x += tickIncrement) {
    [all...]

Completed in 982 milliseconds