| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | IntrinsicsHexagon.td | 19 list<LLVMType> param_types, 22 DefaultAttrsIntrinsic<ret_types, param_types, properties>; 27 list<LLVMType> param_types, 29 : DefaultAttrsIntrinsic<ret_types, param_types, properties>;
|
| H A D | IntrinsicsPowerPC.td | 214 list<LLVMType> param_types, 217 DefaultAttrsIntrinsic<ret_types, param_types, properties>; 221 list<LLVMType> param_types, 224 DefaultAttrsIntrinsic<ret_types, param_types, properties>;
|
| H A D | Intrinsics.td | 367 list<LLVMType> param_types = [], 375 list<LLVMType> ParamTypes = param_types; 388 list<LLVMType> param_types = [], 392 : Intrinsic<ret_types, param_types,
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | Mangle.cpp | 227 for (const auto &AT : Proto->param_types()) { in mangleName()
|
| H A D | Type.cpp | 4052 for (const auto &ai : FPT->param_types()) in computeCachedProperties() 4141 for (const auto &ai : FPT->param_types()) in computeTypeLinkageInfo()
|
| H A D | ASTDiagnostic.cpp | 95 for (QualType SugarPT : FPT->param_types()) { in desugarForDiagnostic()
|
| H A D | ASTContext.cpp | 3230 SmallVector<QualType, 16> Args(Proto->param_types().size()); in getFunctionTypeWithoutPtrSizes() 3232 Args[i] = removePtrSizeAddrSpace(Proto->param_types()[i]); in getFunctionTypeWithoutPtrSizes() 8373 for (const auto &I : FPT->param_types()) in getObjCEncodingForTypeImpl() 12687 auto P = getCommonTypes(Ctx, FX->param_types(), FY->param_types(), in getCommonNonSugarTypeNode()
|
| /openbsd-src/gnu/llvm/llvm/bindings/ocaml/debuginfo/ |
| H A D | llvm_debuginfo.ml | 272 param_types:Llvm.llmetadata array ->
|
| H A D | llvm_debuginfo.mli | 329 param_types:Llvm.llmetadata array ->
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 2356 std::vector<CompilerType> param_types; in ConstructDemangledNameFromDWARF() local 2366 has_template_params, param_types, param_decls, in ConstructDemangledNameFromDWARF() 2369 for (size_t i = 0; i < param_types.size(); i++) { in ConstructDemangledNameFromDWARF() 2372 sstr << param_types[i].GetTypeName(); in ConstructDemangledNameFromDWARF()
|
| /openbsd-src/gnu/llvm/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 854 for (const auto &I : FT->param_types()) { in VisitType()
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 549 for (const auto &I : fproto->param_types()) in RewriteBlocksInFunctionProtoType() 3702 for (auto &I : FTP->param_types()) { in convertFunctionTypeOfBlocks() 3769 for (auto &I : FTP->param_types()) { in SynthesizeBlockCall() 3965 for (const auto &I : FTP->param_types()) in PointerTypeTakesAnyBlockArguments() 3983 for (const auto &I : FTP->param_types()) { in PointerTypeTakesAnyObjCQualifiedType()
|
| H A D | RewriteModernObjC.cpp | 614 for (const auto &I : fproto->param_types()) in RewriteBlocksInFunctionProtoType() 4537 for (auto &I : FTP->param_types()) { in convertFunctionTypeOfBlocks() 4602 for (auto &I : FTP->param_types()) { in SynthesizeBlockCall() 4812 for (const auto &I : FTP->param_types()) in PointerTypeTakesAnyBlockArguments() 4830 for (const auto &I : FTP->param_types()) { in PointerTypeTakesAnyObjCQualifiedType()
|
| /openbsd-src/gnu/llvm/llvm/bindings/ocaml/llvm/ |
| H A D | llvm.ml | 487 external param_types : lltype -> lltype array = "llvm_param_types"
|
| H A D | llvm.mli | 662 (** [param_types fty] gets the parameter types of the function type [fty]. 664 val param_types : lltype -> lltype array val
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | Sema.cpp | 2052 for (const auto &ParamTy : FPTy->param_types()) in checkTypeSupport()
|
| H A D | SemaLookup.cpp | 3156 for (const auto &Arg : Proto->param_types()) in addAssociatedClassesAndNamespaces()
|
| H A D | SemaDecl.cpp | 4187 for (const auto &ParamType : OldProto->param_types()) { in MergeFunctionDecl() 10093 for (const auto &AI : FT->param_types()) { in ActOnFunctionDeclarator() 11934 for (QualType T : FPT->param_types()) in CheckFunctionDeclaration()
|
| H A D | SemaExpr.cpp | 6649 for (QualType ParamType : FT->param_types()) { in rewriteBuiltinFunctionDecl() 16545 for (const auto &I : Fn->param_types()) { in ActOnBlockArguments() 20816 for (const auto &AI : FT->param_types()) { in resolveDecl()
|
| H A D | SemaTemplate.cpp | 6270 for (const auto &A : T->param_types()) { in VisitFunctionProtoType()
|
| H A D | SemaDeclAttr.cpp | 9520 for (const auto &AI : FT->param_types()) { in DeclClonePragmaWeak()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 1446 for (const QualType &ParamType : FPT->param_types()) in CreateType() 4042 for (QualType ParamType : FPT->param_types()) in getOrCreateFunctionType()
|
| H A D | CodeGenModule.cpp | 6983 for (auto &Param : FnType->param_types()) in GeneralizeFunctionType()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | RecursiveASTVisitor.h | 1050 for (const auto &A : T->param_types()) {
|
| H A D | Type.h | 4386 ArrayRef<QualType> param_types() const {
|