Searched refs:ASTContext (Results 151 - 175 of 286) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h39 class ASTContext;
94 void Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL,
108 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
122 void Extend(ASTContext &Context, NamespaceDecl *Namespace,
137 void Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
142 void MakeGlobal(ASTContext &Context, SourceLocation ColonColonLoc);
150 void MakeTrivial(ASTContext &Context, NestedNameSpecifier *Qualifier,
162 NestedNameSpecifierLoc getWithLocInContext(ASTContext &Context) const;
H A DCodeCompleteConsumer.h124 QualType getDeclUsageType(ASTContext &C, const NamedDecl *ND);
784 CodeCompletionString *CreateCodeCompletionString(ASTContext &Ctx,
H A DAttributeList.h27 class ASTContext;
53 static IdentifierLoc *create(ASTContext &Ctx, SourceLocation Loc,
610 AttributeList *createIntegerAttribute(ASTContext &C, IdentifierInfo *Name,
811 AttributeList *addNewInteger(ASTContext &C, IdentifierInfo *name,
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclBase.cpp15 #include "clang/AST/ASTContext.h"
48 void *Decl::AllocateDeserializedDecl(const ASTContext &Context,
225 ASTContext &Ctx) {
262 ASTContext &Decl::getASTContext() const {
276 ASTContext &Ctx = getASTContext();
294 void Decl::markUsed(ASTContext &C) {
325 static AvailabilityResult CheckAvailability(ASTContext &Context,
589 void Decl::setAttrsImpl(const AttrVec &attrs, ASTContext &Ctx) {
996 ASTContext &Context = DC->getParentASTContext();
1010 ASTContext
[all...]
H A DCXXInheritance.cpp14 #include "clang/AST/ASTContext.h"
179 bool CXXBasePaths::lookupInBases(ASTContext &Context,
698 AddIndirectPrimaryBases(const CXXRecordDecl *RD, ASTContext &Context,
723 ASTContext &Context = getASTContext();
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DNSArray.cpp101 clang::ASTContext *ast = valobj_sp->GetClangType().GetASTContext();
210 clang::ASTContext *ast = valobj_sp->GetClangType().GetASTContext();
H A DCXXFormatterFunctions.cpp521 clang::ASTContext* ast = valobj.GetClangType().GetASTContext();
609 clang::ASTContext* ast = valobj.GetClangType().GetASTContext();
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp17 #include "clang/AST/ASTContext.h"
344 static Optional<uint64_t> GetCFNumberSize(ASTContext &Ctx, uint64_t i) {
403 ASTContext &Ctx = C.getASTContext();
518 ASTContext &Ctx = C.getASTContext();
603 ASTContext &Ctx = C.getASTContext();
709 ASTContext &Ctx = C.getASTContext();
1165 ASTContext &Ctx = C.getASTContext();
H A DDeadStoresChecker.cpp16 #include "clang/AST/ASTContext.h"
125 ASTContext &Ctx;
137 DeadStoreObs(const CFG &cfg, ASTContext &ctx,
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DARCMT.cpp276 ASTContext &Ctx = Unit->getASTContext();
498 RewritesApplicator(Rewriter &rewriter, ASTContext &ctx,
589 ASTContext &Ctx = Unit->getASTContext();
H A DTransAutoreleasePool.cpp32 #include "clang/AST/ASTContext.h"
249 ASTContext &Ctx;
254 NameReferenceChecker(ASTContext &ctx, PoolScope &scope,
H A DTransZeroOutPropsInDealloc.cpp18 #include "clang/AST/ASTContext.h"
44 ASTContext &Ctx = Pass.Ctx;
H A DTransformActions.cpp11 #include "clang/AST/ASTContext.h"
31 ASTContext &Ctx;
123 ASTContext &ctx, Preprocessor &PP)
126 ASTContext &getASTContext() { return Ctx; }
603 ASTContext &ctx, Preprocessor &PP)
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp15 #include "clang/AST/ASTContext.h"
111 ASTContext &Ctx) {
158 ASTContext &Ctx,
686 ASTContext &Ctx, LiteralInfo &Info) {
778 ASTContext &Ctx = NS.getASTContext();
982 ASTContext &Ctx = NS.getASTContext();
1114 ASTContext &Ctx = NS.getASTContext();
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtObjC.h184 static ObjCAtTryStmt *Create(const ASTContext &Context,
188 static ObjCAtTryStmt *CreateEmpty(const ASTContext &Context,
H A DDeclContextInternals.h251 friend class ASTContext; // walks the chain deleting these
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Analysis/
H A DScanfFormatString.cpp212 ArgType ScanfSpecifier::getArgType(ASTContext &Ctx) const {
383 ASTContext &Ctx) {
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Frontend/
H A DFrontendAction.cpp12 #include "clang/AST/ASTContext.h"
92 ASTContext &Ctx;
96 DeserializedDeclsChecker(ASTContext &Ctx,
H A DMultiplexConsumer.cpp219 void MultiplexConsumer::Initialize(ASTContext &Context) {
241 void MultiplexConsumer::HandleTranslationUnit(ASTContext &Ctx) {
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DType.h453 clang::ASTContext *
538 clang::ASTContext *
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangExpressionParser.cpp32 #include "clang/AST/ASTContext.h"
347 std::unique_ptr<clang::ASTContext> ast_context(new ASTContext(m_compiler->getLangOpts(),
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCFG.h45 class ASTContext;
155 const CXXDestructorDecl *getDestructorDecl(ASTContext &astContext) const;
156 bool isNoReturn(ASTContext &astContext) const;
712 static CFG* buildCFG(const Decl *D, Stmt *AST, ASTContext *C,
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h35 class ASTContext;
469 ProgramStateManager(ASTContext &Ctx,
479 ASTContext &getContext() { return svalBuilder->getContext(); }
480 const ASTContext &getContext() const { return svalBuilder->getContext(); }
H A DStore.h47 ASTContext &Ctx;
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenModule.h49 class ASTContext;
232 ASTContext &Context;
430 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
521 ASTContext &getContext() const { return Context; }

Completed in 289 milliseconds

1234567891011>>