Home
last modified time | relevance | path

Searched refs:TypeParams (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h197 ArrayRef<Type *> TypeParams;
201 : Name(N), TypeParams(TP), IntParams(IP) {}
203 : Name(TT->getName()), TypeParams(TT->type_params()),
207 return Name == that.Name && TypeParams == that.TypeParams &&
224 hash_combine_range(Key.TypeParams.begin(), Key.TypeParams.end()),
H A DCore.cpp963 LLVMTypeRef *TypeParams, in LLVMTargetExtTypeInContext() argument
967 ArrayRef<Type *> TypeParamArray(unwrap(TypeParams), TypeParamCount); in LLVMTargetExtTypeInContext()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp1465 if (auto TypeParams = OID->getTypeParamListAsWritten()) { in VisitObjCInterfaceDecl() local
1466 PrintObjCTypeParams(TypeParams); in VisitObjCInterfaceDecl()
1480 if (auto TypeParams = OID->getTypeParamListAsWritten()) { in VisitObjCInterfaceDecl() local
1481 PrintObjCTypeParams(TypeParams); in VisitObjCInterfaceDecl()
1558 if (auto TypeParams = PID->getTypeParamList()) { in VisitObjCCategoryDecl() local
1559 PrintObjCTypeParams(TypeParams); in VisitObjCCategoryDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp3120 ObjCTypeParamList *TypeParams = TypeParamLists[i]; in ActOnForwardClassDeclaration() local
3121 if (PrevIDecl && TypeParams) { in ActOnForwardClassDeclaration()
3125 SemaRef, PrevTypeParams, TypeParams, in ActOnForwardClassDeclaration()
3127 TypeParams = nullptr; in ActOnForwardClassDeclaration()
3133 << TypeParams->getSourceRange(); in ActOnForwardClassDeclaration()
3137 TypeParams = nullptr; in ActOnForwardClassDeclaration()
3142 Context, SemaRef.CurContext, AtClassLoc, ClassName, TypeParams, in ActOnForwardClassDeclaration()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp172 ObjCTypeParamList *TypeParams = nullptr; in ParseObjCAtClassDeclaration() local
174 TypeParams = parseObjCTypeParamList(); in ParseObjCAtClassDeclaration()
175 ClassTypeParams.push_back(TypeParams); in ParseObjCAtClassDeclaration()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h1752 LLVMTypeRef *TypeParams,
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2664 SmallVector<Type *, 4> TypeParams; in parseTypeTableBody() local
2668 TypeParams.push_back(T); in parseTypeTableBody()
2678 ResultTy = TargetExtType::get(Context, TypeName, TypeParams, IntParams); in parseTypeTableBody()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp3506 SmallVector<Type *> TypeParams; in parseTargetExtType() local
3526 TypeParams.push_back(TypeParam); in parseTargetExtType()
3533 Result = TargetExtType::get(Context, TypeName, TypeParams, IntParams); in parseTargetExtType()