Lines Matching defs:Case
299 std::string Case = getInstructionCases(R, Target);
301 CaseMap[Case].push_back(std::move(InstName));
310 const std::string &Case = C.first;
318 OS << Case;
428 std::string Case;
429 Case += " switch (Mode) {\n";
430 Case += " default: llvm_unreachable(\"Unhandled Mode\");\n";
432 Case += " case " + itostr(Mode.first) + ": {\n";
435 Case +=
438 Case += getInstructionCaseForEncoding(R, It->first, It->second, Target,
441 Case += " break;\n";
442 Case += " }\n";
444 Case += " }\n";
445 return Case;
453 std::string Case;
454 raw_string_ostream SS(Case);
519 return ScratchResizeStr + Case;