/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/clang/test/SemaTemplate/ |
instantiate-non-type-template-parameter.cpp | 8 void Case(const char (&S)[N], const int & Value) {
|
/external/llvm/utils/TableGen/ |
CodeEmitterGen.cpp | 82 std::string &Case, CodeGenTarget &Target) { 127 Case += " // op: " + VarName + "\n" + 130 Case += ", Fixups"; 131 Case += ");\n"; 134 Case += " // op: " + VarName + "\n" + 137 Case += ", Fixups"; 138 Case += ");\n"; 168 Case += " Value |= (op & " + utostr(opMask) + "U) << " + 171 Case += " Value |= (op & " + utostr(opMask) + "U) >> " + 174 Case += " Value |= op & " + utostr(opMask) + "U;\n" [all...] |
LLVMCConfigurationEmitter.cpp | 423 case OptionType::Alias: 425 case OptionType::PrefixList: 426 case OptionType::ParameterList: 428 case OptionType::Switch: 430 case OptionType::SwitchList: 432 case OptionType::Parameter: 433 case OptionType::Prefix: 441 case OptionType::Alias: 443 case OptionType::PrefixList: 444 case OptionType::ParameterList [all...] |
/frameworks/base/tools/aidl/ |
AST.cpp | 583 Case::Case() 588 Case::Case(const string& c) 594 Case::~Case() 599 Case::Write(FILE* to) 606 fprintf(to, "case %s:\n", s.c_str());
|
AST.h | 274 struct Case 279 Case(); 280 Case(const string& c); 281 virtual ~Case(); 288 vector<Case*> cases;
|
/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/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.h | 129 /// Case - A struct to record the Value for a switch case, and the 130 /// case's target basic block. 131 struct Case { 136 Case() : Low(0), High(0), BB(0) { } 137 Case(Constant* low, Constant* high, MachineBasicBlock* bb) : 155 typedef std::vector<Case> CaseVector; 169 /// LT, GE - If nonzero, we know the current case value must be less-than or 173 /// Range - A pair of iterators representing the range of case values to be 180 /// The comparison function for sorting the switch case values in the vector [all...] |
/external/clang/lib/CodeGen/ |
CGStmt.cpp | 73 case Stmt::NoStmtClass: 74 case Stmt::CXXCatchStmtClass: 75 case Stmt::SEHExceptStmtClass: 76 case Stmt::SEHFinallyStmtClass: 78 case Stmt::NullStmtClass: 79 case Stmt::CompoundStmtClass: 80 case Stmt::DeclStmtClass: 81 case Stmt::LabelStmtClass: 82 case Stmt::GotoStmtClass: 83 case Stmt::BreakStmtClass [all...] |
/external/clang/lib/Parse/ |
ParseStmt.cpp | 52 /// 'case' constant-expression ':' statement 89 // the token to end in a semicolon (in which case SemiError should be set), 95 case tok::at: // May be a @try or @throw statement 101 case tok::code_completion: 106 case tok::identifier: { 120 case Sema::NC_Keyword: 133 case Sema::NC_Error: 141 case Sema::NC_Unknown: 146 case Sema::NC_Type: 153 case Sema::NC_Expression [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
BugReporter.cpp | 95 case Stmt::ChooseExprClass: 96 case Stmt::BinaryConditionalOperatorClass: continue; 97 case Stmt::ConditionalOperatorClass: continue; 98 case Stmt::BinaryOperatorClass: { 243 case Stmt::ForStmtClass: 244 case Stmt::DoStmtClass: 245 case Stmt::WhileStmtClass: 267 case Stmt::BinaryOperatorClass: { 273 case Stmt::CompoundStmtClass: 274 case Stmt::StmtExprClass [all...] |
ExprEngine.cpp | 217 case CFGElement::Invalid: 219 case CFGElement::Statement: 222 case CFGElement::Initializer: 225 case CFGElement::AutomaticObjectDtor: 226 case CFGElement::BaseDtor: 227 case CFGElement::MemberDtor: 228 case CFGElement::TemporaryDtor: 374 case CFGElement::AutomaticObjectDtor: 377 case CFGElement::BaseDtor: 380 case CFGElement::MemberDtor [all...] |
/external/llvm/lib/Transforms/Utils/ |
SimplifyCFG.cpp | 149 // reality, we could transform this case, but since the condition will be 209 /// don't handle the true generality of domination here, just a special case 266 case Instruction::Load: 274 case Instruction::GetElementPtr: 280 case Instruction::Add: 281 case Instruction::Sub: 282 case Instruction::And: 283 case Instruction::Or: 284 case Instruction::Xor: 285 case Instruction::Shl [all...] |
/external/clang/lib/Sema/ |
SemaCodeComplete.cpp | 61 /// a single (declaration, index) mapping (the common case) but 176 case CodeCompletionContext::CCC_Expression: 177 case CodeCompletionContext::CCC_ObjCMessageReceiver: 178 case CodeCompletionContext::CCC_ParenthesizedExpression: 179 case CodeCompletionContext::CCC_Statement: 180 case CodeCompletionContext::CCC_Recovery: 579 case Type::Builtin: 581 case BuiltinType::Void: 584 case BuiltinType::NullPtr: 587 case BuiltinType::Overload [all...] |
TreeTransform.h | [all...] |