Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp525 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, in createRuntimeFunction() local
528 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ true); in createRuntimeFunction()
534 llvm::Type *TypeParams[] = {getIdentTyPointerTy()}; in createRuntimeFunction() local
536 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); in createRuntimeFunction()
543 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, in createRuntimeFunction() local
547 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg*/ false); in createRuntimeFunction()
554 llvm::Type *TypeParams[] = { in createRuntimeFunction() local
558 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); in createRuntimeFunction()
565 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, in createRuntimeFunction() local
569 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); in createRuntimeFunction()
[all …]
/external/clang/lib/AST/
DDeclPrinter.cpp1114 if (auto TypeParams = OID->getTypeParamListAsWritten()) { in VisitObjCInterfaceDecl() local
1115 PrintObjCTypeParams(TypeParams); in VisitObjCInterfaceDecl()
1124 if (auto TypeParams = OID->getTypeParamListAsWritten()) { in VisitObjCInterfaceDecl() local
1125 PrintObjCTypeParams(TypeParams); in VisitObjCInterfaceDecl()
1193 if (auto TypeParams = PID->getTypeParamList()) { in VisitObjCCategoryDecl() local
1194 PrintObjCTypeParams(TypeParams); in VisitObjCCategoryDecl()
/external/clang/lib/Sema/
DSemaDeclObjC.cpp2979 ObjCTypeParamList *TypeParams = TypeParamLists[i]; in ActOnForwardClassDeclaration() local
2980 if (PrevIDecl && TypeParams) { in ActOnForwardClassDeclaration()
2984 *this, PrevTypeParams, TypeParams, in ActOnForwardClassDeclaration()
2986 TypeParams = nullptr; in ActOnForwardClassDeclaration()
2992 << TypeParams->getSourceRange(); in ActOnForwardClassDeclaration()
2996 TypeParams = nullptr; in ActOnForwardClassDeclaration()
3002 ClassName, TypeParams, PrevIDecl, in ActOnForwardClassDeclaration()
/external/clang/lib/Parse/
DParseObjc.cpp145 ObjCTypeParamList *TypeParams = nullptr; in ParseObjCAtClassDeclaration() local
147 TypeParams = parseObjCTypeParamList(); in ParseObjCAtClassDeclaration()
148 ClassTypeParams.push_back(TypeParams); in ParseObjCAtClassDeclaration()