OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:last_delay
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/sync/internal_api/attachments/
task_queue_unittest.cc
109
TimeDelta
last_delay
= mock_timer->GetCurrentDelay();
local
121
EXPECT_GT(mock_timer->GetCurrentDelay(),
last_delay
);
123
last_delay
= mock_timer->GetCurrentDelay();
135
EXPECT_GT(mock_timer->GetCurrentDelay(),
last_delay
);
136
last_delay
= mock_timer->GetCurrentDelay();
153
EXPECT_GE(
last_delay
, mock_timer->GetCurrentDelay());
154
last_delay
= mock_timer->GetCurrentDelay();
171
EXPECT_LT(mock_timer->GetCurrentDelay(),
last_delay
);
172
last_delay
= mock_timer->GetCurrentDelay();
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
delay_estimator.h
46
int
last_delay
;
member in struct:__anon20534
delay_estimator_unittest.cc
132
// |
last_delay
| may be equal to -2 before initialization if done on the fly.
133
EXPECT_EQ(-2, binary_->
last_delay
);
159
// |
last_delay
| may be equal to -2 before initialization if done on the fly.
160
EXPECT_EQ(-2, binary1->
last_delay
);
161
EXPECT_EQ(-2, binary2->
last_delay
);
427
// (|
last_delay
| = -2). Then we compare the Process() output with the
428
//
last_delay
() call.
431
int
last_delay
= 0;
local
437
last_delay
= WebRtc_DelayEstimatorProcessFloat(handle_, near_f_,
439
if (
last_delay
!= -2)
[
all
...]
Completed in 33 milliseconds