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

  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
ReverbConvolverStage.cpp 71 size_t totalDelay = stageOffset + reverbTotalLatency;
76 ASSERT(totalDelay >= halfSize);
77 if (totalDelay >= halfSize)
78 totalDelay -= halfSize;
83 int maxPreDelayLength = std::min(halfSize, totalDelay);
84 m_preDelayLength = totalDelay > 0 ? renderPhase % maxPreDelayLength : 0;
85 if (m_preDelayLength > totalDelay)
88 m_postDelayLength = totalDelay - m_preDelayLength;
  /frameworks/base/core/java/android/view/animation/
GridLayoutAnimationController.java 315 float totalDelay;
325 totalDelay = rowsCount * rowDelay + columnsCount * rowsCount * rowDelay;
329 totalDelay = columnsCount * columnDelay + rowsCount * columnsCount * columnDelay;
334 totalDelay = columnsCount * columnDelay + rowsCount * rowDelay;
338 float normalizedDelay = viewDelay / totalDelay;
341 return (long) (normalizedDelay * totalDelay);
LayoutAnimationController.java 378 final float totalDelay = delay * params.count;
384 float normalizedDelay = viewDelay / totalDelay;
387 return (long) (normalizedDelay * totalDelay);
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 296 int totalDelay = Integer.parseInt(timeDiff);
300 totalDelay < 30 * 1000);
305 totalDelay > 60 * 1000);
    [all...]
  /frameworks/uiautomator/tests/CtsUiAutomatorTest/src/com/android/uiautomator/tests/cts/
CtsUiAutomatorTest.java 270 int totalDelay = Integer.parseInt(timeDiff);
274 totalDelay < 30 * 1000);
279 totalDelay > 60 * 1000);
    [all...]

Completed in 405 milliseconds