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

  /frameworks/av/media/libmedia/
ToneGenerator.cpp 33 .repeatCnt = ToneGenerator::TONEGEN_INF,
37 .repeatCnt = ToneGenerator::TONEGEN_INF,
41 .repeatCnt = ToneGenerator::TONEGEN_INF,
45 .repeatCnt = ToneGenerator::TONEGEN_INF,
49 .repeatCnt = ToneGenerator::TONEGEN_INF,
53 .repeatCnt = ToneGenerator::TONEGEN_INF,
57 .repeatCnt = ToneGenerator::TONEGEN_INF,
61 .repeatCnt = ToneGenerator::TONEGEN_INF,
65 .repeatCnt = ToneGenerator::TONEGEN_INF,
69 .repeatCnt = ToneGenerator::TONEGEN_INF
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
BaseTween.java 20 private int repeatCnt;
49 repeatCnt = 0;
153 repeatCnt = count;
170 repeatCnt = count;
254 return repeatCnt;
268 * fullDuration = delay + duration + (repeatDelay + duration) * repeatCnt
272 if (repeatCnt < 0) return -1;
273 return delay + duration + (repeatDelay + duration) * repeatCnt;
373 step = repeatCnt*2 + 1;
375 if (isReverse(repeatCnt*2)) forceStartValues()
    [all...]
  /frameworks/av/include/media/
ToneGenerator.h 235 // - repeatCnt indicates the number of times the sequence described by segments[] array must be repeated.
236 // When the tone generator encounters the first 0 duration segment, it will compare repeatCnt to mCurCount.
237 // If mCurCount > repeatCnt, the tone is stopped automatically. Otherwise, tone sequence will be
239 // - repeatSegment number of the first repeated segment when repeatCnt is not null
252 unsigned long repeatCnt;

Completed in 52 milliseconds