/bionic/tests/ |
sstream_test.cpp | 43 CheckOverflow<int16_t>(std::numeric_limits<int16_t>::min(), "-32768", false); local 45 CheckOverflow<int16_t>(std::numeric_limits<int16_t>::max(), "32767", false); local 48 CheckOverflow<uint16_t>(std::numeric_limits<uint16_t>::max(), "65535", false); local 53 CheckOverflow<int32_t>(std::numeric_limits<int32_t>::min(), "-2147483648", false); local 55 CheckOverflow<int32_t>(std::numeric_limits<int32_t>::max(), "2147483647", false); local 58 CheckOverflow<uint32_t>(std::numeric_limits<uint32_t>::max(), "4294967295", false); local 63 CheckOverflow<int64_t>(std::numeric_limits<int64_t>::min(), "-9223372036854775808", false); local 65 CheckOverflow<int64_t>(std::numeric_limits<int64_t>::max(), "9223372036854775807", false); local 68 CheckOverflow<uint64_t>(std::numeric_limits<uint64_t>::max(), "18446744073709551615", false); local
|
/external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/ |
op_lt.pass.cpp | 36 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s), false); local 38 test(random_access_iterator<char*>(s+1), random_access_iterator<char*>(s), false); local 39 test(s, s, false); 41 test(s+1, s, false);
|
op_neq.pass.cpp | 36 test(input_iterator<char*>(s), input_iterator<char*>(s), false); local 38 test(forward_iterator<char*>(s), forward_iterator<char*>(s), false); local 40 test(bidirectional_iterator<char*>(s), bidirectional_iterator<char*>(s), false); local 42 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s), false); local 44 test(s, s, false);
|
op_gt.pass.cpp | 36 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s), false); local 37 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s+1), false); 39 test(s, s, false); 40 test(s, s+1, false);
|
op_lte.pass.cpp | 38 test(random_access_iterator<char*>(s+1), random_access_iterator<char*>(s), false); local 41 test(s+1, s, false);
|
/external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op!=/ |
test.pass.cpp | 36 test(bidirectional_iterator<const char*>(s), bidirectional_iterator<const char*>(s), false); local 38 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s), false); local 40 test(s, s, false);
|
/external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt/ |
test.pass.cpp | 36 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s), false); local 38 test(random_access_iterator<const char*>(s+1), random_access_iterator<const char*>(s), false); local 39 test(s, s, false); 41 test(s+1, s, false);
|
/external/libcxxabi/test/ |
catch_in_noexcept.pass.cpp | 23 assert(false); variable 28 assert(false); variable
|
/frameworks/base/core/java/android/annotation/ |
IntDef.java | 59 boolean flag() default false; field in interface:IntDef
|
/frameworks/base/test-runner/src/android/test/ |
TimedTest.java | 35 boolean includeDetailedStats() default false; field in interface:TimedTest
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/ |
op_lt.pass.cpp | 36 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s), false); local 38 test(random_access_iterator<char*>(s+1), random_access_iterator<char*>(s), false); local 39 test(s, s, false); 41 test(s+1, s, false);
|
op_neq.pass.cpp | 36 test(input_iterator<char*>(s), input_iterator<char*>(s), false); local 38 test(forward_iterator<char*>(s), forward_iterator<char*>(s), false); local 40 test(bidirectional_iterator<char*>(s), bidirectional_iterator<char*>(s), false); local 42 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s), false); local 44 test(s, s, false);
|
op_gt.pass.cpp | 36 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s), false); local 37 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s+1), false); 39 test(s, s, false); 40 test(s, s+1, false);
|
op_lte.pass.cpp | 38 test(random_access_iterator<char*>(s+1), random_access_iterator<char*>(s), false); local 41 test(s+1, s, false);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op!=/ |
test.pass.cpp | 36 test(bidirectional_iterator<const char*>(s), bidirectional_iterator<const char*>(s), false); local 38 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s), false); local 40 test(s, s, false);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt/ |
test.pass.cpp | 36 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s), false); local 38 test(random_access_iterator<const char*>(s+1), random_access_iterator<const char*>(s), false); local 39 test(s, s, false); 41 test(s+1, s, false);
|
/art/test/005-annotations/src/android/test/anno/ |
ExportedProperty.java | 10 boolean resolveId() default false; field in interface:ExportedProperty
|
/art/test/029-assert/src/ |
Main.java | 24 assert false; local
|
/external/clang/test/Parser/ |
altivec-csk-bool.c | 4 // PR16456: Verify that bool, true, false are treated as context-sensitive 14 #define false false_value macro
|
/external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt=/ |
test.pass.cpp | 38 test(random_access_iterator<const char*>(s+1), random_access_iterator<const char*>(s), false); local 41 test(s+1, s, false);
|
/external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt/ |
test.pass.cpp | 36 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s), false); local 37 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s+1), false); 39 test(s, s, false); 40 test(s, s+1, false);
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
GenerateFieldPort.java | 29 boolean hasDefault() default false; field in interface:GenerateFieldPort
|
GenerateFinalPort.java | 29 boolean hasDefault() default false; field in interface:GenerateFinalPort
|
/frameworks/support/annotations/src/android/support/annotation/ |
IntDef.java | 61 boolean flag() default false; field in interface:IntDef
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt=/ |
test.pass.cpp | 38 test(random_access_iterator<const char*>(s+1), random_access_iterator<const char*>(s), false); local 41 test(s+1, s, false);
|