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

1 2 3

  /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...]
  /bionic/libc/arch-x86_64/bionic/
__bionic_clone.S 61 # We don't want anyone to unwind past this point.
  /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.
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
Period.java 16 * 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...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
Period.java 15 * In addition Period can either represent the duration as being into the past
34 * count units extending into the past.
46 * count units extending into the past.
58 * less than count units extending into the past.
131 * Mark the duration as extending into the past.
141 * future is true, and into the past otherwise.
151 * Mark the duration as extending into the past if
152 * past is true, and into the future otherwise.
154 * @param past true if the time is in the past
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.h 39 unsigned past, future, current; member in struct:nouveau_decoder
nouveau_video.c 100 dec->current = dec->future = dec->past = 8;
301 assert(!forward || dec->past < 8);
311 x, y, mb->PMV[0][0], dec->past, TRUE);
313 x, y2, mb->PMV[0][0], dec->past, FALSE);
336 x, y, mb->PMV[0][0], dec->past, TRUE);
356 x, y, mb->PMV[0][0], dec->past, TRUE);
369 x, y, mb->PMV[0][0], dec->past, TRUE);
372 x, y2, mb->PMV[1][0], dec->past, FALSE);
443 dec->past = nouveau_decoder_surface_index(dec, desc->ref[0]);
  /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/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java 458 * which case we try the node one past. We don't check any
463 SNode past = s.next; local
464 if (past != null && past.isCancelled())
465 past = past.next;
469 while ((p = head) != null && p != past && p.isCancelled())
473 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) {
  /external/opencv3/3rdparty/zlib/
gzguts.h 180 int past; /* true if read requested past end */ member in struct:__anon20548
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/pdfium/third_party/zlib_v128/
gzguts.h 196 int past; /* true if read requested past end */ member in struct:__anon21697
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/zlib/src/
gzguts.h 180 int past; /* true if read requested past end */ member in struct:__anon27240
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/v8/test/webkit/
delete-then-put.js 25 'This tests for a problem with put after delete that existed at one point in the past.'
array-holes.js 29 return "bad index: past length";
  /external/libchrome/base/metrics/
histogram.cc 443 int64_t past = 0; local
467 WriteAsciiBucketContext(past, current, remaining, i, output);
469 past += current;
471 DCHECK_EQ(sample_count, past);
502 void Histogram::WriteAsciiBucketContext(const int64_t past,
507 double scaled_sum = (past + current + remaining) / 100.0;
510 double percentage = past / scaled_sum;
  /external/boringssl/src/crypto/sha/asm/
sha256-armv4.pl 86 add $a,$a,$t2 @ h+=Maj(a,b,c) from the past
93 add $a,$a,$t2 @ h+=Maj(a,b,c) from the past
151 add $a,$a,$t2 @ h+=Maj(a,b,c) from the past
261 add $A,$A,$t2 @ h+=Maj(a,b,c) from the past
449 '&add ($a,$a,$t2)', # h+=Maj(a,b,c) from the past
554 add $A,$A,$t2 @ h+=Maj(a,b,c) from the past
  /external/libvorbis/doc/
02-bitpacking.tex 222 Attempting to read past the end of an encoded packet results in an
227 handle reading past the end of a packet as a typical mode of
237 not past, such that an 'end-of-packet' condition has not triggered)
  /external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
TestANTLRStringStream.as 30 // now consume past EOF for a few ticks, nothing should change

Completed in 275 milliseconds

1 2 3