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

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
ReverbConvolverStage.cpp 70 size_t totalDelay = stageOffset + reverbTotalLatency;
75 ASSERT(totalDelay >= halfSize);
76 if (totalDelay >= halfSize)
77 totalDelay -= halfSize;
82 int maxPreDelayLength = std::min(halfSize, totalDelay);
83 m_preDelayLength = totalDelay > 0 ? renderPhase % maxPreDelayLength : 0;
84 if (m_preDelayLength > totalDelay)
87 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);
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 176 long totalDelay = removeDuration + Math.max(moveDuration, changeDuration);
178 ViewCompat.postOnAnimationDelayed(view, adder, 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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java     [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/test/
audio_device_test_api.cc 92 const uint32_t totalDelay,
    [all...]
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 

Completed in 160 milliseconds