Searched refs:Proto (Results 26 - 44 of 44) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DRecursiveASTVisitor.h2160 FunctionProtoTypeLoc Proto = TL.castAs<FunctionProtoTypeLoc>();
2168 for (unsigned I = 0, N = Proto.getNumParams(); I != N; ++I) {
2169 TRY_TO(TraverseDecl(Proto.getParam(I)));
2172 TRY_TO(TraverseTypeLoc(Proto.getReturnLoc()));
2175 auto *T = Proto.getTypePtr();
/freebsd-11.0-release/contrib/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp571 Record *Proto = Lists[0][n]; variable
589 // Copy Proto super-classes.
590 ArrayRef<Record *> Supers = Proto->getSuperClasses();
591 ArrayRef<SMRange> Ranges = Proto->getSuperClassRanges();
595 // Copy Proto fields.
596 for (unsigned i = 0, e = Proto->getValues().size(); i != e; ++i) {
597 RecordVal RV = Proto->getValues()[i];
637 // Everything else is copied from Proto.
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp529 std::string Proto; local
530 llvm::raw_string_ostream POut(Proto);
640 Proto = "auto " + Proto;
645 .getAsStringInternal(Proto, Policy);
647 AFT->getReturnType().getAsStringInternal(Proto, Policy);
649 Out << Proto; local
H A DStmtPrinter.cpp1997 const FunctionProtoType *Proto local
1999 Proto->printExceptionSpecification(OS, Policy);
2006 Proto->getReturnType().print(OS, Policy);
H A DASTContext.cpp1983 for (auto *Proto : OI->all_referenced_protocols()) {
1984 CollectInheritedProtocols(Proto, Protocols);
1997 for (auto *Proto : OC->protocols()) {
1998 CollectInheritedProtocols(Proto, Protocols);
2006 for (auto *Proto : OP->protocols())
2007 CollectInheritedProtocols(Proto, Protocols);
2288 const FunctionProtoType *Proto = cast<FunctionProtoType>(Orig); local
2290 Proto->getReturnType(), Proto->getParamTypes(),
2291 Proto
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp1572 if (FunctionProtoTypeLoc Proto =
1580 TLB, Proto, ThisContext, ThisTypeQuals,
1592 void Sema::SubstExceptionSpec(FunctionDecl *New, const FunctionProtoType *Proto, argument
1595 Proto->getExtProtoInfo().ExceptionSpec;
H A DSemaExprCXX.cpp1529 const FunctionProtoType *Proto = local
1531 VariadicCallType CallType = Proto->isVariadic() ? VariadicFunction
1537 if (GatherArgumentsForCall(PlacementLParen, OperatorNew, Proto, 1,
1848 const FunctionProtoType *Proto local
1853 for (unsigned I = 1, N = Proto->getNumParams(); I < N; ++I)
1854 ArgTypes.push_back(Proto->getParamType(I));
1857 EPI.Variadic = Proto->isVariadic();
4616 if (const FunctionProtoType *Proto = Result->getAs<FunctionProtoType>()) {
4617 switch (Proto->getRefQualifier()) {
H A DSemaLookup.cpp2559 const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
2560 for (const auto &Arg : Proto->param_types())
H A DSemaDecl.cpp11083 const FunctionProtoType *Proto = local
11085 FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(),
11086 Proto->getExtProtoInfo()));
/freebsd-11.0-release/contrib/llvm/lib/TableGen/
H A DTGParser.cpp2018 for (const auto &Proto : CurMultiClass->DefPrototypes)
2019 if (Proto->getNameInit() == CurRec->getNameInit())
2480 for (const auto &Proto : CurMultiClass->DefPrototypes)
2481 if (Proto->getNameInit() == CurRec->getNameInit())
H A DRecord.cpp1878 for (const auto &Proto : DefPrototypes)
1879 Proto->dump();
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h2448 const FunctionProtoType *Proto,
3901 const FunctionProtoType *Proto,
6988 void SubstExceptionSpec(FunctionDecl *New, const FunctionProtoType *Proto,
8265 const FunctionProtoType *Proto,
8291 const FunctionProtoType *Proto,
8974 const FunctionProtoType *Proto);
8978 const FunctionProtoType *Proto);
8979 bool CheckOtherCall(CallExpr *TheCall, const FunctionProtoType *Proto);
8982 const FunctionProtoType *Proto,
8985 void checkCall(NamedDecl *FDecl, const FunctionProtoType *Proto,
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp179 if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(*I)) {
180 if (!Proto->isThisDeclarationADefinition()) {
698 if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>((*DI))) {
699 if (!Proto->isThisDeclarationADefinition()) {
701 SourceLocation StartLoc = Proto->getLocStart();
2836 // Foo<Proto> *.
H A DRewriteModernObjC.cpp203 if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(*I)) {
204 if (!Proto->isThisDeclarationADefinition()) {
779 if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>((*DI))) {
780 if (!Proto->isThisDeclarationADefinition()) {
782 SourceLocation StartLoc = Proto->getLocStart();
3442 // Foo<Proto> *.
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp1830 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT))
1831 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) &&
1832 Proto->isNothrow(Ctx))
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenModule.cpp3579 auto *Proto = cast<ObjCProtocolDecl>(D); local
3580 if (Proto->isThisDeclarationADefinition())
3581 ObjCRuntime->GenerateProtocol(Proto);
H A DCGObjCMac.cpp983 const ObjCProtocolDecl *Proto,
2880 const ObjCProtocolDecl *Proto,
2882 for (const auto *P : Proto->protocols())
2884 for (const auto *PD : Proto->properties()) {
2877 PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*,16> &PropertySet, SmallVectorImpl<llvm::Constant *> &Properties, const Decl *Container, const ObjCProtocolDecl *Proto, const ObjCCommonTypesHelper &ObjCTypes) argument
H A DCGExpr.cpp1983 if (const FunctionProtoType *Proto =
1989 CGF.getContext().getFunctionNoProtoType(Proto->getReturnType());
/freebsd-11.0-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1423 std::string Proto = local
1426 nvTM->getManagedStrPool()->getManagedString(Proto.c_str())->c_str();

Completed in 586 milliseconds

12