Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DLLVMContextImpl.h196 ArrayRef<Type *> TypeParams; member
200 : Name(N), TypeParams(TP), IntParams(IP) {} in KeyTy()
202 : Name(TT->getName()), TypeParams(TT->type_params()), in KeyTy()
206 return Name == that.Name && TypeParams == that.TypeParams &&
223 hash_combine_range(Key.TypeParams.begin(), Key.TypeParams.end()), in getHashValue()
H A DCore.cpp864 LLVMTypeRef *TypeParams, in LLVMTargetExtTypeInContext() argument
868 ArrayRef<Type *> TypeParamArray(unwrap(TypeParams), TypeParamCount); in LLVMTargetExtTypeInContext()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclPrinter.cpp1369 if (auto TypeParams = OID->getTypeParamListAsWritten()) { in VisitObjCInterfaceDecl() local
1370 PrintObjCTypeParams(TypeParams); in VisitObjCInterfaceDecl()
1379 if (auto TypeParams = OID->getTypeParamListAsWritten()) { in VisitObjCInterfaceDecl() local
1380 PrintObjCTypeParams(TypeParams); in VisitObjCInterfaceDecl()
1457 if (auto TypeParams = PID->getTypeParamList()) { in VisitObjCCategoryDecl() local
1458 PrintObjCTypeParams(TypeParams); in VisitObjCCategoryDecl()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp841 ObjCTypeParamList *TypeParams = Interface->getTypeParamList(); in checkPreObjCMessage() local
842 if (!TypeParams) in checkPreObjCMessage()
845 for (ObjCTypeParamDecl *TypeParam : *TypeParams) { in checkPreObjCMessage()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclObjC.cpp3120 ObjCTypeParamList *TypeParams = TypeParamLists[i]; in ActOnForwardClassDeclaration() local
3121 if (PrevIDecl && TypeParams) { in ActOnForwardClassDeclaration()
3125 *this, PrevTypeParams, TypeParams, in ActOnForwardClassDeclaration()
3127 TypeParams = nullptr; in ActOnForwardClassDeclaration()
3133 << TypeParams->getSourceRange(); in ActOnForwardClassDeclaration()
3137 TypeParams = nullptr; in ActOnForwardClassDeclaration()
3143 ClassName, TypeParams, PrevIDecl, in ActOnForwardClassDeclaration()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseObjc.cpp165 ObjCTypeParamList *TypeParams = nullptr; in ParseObjCAtClassDeclaration() local
167 TypeParams = parseObjCTypeParamList(); in ParseObjCAtClassDeclaration()
168 ClassTypeParams.push_back(TypeParams); in ParseObjCAtClassDeclaration()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp1514 llvm::Type *TypeParams[] = { in createForStaticInitFunction() local
1526 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); in createForStaticInitFunction()
1539 llvm::Type *TypeParams[] = { getIdentTyPointerTy(), // loc in createDispatchInitFunction() local
1548 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); in createDispatchInitFunction()
1560 llvm::Type *TypeParams[] = { in createDispatchFiniFunction() local
1565 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); in createDispatchFiniFunction()
1579 llvm::Type *TypeParams[] = { in createDispatchNextFunction() local
1588 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); in createDispatchNextFunction()
/openbsd-src/gnu/llvm/llvm/include/llvm-c/
H A DCore.h1580 LLVMTypeRef *TypeParams,
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2503 SmallVector<Type *, 4> TypeParams; in parseTypeTableBody() local
2507 TypeParams.push_back(T); in parseTypeTableBody()
2517 ResultTy = TargetExtType::get(Context, TypeName, TypeParams, IntParams); in parseTypeTableBody()
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp3129 SmallVector<Type *> TypeParams; in parseTargetExtType() local
3149 TypeParams.push_back(TypeParam); in parseTargetExtType()
3156 Result = TargetExtType::get(Context, TypeName, TypeParams, IntParams); in parseTargetExtType()