HomeSort by relevance Sort by last modified time
    Searched refs:past (Results 1 - 25 of 270) sorted by null

1 2 3 4 5 6 7 8 91011

  /bionic/libc/arch-x86_64/bionic/
__bionic_clone.S 61 # We don't want anyone to unwind past this point.
  /frameworks/base/core/java/android/widget/
DateTimeView.java 217 // If the time is in the past, don't schedule an update
233 boolean past = (now >= mTimeMillis);
241 result = String.format(getContext().getResources().getQuantityString(past
249 result = String.format(getContext().getResources().getQuantityString(past
259 result = String.format(getContext().getResources().getQuantityString(past
264 if (past || count != 1) {
273 result = String.format(getContext().getResources().getQuantityString(past
281 if (past) {
345 boolean past = (now >= mTimeMillis);
351 result = String.format(getContext().getResources().getQuantityString(past
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/vad/
pole_zero_filter.cc 56 static float FilterArPast(const T* past, size_t order,
61 sum += coefficients[k] * past[past_index];
91 // Record into the past signal.
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug347.go 39 // walk past runtime frames
bug348.go 34 // walk past runtime frames
  /prebuilts/go/linux-x86/test/fixedbugs/
bug347.go 39 // walk past runtime frames
bug348.go 34 // walk past runtime frames
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
Period.java 18 * In addition Period can either represent the duration as being into the past
38 * count units extending into the past.
50 * count units extending into the past.
62 * less than count units extending into the past.
135 * Mark the duration as extending into the past.
145 * future is true, and into the past otherwise.
155 * Mark the duration as extending into the past if
156 * past is true, and into the future otherwise.
158 * @param past true if the time is in the past
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
Period.java 17 * In addition Period can either represent the duration as being into the past
36 * count units extending into the past.
48 * count units extending into the past.
60 * less than count units extending into the past.
133 * Mark the duration as extending into the past.
143 * future is true, and into the past otherwise.
153 * Mark the duration as extending into the past if
154 * past is true, and into the future otherwise.
156 * @param past true if the time is in the past
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/sha1/
sha1block_amd64.go 21 // So it may read up-to 192 bytes past end of p
  /prebuilts/go/darwin-x86/test/
gcstring.go 7 // Test that s[len(s):] - which can point past the end of the allocated block -
  /prebuilts/go/linux-x86/src/crypto/sha1/
sha1block_amd64.go 21 // So it may read up-to 192 bytes past end of p
  /prebuilts/go/linux-x86/test/
gcstring.go 7 // Test that s[len(s):] - which can point past the end of the allocated block -
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.h 39 unsigned past, future, current; member in struct:nouveau_decoder
  /external/deqp/modules/glshared/
glsCalibration.cpp 285 // Do a few past iterations have frame time in acceptable range?
291 const CalibrateIteration* const past = &m_calibrateIterations[m_calibrateIterations.size() - numRelevantPastIterations]; local
296 const float frameTimeUs = past[i].frameTime;
305 // Do a few past iterations have similar-enough call counts?
310 const CalibrateIteration* const past = &m_calibrateIterations[m_calibrateIterations.size() - numRelevantPastIterations]; local
316 minCallCount = de::min(minCallCount, past[i].numDrawCalls);
317 maxCallCount = de::max(maxCallCount, past[i].numDrawCalls);
369 // Find the maximum of the past call counts.
  /libcore/ojluni/src/main/java/java/util/concurrent/
SynchronousQueue.java 487 * which case we try the node one past. We don't check any
492 SNode past = s.next; local
493 if (past != null && past.isCancelled())
494 past = past.next;
498 while ((p = head) != null && p != past && p.isCancelled())
502 while (p != null && p != past) {
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
RelativeDateTimeFormatter.java 93 // Android has been inconsistent about capitalization in the past. e.g. bug http://b/20247811.
118 boolean past = (now >= time);
128 if (past) {
166 if (past) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzguts.h 180 int past; /* true if read requested past end */ member in struct:__anon5556
gzlib.c 81 state->past = 0; /* have not read past end yet */
401 state->past = 0;
524 return state->mode == GZ_READ ? state->past : 0;
564 state->past = 0;
gzread.c 339 state->past = 1; /* tried to read past end */
456 state->past = 0;
478 state->past = 0;
520 state->past = 1; /* read past end */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/
gzguts.h 186 int past; /* true if read requested past end */ member in struct:__anon5611
  /external/pdfium/third_party/zlib_v128/
gzguts.h 188 int past; /* true if read requested past end */ member in struct:__anon29506
gzlib.c 81 state->past = 0; /* have not read past end yet */
401 state->past = 0;
524 return state->mode == GZ_READ ? state->past : 0;
564 state->past = 0;
gzread.c 339 state->past = 1; /* tried to read past end */
456 state->past = 0;
478 state->past = 0;
520 state->past = 1; /* read past end */
  /external/python/cpython2/Modules/zlib/
gzguts.h 180 int past; /* true if read requested past end */ member in struct:__anon30411

Completed in 507 milliseconds

1 2 3 4 5 6 7 8 91011