HomeSort by relevance Sort by last modified time
    Searched refs:Case (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /external/v8/src/compiler/
compiler-test-utils.h 14 // 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, Name
    [all...]
  /external/clang/lib/Frontend/
FrontendOptions.cpp 17 .Case("c", IK_C)
19 .Case("i", IK_PreprocessedC)
20 .Case("ii", IK_PreprocessedCXX)
21 .Case("cui", IK_PreprocessedCuda)
22 .Case("m", IK_ObjC)
23 .Case("mi", IK_PreprocessedObjC)
25 .Case("mii", IK_PreprocessedObjCXX)
28 .Case("cl", IK_OpenCL)
29 .Case("cu", IK_CUDA)
  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 88 template < unsigned N > StringSwitch & Case(const char (&S)[N],
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("cdecl", AT_cdecl
    [all...]
  /external/clang/lib/Driver/
Types.cpp 85 case TY_Asm:
86 case TY_C: case TY_PP_C:
87 case TY_CL:
88 case TY_CUDA: case TY_PP_CUDA:
89 case TY_ObjC: case TY_PP_ObjC: case TY_PP_ObjC_Alias:
90 case TY_CXX: case TY_PP_CXX
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NoReturnFunctionChecker.cpp 59 .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_rtn", true
    [all...]
GenericTaintChecker.cpp 207 .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("strchr", TaintPropagationRule(0, ReturnValueIndex)
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsABIInfo.cpp 74 .Case("mips1", MipsABIInfo::O32())
75 .Case("mips2", MipsABIInfo::O32())
76 .Case("mips32", MipsABIInfo::O32())
77 .Case("mips32r2", MipsABIInfo::O32())
78 .Case("mips32r3", MipsABIInfo::O32())
79 .Case("mips32r5", MipsABIInfo::O32())
80 .Case("mips32r6", MipsABIInfo::O32())
81 .Case("mips16", MipsABIInfo::O32())
82 .Case("mips3", MipsABIInfo::N64())
83 .Case("mips4", MipsABIInfo::N64()
    [all...]
  /external/llvm/include/llvm/ADT/
StringSwitch.h 32 /// .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) {
87 return Case(S0, Value).Case(S1, Value);
93 return Case(S0, Value).Case(S1, Value).Case(S2, Value)
    [all...]
  /external/llvm/lib/MC/
MCExpr.cpp 35 case MCExpr::Target:
37 case MCExpr::Constant:
41 case MCExpr::SymbolRef: {
58 case MCExpr::Unary: {
61 case MCUnaryExpr::LNot: OS << '!'; break;
62 case MCUnaryExpr::Minus: OS << '-'; break;
63 case MCUnaryExpr::Not: OS << '~'; break;
64 case MCUnaryExpr::Plus: OS << '+'; break;
70 case MCExpr::Binary: {
81 case MCBinaryExpr::Add
    [all...]
  /external/llvm/lib/Analysis/
LibCallSemantics.cpp 72 .Case("__gnat_eh_personality", EHPersonality::GNU_Ada)
73 .Case("__gxx_personality_v0", EHPersonality::GNU_CXX)
74 .Case("__gcc_personality_v0", EHPersonality::GNU_C)
75 .Case("__objc_personality_v0", EHPersonality::GNU_ObjC)
76 .Case("__except_handler3", EHPersonality::MSVC_X86SEH)
77 .Case("__except_handler4", EHPersonality::MSVC_X86SEH)
78 .Case("__C_specific_handler", EHPersonality::MSVC_Win64SEH)
79 .Case("__CxxFrameHandler3", EHPersonality::MSVC_CXX)
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGNUInfo.cpp 26 .Case("hexagonv4", V4)
27 .Case("hexagonv5", V5)
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCExpr.cpp 52 case VK_Sparc_None: closeParen = false; break;
53 case VK_Sparc_LO: OS << "%lo("; break;
54 case VK_Sparc_HI: OS << "%hi("; break;
55 case VK_Sparc_H44: OS << "%h44("; break;
56 case VK_Sparc_M44: OS << "%m44("; break;
57 case VK_Sparc_L44: OS << "%l44("; break;
58 case VK_Sparc_HH: OS << "%hh("; break;
59 case VK_Sparc_HM: OS << "%hm("; break;
61 case VK_Sparc_PC22: OS << "%hi("; break;
62 case VK_Sparc_PC10: OS << "%lo("; break
    [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 218 // translation unit. In either case, return false.
232 // to disable the optimization in this case.
282 // reading the function macro arguments. To ensure, in that case, that
536 // heap allocations in the common case.
665 // Emit the diagnostic at the macro name in case there is a missing ).
769 // Emit the diagnostic at the macro name in case there is a missing ).
    [all...]
  /external/llvm/tools/llvm-cov/
llvm-cov.cpp 55 .Case("convert-for-testing", convertForTestingMain)
56 .Case("gcov", gcovMain)
57 .Case("report", reportMain)
58 .Case("show", showMain)
  /external/llvm/lib/Support/
Triple.cpp 20 case UnknownArch: return "unknown";
22 case aarch64: return "aarch64";
23 case aarch64_be: return "aarch64_be";
24 case arm: return "arm";
25 case armeb: return "armeb";
26 case bpf: return "bpf";
27 case hexagon: return "hexagon";
28 case mips: return "mips";
29 case mipsel: return "mipsel";
30 case mips64: return "mips64"
    [all...]
Host.cpp 258 case 3:
260 case 4:
262 case 0: // Intel486 DX processors
263 case 1: // Intel486 DX processors
264 case 2: // Intel486 SX processors
265 case 3: // Intel487 processors, IntelDX2 OverDrive processors,
267 case 4: // Intel486 SL processor
268 case 5: // IntelSX2 processors
269 case 7: // Write-Back Enhanced IntelDX2 processors
270 case 8: // IntelDX4 OverDrive processors, IntelDX4 processor
    [all...]
  /external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/hpackjson/
Story.java 28 private List<Case> cases;
39 public List<Case> getCases() {
53 for (Case caze : cases) {
Case.java 27 * Representation of an individual case (set of headers and wire format).
31 public class Case implements Cloneable {
59 protected Case clone() throws CloneNotSupportedException {
60 Case result = new Case();
  /external/deqp/modules/gles2/stress/
es2sLongRunningTests.cpp 74 static const struct Case
80 Case (const char* const name_, const char* const desc_, int bufFact, const Probs& probs_ = Probs()) : name(name_), desc(desc_), redundantBufferFactor(bufFact), probs(probs_) {}
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
152 Case (const char* const name_, const char* const desc_, int numTextures_, const Probs& probs_ = Probs()) : name(name_), desc(desc_), numTextures(numTextures_), probs(probs_) {}
155 Case("always_reupload"
    [all...]
  /external/deqp/modules/gles3/stress/
es3sLongRunningTests.cpp 74 static const struct Case
80 Case (const char* const name_, const char* const desc_, int bufFact, const Probs& probs_ = Probs()) : name(name_), desc(desc_), redundantBufferFactor(bufFact), probs(probs_) {}
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
152 Case (const char* const name_, const char* const desc_, int numTextures_, const Probs& probs_ = Probs()) : name(name_), desc(desc_), numTextures(numTextures_), probs(probs_) {}
155 Case("always_reupload"
    [all...]
  /external/llvm/utils/TableGen/
CodeEmitterGen.cpp 42 std::string &Case, CodeGenTarget &Target);
66 std::string &Case, CodeGenTarget &Target) {
127 Case += " // op: " + VarName + "\n" +
129 Case += ", Fixups, STI";
130 Case += ");\n";
133 Case += " // op: " + VarName + "\n" +
135 Case += ", Fixups, STI";
136 Case += ");\n";
166 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) << " +
169 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) >> " +
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.cpp 52 case 0: {
72 case '\n':
73 case '\r':
101 case EOF: return tgtok::Eof;
102 case ':': return tgtok::colon;
103 case ';': return tgtok::semi;
104 case '.': return tgtok::period;
105 case ',': return tgtok::comma;
106 case '<': return tgtok::less;
107 case '>': return tgtok::greater
    [all...]
  /external/clang/lib/Basic/
Targets.cpp 268 case llvm::Triple::x86:
269 case llvm::Triple::x86_64:
311 case llvm::Triple::x86:
312 case llvm::Triple::x86_64:
315 case llvm::Triple::mips:
316 case llvm::Triple::mipsel:
317 case llvm::Triple::ppc:
318 case llvm::Triple::ppc64:
319 case llvm::Triple::ppc64le:
322 case llvm::Triple::arm
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
AnalyzerOptions.cpp 31 .Case("shallow", UMK_Shallow)
32 .Case("deep", UMK_Deep)
57 .Case("none", IPAK_None)
58 .Case("basic-inlining", IPAK_BasicInlining)
59 .Case("inlining", IPAK_Inlining)
60 .Case("dynamic", IPAK_DynamicDispatch)
61 .Case("dynamic-bifurcate", IPAK_DynamicDispatchBifurcate)
87 .Case("constructors", CIMK_Constructors)
88 .Case("destructors", CIMK_Destructors)
89 .Case("none", CIMK_None
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 577 .Case("debug_info", &InfoSection.Data)
578 .Case("debug_abbrev", &AbbrevSection)
579 .Case("debug_loc", &LocSection.Data)
580 .Case("debug_line", &LineSection.Data)
581 .Case("debug_aranges", &ARangeSection)
582 .Case("debug_frame", &DebugFrameSection)
583 .Case("debug_str", &StringSection)
584 .Case("debug_ranges", &RangeSection)
585 .Case("debug_pubnames", &PubNamesSection)
586 .Case("debug_pubtypes", &PubTypesSection
    [all...]

Completed in 1560 milliseconds

1 2 3 4 5 6