/external/strace/tests/ |
H A D | signal2name.c | 4 #define CASE(x) case x: return #x macro 10 CASE(SIGALRM); 11 CASE(SIGBUS); 12 CASE(SIGCHLD); 13 CASE(SIGCONT); 14 CASE(SIGFPE); 15 CASE(SIGHUP); 16 CASE(SIGILL); 17 CASE(SIGINT); 18 CASE(SIGI [all...] |
H A D | errno2name.c | 31 #define CASE(x) case x: return #x macro 39 CASE(E2BIG); 42 CASE(EACCES); 45 CASE(EADDRINUSE); 48 CASE(EADDRNOTAVAIL); 51 CASE(EADV); 54 CASE(EAFNOSUPPORT); 57 CASE(EAGAIN); 60 CASE(EALREADY); 63 CASE(EBADCOOKI [all...] |
H A D | waitid.c | 90 #define CASE(x) case x: return #x macro 97 CASE(CLD_EXITED); 100 CASE(CLD_KILLED); 103 CASE(CLD_DUMPED); 106 CASE(CLD_TRAPPED); 109 CASE(CLD_STOPPED); 112 CASE(CLD_CONTINUED);
|
/external/strace/tests-m32/ |
H A D | signal2name.c | 4 #define CASE(x) case x: return #x macro 10 CASE(SIGALRM); 11 CASE(SIGBUS); 12 CASE(SIGCHLD); 13 CASE(SIGCONT); 14 CASE(SIGFPE); 15 CASE(SIGHUP); 16 CASE(SIGILL); 17 CASE(SIGINT); 18 CASE(SIGI [all...] |
H A D | errno2name.c | 31 #define CASE(x) case x: return #x macro 39 CASE(E2BIG); 42 CASE(EACCES); 45 CASE(EADDRINUSE); 48 CASE(EADDRNOTAVAIL); 51 CASE(EADV); 54 CASE(EAFNOSUPPORT); 57 CASE(EAGAIN); 60 CASE(EALREADY); 63 CASE(EBADCOOKI [all...] |
/external/strace/tests-mx32/ |
H A D | signal2name.c | 4 #define CASE(x) case x: return #x macro 10 CASE(SIGALRM); 11 CASE(SIGBUS); 12 CASE(SIGCHLD); 13 CASE(SIGCONT); 14 CASE(SIGFPE); 15 CASE(SIGHUP); 16 CASE(SIGILL); 17 CASE(SIGINT); 18 CASE(SIGI [all...] |
H A D | errno2name.c | 31 #define CASE(x) case x: return #x macro 39 CASE(E2BIG); 42 CASE(EACCES); 45 CASE(EADDRINUSE); 48 CASE(EADDRNOTAVAIL); 51 CASE(EADV); 54 CASE(EAFNOSUPPORT); 57 CASE(EAGAIN); 60 CASE(EALREADY); 63 CASE(EBADCOOKI [all...] |
/external/icu/icu4c/source/test/intltest/ |
H A D | ittrans.cpp | 30 #define CASE(id,test) case id: \ macro 43 CASE(0, TransliteratorTest); 44 CASE(1, TransliteratorAPITest); 45 CASE(2, CompoundTransliteratorTest); 46 CASE(3, TransliteratorRoundTripTest); 47 CASE(4, JamoTest); 48 CASE(5, TransliteratorErrorTest); 49 CASE(6, ReplaceableTest); 51 CASE(7, UnicodeFilterLogicTest);
|
H A D | pptest.cpp | 22 #define CASE(id,test) case id: name = #test; if (exec) { logln(#test "---"); logln((UnicodeString)""); test(); } break; macro 28 CASE(0, TestParsePosition) 29 CASE(1, TestFieldPosition) 30 CASE(2, TestFieldPosition_example) 31 CASE(3, Test4109023)
|
H A D | jamotest.cpp | 85 static const char* CASE[] = { local 134 enum { CASE_length = UPRV_LENGTHOF(CASE) }; 138 UnicodeString jamo = nameToJamo(CASE[i+1]); 139 if (CASE[i+2] == NULL) { 140 expect(*latinJamo, CASE[i], jamo, *jamoLatin); 143 expect(*latinJamo, CASE[i], jamo); 144 expect(*jamoLatin, jamo, CASE[i+2]);
|
/external/deqp/modules/egl/ |
H A D | teglColorClearTests.cpp | 82 #define CASE(NAME, DESC, BITS, NUMCFG) { NAME, DESC, BITS, renderable<BITS>, NUMCFG } macro 86 CASE("gles1", "Color clears using GLES1", EGL_OPENGL_ES_BIT, 1), 87 CASE("gles2", "Color clears using GLES2", EGL_OPENGL_ES2_BIT, 1), 88 CASE("gles3", "Color clears using GLES3", EGL_OPENGL_ES3_BIT, 1), 89 CASE("vg", "Color clears using OpenVG", EGL_OPENVG_BIT, 1) 94 CASE("gles1", "Color clears using multiple GLES1 contexts to shared surface", EGL_OPENGL_ES_BIT, 3), 95 CASE("gles2", "Color clears using multiple GLES2 contexts to shared surface", EGL_OPENGL_ES2_BIT, 3), 96 CASE("gles3", "Color clears using multiple GLES3 contexts to shared surface", EGL_OPENGL_ES3_BIT, 3), 97 CASE("vg", "Color clears using multiple OpenVG contexts to shared surface", EGL_OPENVG_BIT, 3), 98 CASE("gles1_gles 106 #undef CASE macro [all...] |
/external/v8/src/interpreter/ |
H A D | bytecodes.cc | 63 #define CASE(Name, ...) \ macro 66 BYTECODE_LIST(CASE) 67 #undef CASE macro 142 #define CASE(Name, ...) case Bytecode::k##Name: macro 143 DEBUG_BREAK_BYTECODE_LIST(CASE); 144 #undef CASE macro 155 #define CASE(Name, _) \ macro 158 REGISTER_OPERAND_TYPE_LIST(CASE) 159 #undef CASE macro 160 #define CASE(Nam macro 164 #undef CASE macro 185 #define CASE macro 189 #undef CASE macro 190 #define CASE macro 195 #undef CASE macro 203 #define CASE macro 207 #undef CASE macro 208 #define CASE macro 213 #undef CASE macro 264 #define CASE macro 268 #undef CASE macro [all...] |
H A D | bytecode-operands.cc | 32 #define CASE(Name, _) \ macro 35 OPERAND_TYPE_LIST(CASE) 36 #undef CASE macro 44 #define CASE(Name, _) \ macro 47 OPERAND_SCALE_LIST(CASE) 48 #undef CASE macro
|
/external/skia/src/opts/ |
H A D | SkXfermode_opts.h | 272 #define CASE(Xfermode) \ macro 274 CASE(Clear); 275 CASE(Src); 276 CASE(Dst); 277 CASE(SrcOver); 278 CASE(DstOver); 279 CASE(SrcIn); 280 CASE(DstIn); 281 CASE(SrcOut); 282 CASE(DstOu 296 #undef CASE macro 298 #define CASE macro 303 #undef CASE macro [all...] |
/external/skia/src/core/ |
H A D | SkMiniRecorder.cpp | 105 #define CASE(Type) \ macro 117 CASE(DrawPath); 118 CASE(DrawRect); 119 CASE(DrawTextBlob); 123 #undef CASE macro 127 #define CASE(Type) \ macro 137 CASE(DrawPath); 138 CASE(DrawRect); 139 CASE(DrawTextBlob); 142 #undef CASE macro [all...] |
H A D | SkRecord.h | 164 #define CASE(T) case SkRecords::T##_Type: return f(*(const SkRecords::T*)this->ptr()); macro 165 switch(this->type()) { SK_RECORD_TYPES(CASE) } 166 #undef CASE macro 175 #define CASE(T) case SkRecords::T##_Type: return f((SkRecords::T*)this->ptr()); macro 176 switch(this->type()) { SK_RECORD_TYPES(CASE) } 177 #undef CASE macro
|
/external/libxml2/os400/ |
H A D | xmlcatalog.cmd | 14 CASE(*MIXED) EXPR(*YES) MIN(1) SPCVAL((*NEW '')) + 28 CASE(*MIXED) EXPR(*YES) DFT(*STDOUT) + 59 CASE(*MIXED) MAX(64) EXPR(*YES) + 81 CASE(*MIXED) PROMPT('Original reference/file name') 83 CASE(*MIXED) PROMPT('Replacement entity URI') 88 CASE(*MIXED) PROMPT('SGML catalog file name') 90 CASE(*MIXED) PROMPT('SGML definition') 95 CASE(*MIXED) EXPR(*YES) MAX(150) + 101 CASE(*MIXED) EXPR(*YES) MAX(150) DFT(*DEFAULT) +
|
H A D | xmllint.cmd | 14 CASE(*MIXED) EXPR(*YES) MIN(1) + 21 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) + 32 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) + 48 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) + 55 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) + 60 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) + 67 CASE(*MIXED) EXPR(*YES) MAX(64) + 85 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) +
|
/external/v8/src/ |
H A D | utils.h | 1353 #define CASE(n) \ 1364 CASE(2); 1365 CASE(3); 1366 CASE(4); 1367 CASE(5); 1368 CASE(6); 1369 CASE(7); 1370 CASE(8); 1371 CASE(9); 1372 CASE(1 [all...] |
/external/v8/src/builtins/ |
H A D | builtins.cc | 196 #define CASE(Name, ...) \ macro 199 BUILTIN_LIST_ALL(CASE) 200 #undef CASE macro 212 #define CASE(Name, ...) \ macro 215 BUILTIN_LIST_C(CASE) 216 #undef CASE macro 227 #define CASE(Name, ...) \ macro 233 BUILTIN_LIST_CPP(CASE) 235 #undef CASE macro 246 #define CASE(Nam macro 254 #undef CASE macro 265 #define CASE macro 269 #undef CASE macro [all...] |
/external/clang/lib/Basic/ |
H A D | IdentifierTable.cpp | 263 #define CASE(LEN, FIRST, THIRD, NAME) \ macro 272 CASE( 2, 'i', '\0', if); 273 CASE( 4, 'e', 'i', elif); 274 CASE( 4, 'e', 's', else); 275 CASE( 4, 'l', 'n', line); 276 CASE( 4, 's', 'c', sccs); 277 CASE( 5, 'e', 'd', endif); 278 CASE( 5, 'e', 'r', error); 279 CASE( 5, 'i', 'e', ident); 280 CASE( 301 #undef CASE macro [all...] |
/external/clang/INPUTS/ |
H A D | cfg-big-switch.c | 1 #define EXPAND_2_CASES(i, x, y) CASE(i, x, y); CASE(i + 1, x, y); 20 #define CASE(i, x, y) \ macro
|
/external/v8/src/compiler/ppc/ |
H A D | instruction-scheduler-ppc.cc | 136 #define CASE(Name) case k##Name: macro 137 COMMON_ARCH_OPCODE_LIST(CASE) 138 #undef CASE macro
|
/external/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFUnitIndex.cpp | 105 #define CASE(DS) \ macro 109 CASE(INFO); 110 CASE(TYPES); 111 CASE(ABBREV); 112 CASE(LINE); 113 CASE(LOC); 114 CASE(STR_OFFSETS); 115 CASE(MACINFO); 116 CASE(MACRO);
|
/external/ltp/testcases/kernel/connectors/pec/ |
H A D | run_pec_test | 101 for CASE in "${EVENT_TEST_CASES[@]}" ; do 102 run_case $i $CASE
|