Searched refs:Case (Results 1 - 25 of 108) sorted by relevance

12345

/external/chromium_org/v8/src/compiler/
H A Dcompiler-test-utils.h14 // The TARGET_TEST(Case, Name) macro works just like
15 // TEST(Case, Name), except that the test is disabled
18 #define TARGET_TEST(Case, Name) TEST(Case, Name)
20 #define TARGET_TEST(Case, Name) TEST(Case, DISABLED_##Name)
24 // The TARGET_TEST_F(Case, Name) macro works just like
25 // TEST_F(Case, Name), except that the test is disabled
28 #define TARGET_TEST_F(Case, Name) TEST_F(Case, Nam
[all...]
/external/clang/lib/Frontend/
H A DFrontendOptions.cpp17 .Case("c", IK_C)
19 .Case("i", IK_PreprocessedC)
20 .Case("ii", IK_PreprocessedCXX)
21 .Case("m", IK_ObjC)
22 .Case("mi", IK_PreprocessedObjC)
24 .Case("mii", IK_PreprocessedObjCXX)
27 .Case("cl", IK_OpenCL)
28 .Case("cu", IK_CUDA)
/external/clang/test/Index/
H A Drecursive-cxx-member-calls.cpp88 template < unsigned N > StringSwitch & Case(const char (&S)[N], function in class:llvm::StringSwitch
106 .Case("weak", AT_weak)
107 .Case("weakref", AT_weakref)
108 .Case("pure", AT_pure)
109 .Case("mode", AT_mode)
110 .Case("used", AT_used)
111 .Case("alias", AT_alias)
112 .Case("align", AT_aligned)
113 .Case("final", AT_final)
114 .Case("cdec
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DNoReturnFunctionChecker.cpp59 .Case("exit", true)
60 .Case("panic", true)
61 .Case("error", true)
62 .Case("Assert", true)
65 .Case("ziperr", true)
66 .Case("assfail", true)
67 .Case("db_error", true)
68 .Case("__assert", true)
71 .Case("_wassert", true)
72 .Case("__assert_rt
[all...]
H A DGenericTaintChecker.cpp207 .Case("atoi", TaintPropagationRule(0, ReturnValueIndex))
208 .Case("atol", TaintPropagationRule(0, ReturnValueIndex))
209 .Case("atoll", TaintPropagationRule(0, ReturnValueIndex))
210 .Case("getc", TaintPropagationRule(0, ReturnValueIndex))
211 .Case("fgetc", TaintPropagationRule(0, ReturnValueIndex))
212 .Case("getc_unlocked", TaintPropagationRule(0, ReturnValueIndex))
213 .Case("getw", TaintPropagationRule(0, ReturnValueIndex))
214 .Case("toupper", TaintPropagationRule(0, ReturnValueIndex))
215 .Case("tolower", TaintPropagationRule(0, ReturnValueIndex))
216 .Case("strch
[all...]
H A DExprInspectionChecker.cpp41 .Case("clang_analyzer_eval", &ExprInspectionChecker::analyzerEval)
42 .Case("clang_analyzer_checkInlined",
44 .Case("clang_analyzer_crash", &ExprInspectionChecker::analyzerCrash)
45 .Case("clang_analyzer_warnIfReached", &ExprInspectionChecker::analyzerWarnIfReached)
H A DCheckSecuritySyntaxOnly.cpp133 .Case("gets", &WalkAST::checkCall_gets)
134 .Case("getpw", &WalkAST::checkCall_getpw)
135 .Case("mktemp", &WalkAST::checkCall_mktemp)
136 .Case("mkstemp", &WalkAST::checkCall_mkstemp)
137 .Case("mkdtemp", &WalkAST::checkCall_mkstemp)
138 .Case("mkstemps", &WalkAST::checkCall_mkstemp)
141 .Case("drand48", &WalkAST::checkCall_rand)
142 .Case("erand48", &WalkAST::checkCall_rand)
143 .Case("jrand48", &WalkAST::checkCall_rand)
144 .Case("lrand4
[all...]
/external/clang/lib/Driver/
H A DTypes.cpp132 .Case("c", TY_C)
133 .Case("i", TY_PP_C)
134 .Case("m", TY_ObjC)
135 .Case("M", TY_ObjCXX)
136 .Case("h", TY_CHeader)
137 .Case("C", TY_CXX)
138 .Case("H", TY_CXXHeader)
139 .Case("f", TY_PP_Fortran)
140 .Case("F", TY_Fortran)
141 .Case("
[all...]
/external/llvm/lib/MC/
H A DMCExpr.cpp284 .Case("GOT", VK_GOT)
285 .Case("got", VK_GOT)
286 .Case("GOTOFF", VK_GOTOFF)
287 .Case("gotoff", VK_GOTOFF)
288 .Case("GOTPCREL", VK_GOTPCREL)
289 .Case("gotpcrel", VK_GOTPCREL)
290 .Case("GOT_PREL", VK_GOTPCREL)
291 .Case("got_prel", VK_GOTPCREL)
292 .Case("GOTTPOFF", VK_GOTTPOFF)
293 .Case("gottpof
[all...]
/external/chromium_org/tools/gn/
H A Dpattern_unittest.cc10 struct Case { struct in namespace:__anon16480
19 Case pattern_cases[] = {
55 const Case& c = pattern_cases[i];
/external/llvm/include/llvm/ADT/
H A DStringSwitch.h32 /// .Case("red", Red)
33 /// .Case("orange", Orange)
34 /// .Case("yellow", Yellow)
35 /// .Case("green", Green)
36 /// .Case("blue", Blue)
37 /// .Case("indigo", Indigo)
55 StringSwitch& Case(const char (&S)[N], const T& Value) { function in class:llvm::StringSwitch
87 return Case(S0, Value).Case(S1, Value);
93 return Case(S
[all...]
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCExpr.cpp93 .Case("lo", VK_Sparc_LO)
94 .Case("hi", VK_Sparc_HI)
95 .Case("h44", VK_Sparc_H44)
96 .Case("m44", VK_Sparc_M44)
97 .Case("l44", VK_Sparc_L44)
98 .Case("hh", VK_Sparc_HH)
99 .Case("hm", VK_Sparc_HM)
100 .Case("pc22", VK_Sparc_PC22)
101 .Case("pc10", VK_Sparc_PC10)
102 .Case("got2
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCUtil.cpp89 .Case("objc_autoreleasePoolPush", IC_AutoreleasepoolPush)
90 .Case("clang.arc.use", IC_IntrinsicUser)
102 .Case("objc_retain", IC_Retain)
103 .Case("objc_retainAutoreleasedReturnValue", IC_RetainRV)
104 .Case("objc_retainBlock", IC_RetainBlock)
105 .Case("objc_release", IC_Release)
106 .Case("objc_autorelease", IC_Autorelease)
107 .Case("objc_autoreleaseReturnValue", IC_AutoreleaseRV)
108 .Case("objc_autoreleasePoolPop", IC_AutoreleasepoolPop)
109 .Case("objc_retainedObjec
[all...]
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp860 .Case("address_sanitizer", LangOpts.Sanitize.Address)
861 .Case("attribute_analyzer_noreturn", true)
862 .Case("attribute_availability", true)
863 .Case("attribute_availability_with_message", true)
864 .Case("attribute_cf_returns_not_retained", true)
865 .Case("attribute_cf_returns_retained", true)
866 .Case("attribute_deprecated_with_message", true)
867 .Case("attribute_ext_vector_type", true)
868 .Case("attribute_ns_returns_not_retained", true)
869 .Case("attribute_ns_returns_retaine
[all...]
/external/llvm/lib/Support/
H A DHost.cpp558 .Case("604e", "604e")
559 .Case("604", "604")
560 .Case("7400", "7400")
561 .Case("7410", "7400")
562 .Case("7447", "7400")
563 .Case("7455", "7450")
564 .Case("G4", "g4")
565 .Case("POWER4", "970")
566 .Case("PPC970FX", "970")
567 .Case("PPC970M
[all...]
H A DTriple.cpp182 .Case("aarch64", aarch64)
183 .Case("aarch64_be", aarch64_be)
184 .Case("arm", arm)
185 .Case("armeb", armeb)
186 .Case("arm64", arm64)
187 .Case("arm64_be", arm64_be)
188 .Case("mips", mips)
189 .Case("mipsel", mipsel)
190 .Case("mips64", mips64)
191 .Case("mips64e
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DAnalyzerOptions.cpp28 .Case("shallow", UMK_Shallow)
29 .Case("deep", UMK_Deep)
53 .Case("none", IPAK_None)
54 .Case("basic-inlining", IPAK_BasicInlining)
55 .Case("inlining", IPAK_Inlining)
56 .Case("dynamic", IPAK_DynamicDispatch)
57 .Case("dynamic-bifurcate", IPAK_DynamicDispatchBifurcate)
83 .Case("constructors", CIMK_Constructors)
84 .Case("destructors", CIMK_Destructors)
85 .Case("non
[all...]
/external/deqp/modules/gles2/stress/
H A Des2sLongRunningTests.cpp74 static const struct Case struct
80 Case (const char* const name_, const char* const desc_, int bufFact, const Probs& probs_ = Probs()) : name(name_), desc(desc_), redundantBufferFactor(bufFact), probs(probs_) {} function in struct:deqp::gles2::Stress::Case
83 Case("always_reupload",
88 Case("always_reupload_bufferdata",
93 Case("always_delete",
98 Case("wasteful",
103 Case("separate_attribute_buffers_wasteful",
146 static const struct Case struct
152 Case (const char* const name_, const char* const desc_, int numTextures_, const Probs& probs_ = Probs()) : name(name_), desc(desc_), numTextures(numTextures_), probs(probs_) {} function in struct:deqp::gles2::Stress::Case
155 Case("always_reuploa
202 static const struct Case struct
209 Case (const char* const name_, const char* const desc_, const int calls, const int tris, const Probs& probs_ = Probs()) function in struct:deqp::gles2::Stress::Case
253 static const struct Case struct
258 Case (const char* const name_, const char* const desc_, const Probs& probs_ = Probs()) : name(name_), desc(desc_), probs(probs_) {} function in struct:deqp::gles2::Stress::Case
[all...]
/external/deqp/modules/gles3/stress/
H A Des3sLongRunningTests.cpp74 static const struct Case struct
80 Case (const char* const name_, const char* const desc_, int bufFact, const Probs& probs_ = Probs()) : name(name_), desc(desc_), redundantBufferFactor(bufFact), probs(probs_) {} function in struct:deqp::gles3::Stress::Case
83 Case("always_reupload",
88 Case("always_reupload_bufferdata",
93 Case("always_delete",
98 Case("wasteful",
103 Case("separate_attribute_buffers_wasteful",
146 static const struct Case struct
152 Case (const char* const name_, const char* const desc_, int numTextures_, const Probs& probs_ = Probs()) : name(name_), desc(desc_), numTextures(numTextures_), probs(probs_) {} function in struct:deqp::gles3::Stress::Case
155 Case("always_reuploa
202 static const struct Case struct
209 Case (const char* const name_, const char* const desc_, const int calls, const int tris, const Probs& probs_ = Probs()) function in struct:deqp::gles3::Stress::Case
253 static const struct Case struct
258 Case (const char* const name_, const char* const desc_, const Probs& probs_ = Probs()) : name(name_), desc(desc_), probs(probs_) {} function in struct:deqp::gles3::Stress::Case
[all...]
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp50 std::string &Case, CodeGenTarget &Target);
74 std::string &Case, CodeGenTarget &Target) {
135 Case += " // op: " + VarName + "\n" +
138 Case += ", Fixups, STI";
139 Case += ");\n";
142 Case += " // op: " + VarName + "\n" +
145 Case += ", Fixups, STI";
146 Case += ");\n";
176 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) << " +
179 Case
71 AddCodeToMergeInOperand(Record *R, BitsInit *BI, const std::string &VarName, unsigned &NumberedOp, std::set<unsigned> &NamedOpIndices, std::string &Case, CodeGenTarget &Target) argument
190 std::string Case; local
292 std::string Case = getInstructionCase(R, Target); local
307 const std::string &Case = IE->first; local
315 o << Case; local
[all...]
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A D__init__.py36 from Regexps import Opt, Rep, Bol, Eol, Eof, Case, NoCase namespace
/external/llvm/lib/TableGen/
H A DTGLexer.cpp267 .Case("int", tgtok::Int)
268 .Case("bit", tgtok::Bit)
269 .Case("bits", tgtok::Bits)
270 .Case("string", tgtok::String)
271 .Case("list", tgtok::List)
272 .Case("code", tgtok::Code)
273 .Case("dag", tgtok::Dag)
274 .Case("class", tgtok::Class)
275 .Case("def", tgtok::Def)
276 .Case("foreac
[all...]
/external/clang/lib/Basic/
H A DTargets.cpp720 .Case("generic", true)
721 .Case("440", true)
722 .Case("450", true)
723 .Case("601", true)
724 .Case("602", true)
725 .Case("603", true)
726 .Case("603e", true)
727 .Case("603ev", true)
728 .Case("604", true)
729 .Case("60
[all...]
H A DOpenMPKinds.cpp25 #define OPENMP_DIRECTIVE(Name) .Case(#Name, OMPD_##Name)
26 #define OPENMP_DIRECTIVE_EXT(Name, Str) .Case(Str, OMPD_##Name)
50 #define OPENMP_CLAUSE(Name, Class) .Case(#Name, OMPC_##Name)
75 #define OPENMP_DEFAULT_KIND(Name) .Case(#Name, OMPC_DEFAULT_##Name)
80 #define OPENMP_PROC_BIND_KIND(Name) .Case(#Name, OMPC_PROC_BIND_##Name)
85 #define OPENMP_SCHEDULE_KIND(Name) .Case(#Name, OMPC_SCHEDULE_##Name)
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp1791 .Case("v0", AArch64::Q0)
1792 .Case("v1", AArch64::Q1)
1793 .Case("v2", AArch64::Q2)
1794 .Case("v3", AArch64::Q3)
1795 .Case("v4", AArch64::Q4)
1796 .Case("v5", AArch64::Q5)
1797 .Case("v6", AArch64::Q6)
1798 .Case("v7", AArch64::Q7)
1799 .Case("v8", AArch64::Q8)
1800 .Case("v
[all...]

Completed in 8995 milliseconds

12345