HomeSort by relevance Sort by last modified time
    Searched refs:check (Results 126 - 150 of 5165) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
COFF_i386.s 2 // RUN: llvm-rtdyld -triple i686-windows -dummy-extern _printf=0xfffffffd -dummy-extern _OutputDebugStringA@4=0xfffffffe -dummy-extern _ExitProcess@4=0xffffffff -verify -check=%s %t.obj
14 # rtdyld-check: decode_operand(rel1, 0) = (_function-_main-4-1)
18 # rtdyld-check: decode_operand(rel12, 0)[31:0] = (_printf-_main-4-8)
29 # rtdyld-check: decode_operand(rel3, 3) = __imp__OutputDebugStringA
34 # rtdyld-check: decode_operand(rel4, 3) = __imp__ExitProcess
44 # rtdyld-check: *{4}__imp__OutputDebugStringA = 0xfffffffe
50 # rtdyld-check: *{4}__imp__ExitProcess = 0xffffffff
61 # rtdyld-check: *{4}rel5 = _function - section_addr(COFF_i386.s.tmp.obj, .text)
63 # rtdyld-check: *{2}rel6 = 1
66 # rtdyld-check: *{4}rel7 = relocations - section_addr(COFF_i386.s.tmp.obj, .data
    [all...]
  /external/eigen/test/
