OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:totalDelay
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebCore/platform/audio/
ReverbConvolverStage.cpp
62
size_t
totalDelay
= stageOffset + reverbTotalLatency;
66
ASSERT(
totalDelay
>= halfSize);
67
if (
totalDelay
>= halfSize)
68
totalDelay
-= halfSize;
72
int maxPreDelayLength = std::min(halfSize,
totalDelay
);
73
m_preDelayLength =
totalDelay
> 0 ? renderPhase % maxPreDelayLength : 0;
74
if (m_preDelayLength >
totalDelay
)
77
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
293
int
totalDelay
= Integer.parseInt(timeDiff);
297
totalDelay
< 30 * 1000);
302
totalDelay
> 60 * 1000);
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java
[
all
...]
Completed in 175 milliseconds