/external/clang/lib/AST/ |
MicrosoftMangle.cpp | 748 const FunctionProtoType *Proto = cast<FunctionProtoType>(T); 753 mangleQualifiers(Qualifiers::fromCVRMask(Proto->getTypeQuals()), false); 762 mangleType(Proto->getResultType()); 767 if (Proto->getNumArgs() == 0 && !Proto->isVariadic()) { 778 for (FunctionProtoType::arg_type_iterator Arg = Proto->arg_type_begin(), 779 ArgEnd = Proto->arg_type_end(); 784 if (Proto->isVariadic()) 790 mangleThrowSpecification(Proto); [all...] |
DeclObjC.cpp | 195 ObjCProtocolDecl *Proto = (*p); 196 if (C.ProtocolCompatibleWithProtocol(ProtoInExtension, Proto)) { [all...] |
DeclPrinter.cpp | 376 std::string Proto = D->getNameInfo().getAsString(); 380 Proto = '(' + Proto + ')'; 390 Proto += "("; 392 llvm::raw_string_ostream POut(Proto); 406 Proto += ", "; 407 Proto += D->getParamDecl(i)->getNameAsString(); 411 Proto += ")"; 416 Proto += " const"; 418 Proto += " volatile" [all...] |
ItaniumMangle.cpp | [all...] |
Expr.cpp | 417 std::string Proto = FD->getQualifiedNameAsString(Policy); 424 Proto += "("; 426 llvm::raw_string_ostream POut(Proto); 439 Proto += ")"; 444 Proto += " const"; 446 Proto += " volatile"; 450 AFT->getResultType().getAsStringInternal(Proto, Policy); 452 Out << Proto; [all...] |
ASTContext.cpp | 5617 const FunctionProtoType *proto = lproto ? lproto : rproto; local [all...] |
/external/llvm/examples/Kaleidoscope/Chapter2/ |
toy.cpp | 130 PrototypeAST *Proto; 133 FunctionAST(PrototypeAST *proto, ExprAST *body) 134 : Proto(proto), Body(body) {} 308 PrototypeAST *Proto = ParsePrototype(); 309 if (Proto == 0) return 0; 312 return new FunctionAST(Proto, E); 319 // Make an anonymous proto. 320 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 321 return new FunctionAST(Proto, E) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter3/ |
toy.cpp | 141 PrototypeAST *Proto; 144 FunctionAST(PrototypeAST *proto, ExprAST *body) 145 : Proto(proto), Body(body) {} 320 PrototypeAST *Proto = ParsePrototype(); 321 if (Proto == 0) return 0; 324 return new FunctionAST(Proto, E); 331 // Make an anonymous proto. 332 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 333 return new FunctionAST(Proto, E) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 148 PrototypeAST *Proto; 151 FunctionAST(PrototypeAST *proto, ExprAST *body) 152 : Proto(proto), Body(body) {} 327 PrototypeAST *Proto = ParsePrototype(); 328 if (Proto == 0) return 0; 331 return new FunctionAST(Proto, E); 338 // Make an anonymous proto. 339 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 340 return new FunctionAST(Proto, E) [all...] |
/external/llvm/utils/TableGen/ |
CodeGenRegisters.cpp | 191 Record *Proto = Lists[0][n]; 209 // Copy Proto super-classes. 210 for (unsigned i = 0, e = Proto->getSuperClasses().size(); i != e; ++i) 211 NewReg->addSuperClass(Proto->getSuperClasses()[i]); 213 // Copy Proto fields. 214 for (unsigned i = 0, e = Proto->getValues().size(); i != e; ++i) { 215 RecordVal RV = Proto->getValues()[i]; 245 // Everything else is copied from Proto.
|
NeonEmitter.cpp | 468 static bool UseMacro(const std::string &proto) { 472 if (proto.find('i') != std::string::npos) 477 if (proto.find('p') != std::string::npos || 478 proto.find('c') != std::string::npos) 487 static bool MacroArgUsedDirectly(const std::string &proto, unsigned i) { 488 return (proto[i] == 'i' || proto[i] == 'p' || proto[i] == 'c'); 492 static std::string GenArgs(const std::string &proto, StringRef typestr) { 493 bool define = UseMacro(proto); [all...] |
/external/llvm/examples/Kaleidoscope/Chapter5/ |
toy.cpp | 177 PrototypeAST *Proto; 180 FunctionAST(PrototypeAST *proto, ExprAST *body) 181 : Proto(proto), Body(body) {} 428 PrototypeAST *Proto = ParsePrototype(); 429 if (Proto == 0) return 0; 432 return new FunctionAST(Proto, E); 439 // Make an anonymous proto. 440 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 441 return new FunctionAST(Proto, E) [all...] |
/external/clang/lib/CodeGen/ |
CGException.cpp | 454 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>(); 455 if (Proto == 0) 458 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); 460 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) { 465 unsigned NumExceptions = Proto->getNumExceptions(); 469 QualType Ty = Proto->getExceptionType(I); 485 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>(); 486 if (Proto == 0) 489 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); 491 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter6/ |
toy.cpp | 205 PrototypeAST *Proto; 208 FunctionAST(PrototypeAST *proto, ExprAST *body) 209 : Proto(proto), Body(body) {} 513 PrototypeAST *Proto = ParsePrototype(); 514 if (Proto == 0) return 0; 517 return new FunctionAST(Proto, E); 524 // Make an anonymous proto. 525 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 526 return new FunctionAST(Proto, E) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter7/ |
toy.cpp | 223 PrototypeAST *Proto; 226 FunctionAST(PrototypeAST *proto, ExprAST *body) 227 : Proto(proto), Body(body) {} 578 PrototypeAST *Proto = ParsePrototype(); 579 if (Proto == 0) return 0; 582 return new FunctionAST(Proto, E); 589 // Make an anonymous proto. 590 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 591 return new FunctionAST(Proto, E) [all...] |
/external/clang/lib/Sema/ |
SemaTemplateDeduction.cpp | [all...] |
SemaTemplateInstantiateDecl.cpp | [all...] |
SemaExprCXX.cpp | [all...] |
SemaLookup.cpp | [all...] |
SemaCodeComplete.cpp | [all...] |
SemaDeclCXX.cpp | 120 const FunctionProtoType *Proto 123 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); 153 FunctionProtoType::NoexceptResult NR = Proto->getNoexceptSpec(*Context); 174 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(), 175 EEnd = Proto->exception_end(); [all...] |
SemaExpr.cpp | 196 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { 197 unsigned NumArgsInProto = Proto->getNumArgs(); [all...] |
SemaOverload.cpp | 9104 const FunctionProtoType *proto = fnType->castAs<FunctionProtoType>(); local [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngine.cpp | [all...] |