fastmath.cpp 12 void check(bool b, bool ref) function
37 std::cout << "std::isfinite(" << m(3) << ") = "; check((std::isfinite)(m(3)),false); std::cout << " ; numext::isfinite = "; check((numext::isfinite)(m(3)), false); std::cout << "\n";
38 std::cout << "std::isinf(" << m(3) << ") = "; check((std::isinf)(m(3)),false); std::cout << " ; numext::isinf = "; check((numext::isinf)(m(3)), false); std::cout << "\n";
39 std::cout << "std::isnan(" << m(3) << ") = "; check((std::isnan)(m(3)),true); std::cout << " ; numext::isnan = "; check((numext::isnan)(m(3)), true); std::cout << "\n";
40 std::cout << "allFinite: "; check(m.allFinite(), 0); std::cout << "\n";
41 std::cout << "hasNaN: "; check(m.hasNaN(), 1); std::cout << "\n";
56 std::cout << "std::isfinite(" << m(4) << ") = "; check((std::isfinite)(m(4)),false); std::cout << " ; numext::isfinite = "; check((numext::isfinite)(m(4 (…)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
UriMatcherTest.java 107 check("content://asdf", UriMatcher.NO_MATCH, matcher);
108 check("content://people", PEOPLE, matcher);
109 check("content://people/", PEOPLE, matcher);
110 check("content://people/1", PEOPLE_ID, matcher);
111 check("content://people/asdf", UriMatcher.NO_MATCH, matcher);
112 check("content://people/2/phones", PEOPLE_PHONES, matcher);
113 check("content://people/2/phones/3", PEOPLE_PHONES_ID, matcher);
114 check("content://people/2/phones/asdf", UriMatcher.NO_MATCH, matcher);
115 check("content://people/2/addresses", PEOPLE_ADDRESSES, matcher);
116 check("content://people/2/addresses/3", PEOPLE_ADDRESSES_ID, matcher)
133 private void check(String uri, int expected, UriMatcher matcher) { method in class:UriMatcherTest
    [all...]
  /prebuilts/go/darwin-x86/test/interface/
struct.go 15 func check(b bool, msg string) { func
32 check(i.Get() == 1, "f1 i")
33 check(s.i == 1, "f1 s")
40 check(i.Get() == 1, "f2 i")
41 check(s.i == 1, "f2 s")
48 check(i.Get() == 1, "f3 i")
49 check(s.i == 1, "f3 s")
61 // check(i.Get() == 2, "f4 i")
62 // check(s.i == 1, "f4 s")
69 check(i.Get() == 2, "f5 i"
    [all...]
  /prebuilts/go/linux-x86/test/interface/
struct.go 15 func check(b bool, msg string) { func
32 check(i.Get() == 1, "f1 i")
33 check(s.i == 1, "f1 s")
40 check(i.Get() == 1, "f2 i")
41 check(s.i == 1, "f2 s")
48 check(i.Get() == 1, "f3 i")
49 check(s.i == 1, "f3 s")
61 // check(i.Get() == 2, "f4 i")
62 // check(s.i == 1, "f4 s")
69 check(i.Get() == 2, "f5 i"
    [all...]
  /cts/apps/CameraITS/tests/scene0/
test_metadata.py 49 check('props.has_key("android.info.supportedHardwareLevel")')
50 check('props["android.info.supportedHardwareLevel"] is not None')
51 check('props["android.info.supportedHardwareLevel"] in [0,1,2,3]')
58 check('md.has_key("android.sensor.frameDuration")')
59 check('md["android.sensor.frameDuration"] is not None')
60 check('md.has_key("android.sensor.rollingShutterSkew")')
61 check('md["android.sensor.rollingShutterSkew"] is not None')
63 check('md["android.sensor.frameDuration"] > '
67 check('props.has_key("android.sensor.info.timestampSource")')
68 check('props["android.sensor.info.timestampSource"] is not None'
121 def check(expr): function
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
PollingCheck.java 38 protected abstract boolean check(); method in class:PollingCheck
41 if (check()) {
53 if (check()) {
63 public static void check(CharSequence message, long timeout, Callable<Boolean> condition) method in class:PollingCheck
80 protected boolean check() { method
89 protected boolean check() { method
  /external/ltp/testcases/misc/math/nextafter/
nextafter01.c 31 * Check results from the above functions against expected values.
62 double check; /* tmp variable */ local
69 check = (answer + 1.0) / 2;
70 if ((check != answer) && ((float)check != 1.0)) {
81 if ((check != answer) && (check != 1.0)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/wizards/templates/
FmLayoutToActivityMethodTest.java 29 private void check(String s, String expected) throws TemplateModelException { method in class:FmLayoutToActivityMethodTest
36 check("foo", "FooActivity");
40 check("activity_foo", "FooActivity");
44 check("activity_", "MyActivity");
48 check("activ", "ActivActivity");
52 check("", "MyActivity");
  /art/test/004-UnsafeTest/src/
Main.java 21 private static void check(int actual, int expected, String msg) { method in class:Main
28 private static void check(long actual, long expected, String msg) { method in class:Main
35 private static void check(Object actual, Object expected, String msg) { method in class:Main
60 check(unsafe.arrayBaseOffset(boolean[].class), vmArrayBaseOffset(boolean[].class),
62 check(unsafe.arrayBaseOffset(byte[].class), vmArrayBaseOffset(byte[].class),
64 check(unsafe.arrayBaseOffset(char[].class), vmArrayBaseOffset(char[].class),
66 check(unsafe.arrayBaseOffset(double[].class), vmArrayBaseOffset(double[].class),
68 check(unsafe.arrayBaseOffset(float[].class), vmArrayBaseOffset(float[].class),
70 check(unsafe.arrayBaseOffset(int[].class), vmArrayBaseOffset(int[].class),
72 check(unsafe.arrayBaseOffset(long[].class), vmArrayBaseOffset(long[].class)
105 check(t.intVar, intValue, "Unsafe.putInt(Object, long, int)"); method
113 check(t.longVar, longValue, "Unsafe.putLong(Object, long, long)"); method
121 check(t.objectVar, objectValue, "Unsafe.putObject(Object, long, Object)"); method
210 check(tv.volatileIntVar, intValue, "Unsafe.putIntVolatile(Object, long, int)"); method
222 check(tv.volatileLongVar, longValue, "Unsafe.putLongVolatile(Object, long, long)"); method
234 check(tv.volatileObjectVar, objectValue, "Unsafe.putObjectVolatile(Object, long, Object)"); method
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.general/
p8.cpp 5 template<typename T> struct check;
6 template<size_t N> struct check<const char[N]> {}; struct
16 check<decltype(__func__)>();
  /external/deqp/scripts/opengl/
gen_func_init.py 32 def check(api, version): function in function:genFuncInit
38 check = check,
  /dalvik/dx/tests/073-dex-null-array-refs/
Blort.java 47 if (check()) {
55 if (check()) {
63 if (check()) {
70 public static boolean check() { method in class:Blort
  /external/libnl/tests/
util.h 1 #include <check.h>
  /external/ltp/testcases/kernel/fs/fs_bind/cloneNS/
child01 30 check "$disk2" dir1/a dir2/a
32 check dir1/b dir2/b
  /external/ltp/tools/pounder21/src/time_tests/
Makefile 23 bins = inconsistency-check
  /external/valgrind/drd/tests/
filter_stderr_solaris 52 my $check = join "|", keys %regex;
54 s/($check)(.*drd_pthread_intercepts.c)/$regex{$1}$2/g;
  /libcore/ojluni/src/main/java/java/security/cert/
CertPathChecker.java 34 * may check for and process a critical private extension of each certificate
45 * be passed to the {@link #check check} method (forward or reverse).
48 * {@code check} method. If {@code true}, certificates are
52 * unable to check certificates in the specified order
59 * when certificates are presented to the {@code check} method in the
68 * Performs the check(s) on the specified certificate using its internal
74 * not pass the check
76 void check(Certificate cert) throws CertPathValidatorException; method in interface:CertPathChecker
  /system/tools/hidl/test/
test.sh 29 function check() { function
66 check package="tests.errors.syntax@1.0" filename="errors/syntax.output"
68 check package="tests.errors.versioning@2.2" \
71 check package="tests.errors.versioning@3.3" \
  /prebuilts/go/darwin-x86/test/
nilptr3.go 43 _ = *intp // ERROR "removed nil check"
48 _ = *arrayp // ERROR "removed nil check"
52 _ = *array0p // ERROR "removed nil check"
53 _ = *array0p // ERROR "generated nil check"
55 _ = *intp // ERROR "generated nil check"
56 _ = *arrayp // ERROR "removed nil check"
57 _ = *structp // ERROR "generated nil check"
58 _ = *emptyp // ERROR "generated nil check"
59 _ = *arrayp // ERROR "generated nil check"
74 _ = *intp // ERROR "removed.* nil check"
    [all...]
  /prebuilts/go/linux-x86/test/
nilptr3.go 43 _ = *intp // ERROR "removed nil check"
48 _ = *arrayp // ERROR "removed nil check"
52 _ = *array0p // ERROR "removed nil check"
53 _ = *array0p // ERROR "generated nil check"
55 _ = *intp // ERROR "generated nil check"
56 _ = *arrayp // ERROR "removed nil check"
57 _ = *structp // ERROR "generated nil check"
58 _ = *emptyp // ERROR "generated nil check"
59 _ = *arrayp // ERROR "generated nil check"
74 _ = *intp // ERROR "removed.* nil check"
    [all...]
  /external/clang/test/Analysis/
temporaries.cpp 119 extern bool check(const Dtor &);
124 if (coin() && (coin() || coin() || check(Dtor()))) {
149 extern bool check(const NoReturnDtor &);
154 if (i == 5 && (i == 4 || check(NoReturnDtor()) || i == 5)) {
160 (i == 5 && (i == 4 || check(NoReturnDtor()) || i == 5)) ? 1 : 0;
167 (i == 5 && (i == 4 || check(NoReturnDtor()) || i == 5)) ? 1 : 0;
177 if (i == 5 && (i == 4 || i == 5 || check(NoReturnDtor())))
180 if (i == 5 && (i == 4 || i == 5 || check(NoReturnDtor())))
188 compute(i == 5 && (i == 4 || check(NoReturnDtor()))))) ||
195 compute(i == 5 && (i == 4 || check(NoReturnDtor()))))) |
    [all...]
  /art/test/022-interface/classes/
Main.class 
  /art/test/111-unresolvable-exception/src/
Main.java 20 check(false);
26 private static void check(boolean b) { method in class:Main
  /external/compiler-rt/test/BlocksRuntime/
nullblockisa.c 22 void check(void (^b)(void)) { function
39 check(^{ printf("%d\n", ++i); });

Completed in 818 milliseconds

1 2 3 4 56 7 8 91011>>