Searched defs:CHECK (Results 1 - 25 of 71) sorted by relevance

123

/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dcld_logging.h14 #undef CHECK macro
15 #define CHECK(expr) macro
/external/chromium_org/tools/traceline/traceline/
H A Dlogging.h11 #define CHECK(exp, ...) \ macro
13 printf("FAILED CHECK: %s\n %s:%d\n", #exp, __FILE__, __LINE__); \
/external/clang/test/Analysis/
H A Dbitwise-ops.c4 #define CHECK(expr) if (!(expr)) return; clang_analyzer_eval(expr) macro
8 CHECK(x); // expected-warning{{TRUE}}
9 CHECK(x & 1); // expected-warning{{TRUE}}
12 CHECK(1 - x); // expected-warning{{UNKNOWN}}
13 CHECK(x & y); // expected-warning{{UNKNOWN}}
H A Dtraversal-path-unification.c9 #define CHECK(x) ((x) & 1) macro
11 #define CHECK(x) (x) macro
16 if (CHECK(i))
27 // CHECK: --END FUNCTION--
28 // CHECK-NOT: --END FUNCTION--
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dutils.js6 var CHECK = requireNative('logging').CHECK; variable
/external/skia/tests/
H A DErrorTest.cpp13 #define CHECK(errcode) \ macro
29 CHECK(kNoError_SkError);
32 CHECK(kNoError_SkError);
36 CHECK(kNoError_SkError);
39 CHECK(kNoError_SkError);
43 CHECK(kInvalidArgument_SkError);
44 CHECK(kNoError_SkError);
51 CHECK(kInvalidArgument_SkError);
52 CHECK(kNoError_SkError);
57 CHECK(kInvalidArgument_SkErro
[all...]
/external/clang/test/CodeGenCXX/
H A Dbitfield-layout.cpp4 // 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__ macro
36 CHECK(c.a == 0);
37 CHECK(c.b == (unsigned long long)-1);
38 CHECK(c.c == 0);
40 // CHECK-LP64: ret i32 0
41 // CHECK-LP32: ret i32 0
H A Dempty-classes.cpp29 #define CHECK(x) if (!(x)) return __LINE__ macro
32 // CHECK: define i32 @_Z1fv()
37 CHECK(b1.a == 0xffffffff);
43 CHECK(c2.a == 0x12345678);
49 CHECK(d2.a == 0x87654321);
52 // CHECK: ret i32 0
/external/libffi/testsuite/libffi.call/
H A Dffitest.h10 #define CHECK(x) !(x) ? abort() : 0 macro
/external/libffi/testsuite/libffi.special/
H A Dffitestcxx.h18 #define CHECK(x) (!(x) ? abort() : (void)0) macro
/external/openfst/src/include/fst/
H A Dlog.h54 inline void CHECK(bool x) { assert(x); } function
56 #define CHECK_EQ(x, y) CHECK((x) == (y))
57 #define CHECK_LT(x, y) CHECK((x) < (y))
58 #define CHECK_GT(x, y) CHECK((x) > (y))
59 #define CHECK_LE(x, y) CHECK((x) <= (y))
60 #define CHECK_GE(x, y) CHECK((x) >= (y))
61 #define CHECK_NE(x, y) CHECK((x) != (y))
/external/chromium/sdch/open-vcdiff/src/
H A Dtesting.h34 // 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) macro
71 CHECK(!IsStarted());
83 CHECK(IsStarted());
119 CHECK(!IsStarted());
131 CHECK(IsStarted());
/external/chromium_org/sdch/open-vcdiff/src/
H A Dtesting.h34 // 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) macro
71 CHECK(!IsStarted());
83 CHECK(IsStarted());
119 CHECK(!IsStarted());
131 CHECK(IsStarted());
/external/open-vcdiff/src/
H A Dtesting.h34 // 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) macro
71 CHECK(!IsStarted());
83 CHECK(IsStarted());
119 CHECK(!IsStarted());
131 CHECK(IsStarted());
/external/valgrind/main/memcheck/tests/
H A Dunit_libcbase.c11 #define CHECK(x) \ macro
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_STRE
[all...]
/external/chromium_org/third_party/re2/util/
H A Dlogging.h28 #define CHECK(x) if(x){}else LogMessageFatal(__FILE__, __LINE__).stream() << "Check failed: " #x macro
29 #define CHECK_LT(x, y) CHECK((x) < (y))
30 #define CHECK_GT(x, y) CHECK((x) > (y))
31 #define CHECK_LE(x, y) CHECK((x) <= (y))
32 #define CHECK_GE(x, y) CHECK((x) >= (y))
33 #define CHECK_EQ(x, y) CHECK((x) == (y))
34 #define CHECK_NE(x, y) CHECK((x) != (y))
/external/chromium_org/third_party/skia/src/images/
H A Dbmpdecoderhelper.h20 #define CHECK(predicate) SkASSERT(predicate) macro
/external/chromium_org/v8/src/
H A Dchecks.h54 // The CHECK macro checks that the given condition is true; if not, it
56 #define CHECK(condition) do { \ macro
58 V8_Fatal(__FILE__, __LINE__, "CHECK(%s) failed", #condition); \
113 // Helper function used by the CHECK function when given string
145 // Helper function used by the CHECK function when given pointer
175 // Helper function used by the CHECK function when given floating
227 #define CHECK_GT(a, b) CHECK((a) > (b))
228 #define CHECK_GE(a, b) CHECK((a) >= (b))
229 #define CHECK_LT(a, b) CHECK((a) < (b))
230 #define CHECK_LE(a, b) CHECK((
[all...]
/external/regex-re2/util/
H A Dlogging.h23 #define CHECK(x) if(x){}else LogMessageFatal(__FILE__, __LINE__).stream() << "Check failed: " #x macro
24 #define CHECK_LT(x, y) CHECK((x) < (y))
25 #define CHECK_GT(x, y) CHECK((x) > (y))
26 #define CHECK_LE(x, y) CHECK((x) <= (y))
27 #define CHECK_GE(x, y) CHECK((x) >= (y))
28 #define CHECK_EQ(x, y) CHECK((x) == (y))
29 #define CHECK_NE(x, y) CHECK((x) != (y))
/external/skia/src/images/
H A Dbmpdecoderhelper.h20 #define CHECK(predicate) SkASSERT(predicate) macro
/external/v8/src/
H A Dchecks.h54 // The CHECK macro checks that the given condition is true; if not, it
56 #define CHECK(condition) do { \ macro
58 V8_Fatal(__FILE__, __LINE__, "CHECK(%s) failed", #condition); \
113 // Helper function used by the CHECK function when given string
145 // Helper function used by the CHECK function when given pointer
175 // Helper function used by the CHECK function when given floating
227 #define CHECK_GT(a, b) CHECK((a) > (b))
228 #define CHECK_GE(a, b) CHECK((a) >= (b))
229 #define CHECK_LT(a, b) CHECK((a) < (b))
230 #define CHECK_LE(a, b) CHECK((
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dsigned_settings_helper.cc35 CHECK(op_.get());
105 CHECK, enumerator in enum:chromeos::__anon2005::WhitelistOpContext::Type
124 case CHECK:
145 case CHECK:
349 WhitelistOpContext::CHECK,
410 CHECK(context);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_state_init.c221 #define CHECK( NM, FLAG, ADD ) \ macro
251 CHECK( always, GL_TRUE, 0 )
252 CHECK( always_add4, GL_TRUE, 4 )
253 CHECK( never, GL_FALSE, 0 )
254 CHECK( tex_any, ctx->Texture._EnabledUnits, 0 )
255 CHECK( tf, (ctx->Texture._EnabledUnits && !ctx->ATIFragmentShader._Enabled), 0 );
256 CHECK( pix_zero, !ctx->ATIFragmentShader._Enabled, 0 )
257 CHECK( texenv, (rmesa->state.envneeded & (1 << (atom->idx)) && !ctx->ATIFragmentShader._Enabled), 0 )
258 CHECK( afs_pass1, (ctx->ATIFragmentShader._Enabled && (ctx->ATIFragmentShader.Current->NumPasses > 1)), 0 )
259 CHECK( af
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_state_init.c188 #define CHECK( NM, FLAG, ADD ) \ macro
202 CHECK( always, GL_TRUE, 0 )
203 CHECK( always_add2, GL_TRUE, 2 )
204 CHECK( always_add4, GL_TRUE, 4 )
205 CHECK( tex0_mm, GL_TRUE, 3 )
206 CHECK( tex1_mm, GL_TRUE, 3 )
208 CHECK( tex2_mm, GL_TRUE, 3 )
209 CHECK( cube0_mm, (ctx->Texture.Unit[0]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE )
210 CHECK( cube1_mm, (ctx->Texture.Unit[1]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE )
211 CHECK( cube2_m
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dcompiler.h292 #ifdef CHECK
293 #undef CHECK macro

Completed in 2570 milliseconds

123