HomeSort by relevance Sort by last modified time
    Searched defs:CHECK (Results 1 - 25 of 50) sorted by null

1 2

  /frameworks/base/include/media/stagefright/
MediaDebug.h 31 #define CHECK(x) \
  /external/libffi/testsuite/libffi.call/
ffitest.h 10 #define CHECK(x) !(x) ? abort() : 0
  /external/libffi/testsuite/libffi.special/
ffitestcxx.h 18 #define CHECK(x) (!(x) ? abort() : (void)0)
  /external/pcre/
pcre_stringpiece_unittest.cc 15 // CHECK dies with a fatal error if condition is not true. It is *not*
16 // controlled by NDEBUG, so the check will be executed regardless of
18 // CHECK(fp->Write(x) == 4)
19 #define CHECK(condition) do { \
21 fprintf(stderr, "%s:%d: Check failed: %s\n", \
45 CHECK(map.size() == 3);
48 CHECK(iter->second == 1);
50 CHECK(iter->second == 2);
52 CHECK(iter->second == 0);
54 CHECK(iter == map.end())
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
config.h 40 #define CHECK(condition) while (false && (condition)) std::cerr
  /frameworks/ex/variablespeed/jni/
macros.h 46 #define CHECK(x) { \
  /external/clang/test/CodeGenCXX/
bitfield-layout.cpp 1 // RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - -O3 | FileCheck -check-prefix LP64 %s
2 // RUN: %clang_cc1 %s -triple=i386-apple-darwin10 -emit-llvm -o - -O3 | FileCheck -check-prefix LP32 %s
4 // CHECK-LP64: %union.Test1 = type { i32, [4 x i8] }
10 // CHECK-LP64: %union.Test2 = type { i8 }
15 // CHECK-LP64: %union.Test3 = type { [2 x i8] }
21 #define CHECK(x) if (!(x)) return __LINE__
36 CHECK(c.a == 0);
37 CHECK(c.b == (unsigned long long)-1);
38 CHECK(c.c == 0);
40 // CHECK-LP64: ret i32
    [all...]
empty-classes.cpp 29 #define CHECK(x) if (!(x)) return __LINE__
32 // CHECK: define i32 @_Z1fv()
36 // Check that A::a is not overwritten by the Empty default constructor.
37 CHECK(b1.a == 0xffffffff);
42 // Check that A::a has the value set in the C::C copy constructor.
43 CHECK(c2.a == 0x12345678);
48 // Check that A::as has the value set in the D copy assignment operator.
49 CHECK(d2.a == 0x87654321);
52 // CHECK: ret i32 0
  /frameworks/base/include/media/stagefright/foundation/
ADebug.h 32 #define CHECK(condition) \
37 " CHECK(" #condition ") failed.")
  /packages/apps/Music/src/com/android/music/
ScanningProgress.java 32 private final static int CHECK = 0;
37 if (msg.what == CHECK) {
56 Message next = obtainMessage(CHECK);
77 Message msg = mHandler.obtainMessage(CHECK);
83 mHandler.removeMessages(CHECK);
  /system/media/wilhelm/tests/sandbox/
nativewindow.cpp 31 #define CHECK assert
32 #define CHECK_EQ(a,b) CHECK((a)==(b))
61 CHECK(control != NULL);
62 CHECK(control->isValid());
70 CHECK(surface != NULL);
  /external/chromium/sdch/open-vcdiff/src/
testing.h 34 // CHECK is used for assertions that verify the consistency of the test itself,
37 // It is better to use a preprocessor macro for CHECK
46 #define CHECK(CONDITION) assert(CONDITION)
71 CHECK(!IsStarted());
83 CHECK(IsStarted());
119 CHECK(!IsStarted());
131 CHECK(IsStarted());
  /external/valgrind/main/memcheck/tests/
unit_libcbase.c 11 #define CHECK(x) \
17 CHECK( ! VG_STREQ(NULL, NULL) ); // Nb: strcmp() considers these equal
18 CHECK( ! VG_STREQ(NULL, "ab") ); // Nb: strcmp() seg faults on this
19 CHECK( ! VG_STREQ("ab", NULL) ); // Nb: strcmp() seg faults on this
20 CHECK( ! VG_STREQ("", "a") );
21 CHECK( ! VG_STREQ("a", "") );
22 CHECK( ! VG_STREQ("abc", "abcd"));
23 CHECK( ! VG_STREQ("abcd", "abc") );
24 CHECK( ! VG_STREQ("Abcd", "abcd"));
25 CHECK( ! VG_STREQ("abcd", "Abcd"))
    [all...]
  /ndk/tests/device/test-gabi++/jni/
test_gabixx_rtti.cpp 45 #define CHECK(cond) \
63 CHECK(typeid(int) == typeid(i));
64 CHECK(typeid(int*) == typeid(pi));
65 CHECK(typeid(int) == typeid(*pi));
76 CHECK(typeid(derived) == typeid(Derived));
77 CHECK(typeid(pbase) == typeid(Base*));
78 CHECK(typeid(&derived) == typeid(Derived*));
87 CHECK(typeid(polyderived) == typeid(Poly_Derived));
88 CHECK(typeid(ppolybase) == typeid(Poly_Base*));
89 CHECK(typeid(polyderived) == typeid(*ppolybase))
    [all...]
  /ndk/tests/device/test-stlport-rtti/jni/
test_stlport_rtti.cpp 45 #define CHECK(cond) \
63 CHECK(typeid(int) == typeid(i));
64 CHECK(typeid(int*) == typeid(pi));
65 CHECK(typeid(int) == typeid(*pi));
76 CHECK(typeid(derived) == typeid(Derived));
77 CHECK(typeid(pbase) == typeid(Base*));
78 CHECK(typeid(&derived) == typeid(Derived*));
87 CHECK(typeid(polyderived) == typeid(Poly_Derived));
88 CHECK(typeid(ppolybase) == typeid(Poly_Base*));
89 CHECK(typeid(polyderived) == typeid(*ppolybase))
    [all...]
  /external/skia/src/images/
bmpdecoderhelper.h 27 #define CHECK(predicate) SkASSERT(predicate)
  /external/v8/src/
checks.h 54 // Used by the CHECK macro -- should not be called directly.
60 V8_Fatal(file, line, "CHECK(%s) failed", source);
64 // The CHECK macro checks that the given condition is true; if not, it
66 #define CHECK(condition) CheckHelper(__FILE__, __LINE__, #condition, condition)
119 // Helper function used by the CHECK function when given string
151 // Helper function used by the CHECK function when given pointer
181 // Helper function used by the CHECK function when given floating
233 #define CHECK_GT(a, b) CHECK((a) > (b))
234 #define CHECK_GE(a, b) CHECK((a) >= (b))
235 #define CHECK_LT(a, b) CHECK((a) < (b)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_helper.cc 35 CHECK(op_.get());
105 CHECK,
124 case CHECK:
145 case CHECK:
349 WhitelistOpContext::CHECK,
410 CHECK(context);
  /external/clang/test/Sema/
compare.c 295 #define CHECK(x) (x >= X)
297 if (CHECK(v)) // no-warning
306 #undef CHECK
  /external/icu4c/test/intltest/
incaltst.cpp 19 #define CHECK(status, msg) \
132 CHECK(status, "creating '" + UnicodeString(locs[j]) + "' calendar");
219 CHECK(status, "err during quasiGregorianTest()");
238 CHECK(status, UnicodeString("Creating de_CH calendar"));
239 // Sanity check the calendar
247 // end sanity check
290 CHECK(status, UnicodeString("Creating th_TH@calendar=buddhist calendar"));
292 // Sanity check the calendar
300 // end sanity check
341 CHECK(status, UnicodeString("Creating en_US@calendar=roc calendar"))
    [all...]
  /external/mesa3d/src/mesa/main/
compiler.h 313 #ifdef CHECK
314 #undef CHECK
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 30 DICTID, /* i: waiting for dictionary check value */
33 TYPEDO, /* i: same, but skip check to exit inflate on new block */
45 CHECK, /* i: waiting for 32-bit check value */
47 DONE, /* finished check, done -- remain here until reset */
65 TYPE -> STORED or TABLE or LEN or CHECK
73 CHECK -> LENGTH -> DONE
84 unsigned long check; /* protected copy of check value */ member in struct:inflate_state
  /external/stlport/test/unit/
num_put_get_test.cpp 622 #define CHECK(type, val, base, expected) \
629 CHECK(short, 0, oct, "0")
630 CHECK(short, 1, oct, "1")
631 CHECK(short, 12345, oct, "30071")
633 CHECK(short, -1, oct, "177777")
634 CHECK(short, -12345, oct, "147707")
637 CHECK(unsigned short, 0, oct, "0")
638 CHECK(unsigned short, 12345, oct, "30071")
640 CHECK(int, 0, oct, "0")
641 CHECK(int, 12345678, oct, "57060516"
    [all...]
  /external/valgrind/tsan/
ts_util.h 39 # define CHECK tl_assert
43 # define CHECK(x) do { if (!(x)) { \
50 # define CHECK(x) do { if (!(x)) { \
54 # define CHECK assert
235 #define CHECK_GT(X, Y) CHECK((X) > (Y))
236 #define CHECK_LT(X, Y) CHECK((X) < (Y))
237 #define CHECK_GE(X, Y) CHECK((X) >= (Y))
238 #define CHECK_LE(X, Y) CHECK((X) <= (Y))
239 #define CHECK_NE(X, Y) CHECK((X) != (Y))
240 #define CHECK_EQ(X, Y) CHECK((X) == (Y)
    [all...]
  /external/valgrind/unittest/
thread_wrappers.h 57 # define CHECK(x) do { if (!(x)) { \
62 # define CHECK assert
109 CHECK(q_.empty());
128 CHECK(ok);
178 CHECK(n_params == 2);
196 CHECK(sizeof(P1) <= sizeof(void*));
207 CHECK(sizeof(P1) <= sizeof(void*));
208 CHECK(sizeof(P2) <= sizeof(void*));

Completed in 3695 milliseconds

1 2