HomeSort by relevance Sort by last modified time
    Searched full:infinite (Results 201 - 225 of 3070) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatRoundTripTest.java 42 public boolean INFINITE = false;
69 if (INFINITE) {
70 // Special infinite loop test mode for finding hard to reproduce errors
72 logln("ENTERING INFINITE TEST LOOP FOR Locale: " + loc.getDisplayName());
100 if (!INFINITE) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatRoundTripTest.java 39 public boolean INFINITE = false;
66 if (INFINITE) {
67 // Special infinite loop test mode for finding hard to reproduce errors
69 logln("ENTERING INFINITE TEST LOOP FOR Locale: " + loc.getDisplayName());
97 if (!INFINITE) {
  /external/mesa3d/include/c11/
threads_win32.h 190 WaitForSingleObject(cond->sem_gate, INFINITE);
216 WaitForSingleObject(cond->sem_gate, INFINITE);
222 w = WaitForSingleObject(cond->sem_queue, xt ? impl_xtime2msec(xt) : INFINITE);
244 WaitForSingleObject(cond->sem_gate, INFINITE);
253 WaitForSingleObject(cond->sem_queue, INFINITE);
399 SleepConditionVariableCS(&cond->condvar, mtx, INFINITE);
562 w = WaitForSingleObject(thr, INFINITE);
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorSetTest.java 204 xAnimator.setRepeatCount(ValueAnimator.INFINITE);
372 xAnimator.setRepeatCount(ValueAnimator.INFINITE);
386 xAnimator.setRepeatCount(ValueAnimator.INFINITE);
579 xAnimator.setRepeatCount(ValueAnimator.INFINITE);
601 xAnimator.setRepeatCount(ValueAnimator.INFINITE);
751 * Testing seeking in an AnimatorSet containing infinite animators.
760 a2.setRepeatCount(ValueAnimator.INFINITE);
765 a3.setRepeatCount(ValueAnimator.INFINITE);
784 // Seek to the 1st iteration of the infinite repeat animators, and they should have the
791 // Seek to the 2nd iteration of the infinite repeat animators, and they should hav
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpMath.java 116 /* If result[0] is infinite or zero, don't compute result[1].
120 if (result[0].classify() == Dfp.INFINITE || result[0].equals(result[1])) {
272 return a.newInstance((byte)1, Dfp.INFINITE);
330 if (a.classify() == Dfp.INFINITE) {
548 return x.newInstance(x.newInstance((byte)1, Dfp.INFINITE));
557 return x.newInstance(x.newInstance((byte)-1, Dfp.INFINITE));
564 return x.newInstance(x.newInstance((byte)1, Dfp.INFINITE));
576 if (x.greaterThan(one) && y.classify() == Dfp.INFINITE) {
584 if (x.lessThan(one) && y.classify() == Dfp.INFINITE) {
592 if (x.equals(one) && y.classify() == Dfp.INFINITE) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
libpython.py 32 visited so far in the traversal, to avoid infinite recursion due to cycles in
232 whilst generating this value (to guard against infinite recursion when
362 Placeholder proxy to use when protecting against infinite recursion due to
459 # Guard against infinite loops:
475 # Guard against infinite loops:
501 # Guard against infinite loops:
510 # Guard against infinite loops:
627 # Guard against infinite loops:
640 # Guard against infinite loops:
661 # Guard against infinite loops:
    [all...]
  /external/pdfium/fpdfsdk/
fpdfview_embeddertest.cpp 345 // The following tests pass if the document opens without infinite looping.
350 // Test if the document opens without infinite looping.
358 // Make sure calling FPDFAvail_IsDocAvail() on this file does not infinite
367 // cause infinite loop.
373 // dictionary will not cause an infinite loop in CPDF_SyntaxParser::GetObject().
378 // The test should pass when there is no infinite recursion in
  /external/llvm/utils/lit/tests/
shtest-timeout.py 29 # CHECK-INTSH-OUT-NEXT: Running infinite loop
65 # CHECK-OUT-COMMON: Running infinite loop
100 # CHECK-CMDLINE-OVERRIDE-OUT: Running infinite loop
  /external/python/cpython2/Include/
pymath.h 109 * non-infinite value v sitting in an 80-bit x87 register such that
110 * v becomes infinite when spilled from the register to 64-bit memory.
123 * Return 1 if float or double arg is neither infinite nor NAN, else 0.
  /external/python/cpython3/Include/
pymath.h 113 * non-infinite value v sitting in an 80-bit x87 register such that
114 * v becomes infinite when spilled from the register to 64-bit memory.
127 * Return 1 if float or double arg is neither infinite nor NAN, else 0.
  /external/v8/src/base/platform/
condition-variable.cc 280 while (!event->WaitFor(INFINITE)) {
305 if (msec >= static_cast<int64_t>(INFINITE)) {
306 result = event->WaitFor(INFINITE - 1);
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
dynamic_pt_reading_helper.cpp 24 // To avoid infinite loop caused by invalid or malicious forward links.
260 // method to avoid an infinite loop.
273 // Count up nodes and node arrays to avoid infinite loop.
dynamic_pt_reading_helper.h 34 * dealing with additional buffer. This class counts nodes and node arrays to avoid infinite loop.
237 // Counter of PtNodes used to avoid infinite loops caused by broken or malicious links.
239 // Counter of PtNode arrays used to avoid infinite loops caused by cyclic links of empty
  /art/test/566-polymorphic-inlining/
polymorphic_inline.cc 37 // Infinite loop... Test harness will have its own timeout.
  /art/test/980-redefine-object/src-ex/
TestWatcher.java 65 // We could enter an infinite loop if println allocates (which it does) so we disable
  /art/test/986-native-method-bind/src/art/
Test986.java 49 // Disable native bind notify for now to avoid infinite loops.
  /cts/tests/tests/graphics/jni/
android_graphics_cts_SyncTest.cpp 54 ret = poll(pollfds.get(), n, -1 /* infinite timeout */);
  /development/tools/idegen/src/com/android/idegen/
ModuleCache.java 61 // Must put module before building it. Otherwise infinite loop.
  /device/google/contexthub/firmware/lib/libm/
wf_exp.c 54 SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
sre.h 69 void* last_ptr; /* helper to check for infinite loops */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread_wince.h 108 waitResult = WaitForSingleObject(aLock, (waitflag ? INFINITE : 0));
  /external/ImageMagick/Magick++/lib/
Thread.cpp 96 if (WaitForSingleObject(_mutex,INFINITE) != WAIT_FAILED)
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CharStream.as 32 /** For infinite streams, you don't need this; primarily I'm providing
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ICharStream.cs 39 * For infinite streams, you don't need this; primarily I'm providing
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ICharStream.cs 41 * For infinite streams, you don't need this; primarily I'm providing

Completed in 3162 milliseconds

1 2 3 4 5 6 7 891011>>