Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp1062 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, in createRuntimeFunction() local
1065 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ true); in createRuntimeFunction()
1071 llvm::Type *TypeParams[] = {getIdentTyPointerTy()}; in createRuntimeFunction() local
1073 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); in createRuntimeFunction()
1080 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, in createRuntimeFunction() local
1084 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg*/ false); in createRuntimeFunction()
1091 llvm::Type *TypeParams[] = { in createRuntimeFunction() local
1095 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); in createRuntimeFunction()
1102 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, in createRuntimeFunction() local
1106 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); in createRuntimeFunction()
[all …]
DCGOpenMPRuntimeNVPTX.cpp275 llvm::Type *TypeParams[] = {CGM.Int32Ty, CGM.Int32Ty}; in createNVPTXRuntimeFunction() local
277 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); in createNVPTXRuntimeFunction()
/external/clang/lib/AST/
DDeclPrinter.cpp1132 if (auto TypeParams = OID->getTypeParamListAsWritten()) { in VisitObjCInterfaceDecl() local
1133 PrintObjCTypeParams(TypeParams); in VisitObjCInterfaceDecl()
1142 if (auto TypeParams = OID->getTypeParamListAsWritten()) { in VisitObjCInterfaceDecl() local
1143 PrintObjCTypeParams(TypeParams); in VisitObjCInterfaceDecl()
1211 if (auto TypeParams = PID->getTypeParamList()) { in VisitObjCCategoryDecl() local
1212 PrintObjCTypeParams(TypeParams); in VisitObjCCategoryDecl()
/external/clang/lib/Sema/
DSemaDeclObjC.cpp3007 ObjCTypeParamList *TypeParams = TypeParamLists[i]; in ActOnForwardClassDeclaration() local
3008 if (PrevIDecl && TypeParams) { in ActOnForwardClassDeclaration()
3012 *this, PrevTypeParams, TypeParams, in ActOnForwardClassDeclaration()
3014 TypeParams = nullptr; in ActOnForwardClassDeclaration()
3020 << TypeParams->getSourceRange(); in ActOnForwardClassDeclaration()
3024 TypeParams = nullptr; in ActOnForwardClassDeclaration()
3030 ClassName, TypeParams, PrevIDecl, in ActOnForwardClassDeclaration()
/external/clang/lib/Parse/
DParseObjc.cpp150 ObjCTypeParamList *TypeParams = nullptr; in ParseObjCAtClassDeclaration() local
152 TypeParams = parseObjCTypeParamList(); in ParseObjCAtClassDeclaration()
153 ClassTypeParams.push_back(TypeParams); in ParseObjCAtClassDeclaration()