Home
last modified time | relevance | path

Searched refs:BTName (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclID.h80 #define BuiltinTemplate(BTName) PREDEF_DECL##BTName##_ID, argument
H A DASTContext.h414 #define BuiltinTemplate(BTName) mutable IdentifierInfo *Name##BTName = nullptr; argument
679 #define BuiltinTemplate(BTName) \ argument
680 mutable BuiltinTemplateDecl *Decl##BTName = nullptr;
1208 #define BuiltinTemplate(BTName) BuiltinTemplateDecl *get##BTName##Decl() const; argument
2159 #define BuiltinTemplate(BTName) \ argument
2160 IdentifierInfo *get##BTName##Name() const { \
2161 if (!Name##BTName) \
2162 Name##BTName = &Idents.get(#BTName); \
2163 return Name##BTName; \
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.h463 #define BuiltinTemplate(BTName) BTK##BTName, argument
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp1790 #define BuiltinTemplate(BTName) .Case(#BTName, getLangOpts().CPlusPlus) in ExpandBuiltinMacro() argument
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp814 StringRef BTName; in CreateType() local
896 BTName = BT->getName(CGM.getLangOpts()); in CreateType()
899 return DBuilder.createBasicType(BTName, Size, Encoding); in CreateType()
1116 BTName = BT->getName(CGM.getLangOpts()); in CreateType()
1119 return DBuilder.createBasicType(BTName, Size, Encoding); in CreateType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp1221 #define BuiltinTemplate(BTName) \ argument
1222 BuiltinTemplateDecl *ASTContext::get##BTName##Decl() const { \
1223 if (!Decl##BTName) \
1224 Decl##BTName = \
1225 buildBuiltinTemplateDecl(BTK##BTName, get##BTName##Name()); \
1226 return Decl##BTName; \
H A DASTImporter.cpp5687 #define BuiltinTemplate(BTName) \ in VisitBuiltinTemplateDecl() argument
5688 case BuiltinTemplateKind::BTK##BTName: \ in VisitBuiltinTemplateDecl()
5689 ToD = Importer.getToContext().get##BTName##Decl(); \ in VisitBuiltinTemplateDecl()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp8200 #define BuiltinTemplate(BTName) \ in getPredefinedDecl() argument
8201 case PREDEF_DECL##BTName##_ID: \ in getPredefinedDecl()
8202 if (Context.Decl##BTName) \ in getPredefinedDecl()
8203 return Context.Decl##BTName; \ in getPredefinedDecl()
8204 NewLoaded = Context.get##BTName##Decl(); \ in getPredefinedDecl()
H A DASTWriter.cpp5602 #define BuiltinTemplate(BTName) \ in PrepareWritingSpecialDecls() argument
5603 RegisterPredefDecl(Context.Decl##BTName, PREDEF_DECL##BTName##_ID); in PrepareWritingSpecialDecls()