HomeSort by relevance Sort by last modified time
    Searched full:astcontext (Results 1 - 25 of 441) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/StaticAnalyzer/Checkers/
SelectorExtras.h 13 #include "clang/AST/ASTContext.h"
19 static inline Selector getKeywordSelectorImpl(ASTContext &Ctx,
31 static inline Selector getKeywordSelector(ASTContext &Ctx, va_list argp) {
38 static inline Selector getKeywordSelector(ASTContext &Ctx,
48 static inline void lazyInitKeywordSelector(Selector &Sel, ASTContext &Ctx,
58 static inline void lazyInitNullarySelector(Selector &Sel, ASTContext &Ctx,
  /external/clang/include/clang/AST/
ASTUnresolvedSet.h 11 // allocated using the allocator associated with an ASTContext.
23 /// \brief An UnresolvedSet-like class which uses the ASTContext's allocator.
27 DeclsTy(ASTContext &C, unsigned N) : ASTVector<DeclAccessPair>(C, N) {}
39 ASTUnresolvedSet(ASTContext &C, unsigned N) : Decls(C, N) {}
50 void addDecl(ASTContext &C, NamedDecl *D, AccessSpecifier AS) {
74 void reserve(ASTContext &C, unsigned N) {
78 void append(ASTContext &C, iterator I, iterator E) {
91 void getFromExternalSource(ASTContext &C) const;
94 ASTUnresolvedSet &get(ASTContext &C) const {
100 void reserve(ASTContext &C, unsigned N) { Impl.reserve(C, N);
    [all...]
DeclOpenMP.h 63 static OMPThreadPrivateDecl *Create(ASTContext &C, DeclContext *DC,
66 static OMPThreadPrivateDecl *CreateDeserialized(ASTContext &C,
129 Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name,
132 static OMPDeclareReductionDecl *CreateDeserialized(ASTContext &C,
175 OMPCapturedExprDecl(ASTContext &C, DeclContext *DC, IdentifierInfo *Id,
183 static OMPCapturedExprDecl *Create(ASTContext &C, DeclContext *DC,
186 static OMPCapturedExprDecl *CreateDeserialized(ASTContext &C, unsigned ID);
ASTVector.h 1 //===- ASTVector.h - Vector that uses ASTContext for allocation --*- C++ -*-=//
11 // allocated using the allocator associated with an ASTContext..
30 class ASTContext;
56 ASTVector(const ASTContext &C, unsigned N)
157 void push_back(const_reference Elt, const ASTContext &C) {
168 void reserve(const ASTContext &C, unsigned N) {
180 void append(const ASTContext &C, in_iter in_start, in_iter in_end) {
199 void append(const ASTContext &C, size_type NumInputs, const T &Elt) {
216 iterator insert(const ASTContext &C, iterator I, const T &Elt) {
237 iterator insert(const ASTContext &C, iterator I, size_type NumToInsert
    [all...]
Mangle.h 27 class ASTContext;
52 ASTContext &Context;
63 explicit MangleContext(ASTContext &Context,
70 ASTContext &getASTContext() const { return Context; }
154 explicit ItaniumMangleContext(ASTContext &C, DiagnosticsEngine &D)
176 static ItaniumMangleContext *create(ASTContext &Context,
182 explicit MicrosoftMangleContext(ASTContext &C, DiagnosticsEngine &D)
241 static MicrosoftMangleContext *create(ASTContext &Context,
  /external/clang/include/clang/Index/
CommentToXML.h 17 class ASTContext;
37 const ASTContext &Context);
41 const ASTContext &Context);
45 const ASTContext &Context);
  /external/clang/test/CodeGen/
PR15826.c 3 /* Testcase for PR15826 - clang hits assert in clang::ASTContext::getASTRecordLayout */
  /external/clang/lib/AST/
StmtOpenMP.cpp 16 #include "clang/AST/ASTContext.h"
58 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc,
72 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C,
83 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc,
112 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C,
125 OMPForDirective::Create(const ASTContext &C, SourceLocation StartLoc,
165 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C,
178 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc,
217 OMPForSimdDirective *OMPForSimdDirective::CreateEmpty(const ASTContext &C,
230 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc
    [all...]
OpenMPClause.cpp 16 #include "clang/AST/ASTContext.h"
172 OMPPrivateClause::Create(const ASTContext &C, SourceLocation StartLoc,
184 OMPPrivateClause *OMPPrivateClause::CreateEmpty(const ASTContext &C,
203 OMPFirstprivateClause::Create(const ASTContext &C, SourceLocation StartLoc,
217 OMPFirstprivateClause *OMPFirstprivateClause::CreateEmpty(const ASTContext &C,
252 const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc,
268 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C,
274 OMPSharedClause *OMPSharedClause::Create(const ASTContext &C,
286 OMPSharedClause *OMPSharedClause::CreateEmpty(const ASTContext &C, unsigned N) {
316 const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc
    [all...]
DeclTemplate.cpp 15 #include "clang/AST/ASTContext.h"
58 const ASTContext &C, SourceLocation TemplateLoc, SourceLocation LAngleLoc,
120 void *allocateDefaultArgStorageChain(const ASTContext &C) {
202 static void GenerateInjectedTemplateArgs(ASTContext &Context,
246 FunctionTemplateDecl *FunctionTemplateDecl::Create(ASTContext &C,
256 FunctionTemplateDecl *FunctionTemplateDecl::CreateDeserialized(ASTContext &C,
263 FunctionTemplateDecl::newCommon(ASTContext &C) const {
276 ASTContext &Context = getASTContext();
323 ClassTemplateDecl *ClassTemplateDecl::Create(ASTContext &C,
337 ClassTemplateDecl *ClassTemplateDecl::CreateDeserialized(ASTContext &C
    [all...]
DeclOpenMP.cpp 15 #include "clang/AST/ASTContext.h"
29 OMPThreadPrivateDecl *OMPThreadPrivateDecl::Create(ASTContext &C,
41 OMPThreadPrivateDecl *OMPThreadPrivateDecl::CreateDeserialized(ASTContext &C,
63 ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name,
70 OMPDeclareReductionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
92 OMPCapturedExprDecl *OMPCapturedExprDecl::Create(ASTContext &C, DeclContext *DC,
98 OMPCapturedExprDecl *OMPCapturedExprDecl::CreateDeserialized(ASTContext &C,
DeclFriend.cpp 15 #include "clang/AST/ASTContext.h"
27 FriendDecl *FriendDecl::Create(ASTContext &C, DeclContext *DC,
58 FriendDecl *FriendDecl::CreateDeserialized(ASTContext &C, unsigned ID,
ExprCXX.cpp 14 #include "clang/AST/ASTContext.h"
43 QualType CXXTypeidExpr::getTypeOperand(ASTContext &Context) const {
50 QualType CXXUuidofExpr::getTypeOperand(ASTContext &Context) const {
63 CXXNewExpr::CXXNewExpr(const ASTContext &C, bool globalNew,
127 void CXXNewExpr::AllocateArgsArray(const ASTContext &C, bool isArray,
137 bool CXXNewExpr::shouldNullCheckAllocation(const ASTContext &Ctx) const {
162 CXXPseudoDestructorExpr::CXXPseudoDestructorExpr(const ASTContext &Context,
213 UnresolvedLookupExpr::Create(const ASTContext &C,
237 UnresolvedLookupExpr::CreateEmpty(const ASTContext &C,
250 OverloadExpr::OverloadExpr(StmtClass K, const ASTContext &C
    [all...]
ExprObjC.cpp 16 #include "clang/AST/ASTContext.h"
38 ObjCArrayLiteral *ObjCArrayLiteral::Create(const ASTContext &C,
46 ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(const ASTContext &C,
89 ObjCDictionaryLiteral::Create(const ASTContext &C,
99 ObjCDictionaryLiteral::CreateEmpty(const ASTContext &C, unsigned NumElements,
107 QualType ObjCPropertyRefExpr::getReceiverType(const ASTContext &ctx) const {
201 ObjCMessageExpr::Create(const ASTContext &Context, QualType T, ExprValueKind VK,
221 ObjCMessageExpr::Create(const ASTContext &Context, QualType T, ExprValueKind VK,
240 ObjCMessageExpr::Create(const ASTContext &Context, QualType T, ExprValueKind VK,
258 ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(const ASTContext &Context
    [all...]
RecordLayout.cpp 14 #include "clang/AST/ASTContext.h"
20 void ASTRecordLayout::Destroy(ASTContext &Ctx) {
29 ASTRecordLayout::ASTRecordLayout(const ASTContext &Ctx, CharUnits size,
40 ASTRecordLayout::ASTRecordLayout(const ASTContext &Ctx,
  /external/clang/docs/
RAVFrontendAction.rst 41 HandleTranslationUnit, which is called with the ASTContext for the
48 virtual void HandleTranslationUnit(clang::ASTContext &Context) {
101 Accessing the SourceManager and ASTContext
106 in the ASTContext and its associated source manager. To retrieve them we
107 need to hand the ASTContext into our RecursiveASTVisitor implementation.
109 The ASTContext is available from the CompilerInstance during the call to
121 Now that the ASTContext is available in the RecursiveASTVisitor, we can
129 // getFullLoc uses the ASTContext's SourceManager to resolve the source
158 explicit FindNamedClassVisitor(ASTContext *Context)
173 ASTContext *Context
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.h 25 class ASTContext;
34 BodyFarm(ASTContext &C, CodeInjector *injector) : C(C), Injector(injector) {}
45 ASTContext &C;
  /external/clang/test/PCH/
pr18806.cpp 7 // ASTContext::getSubstTemplateTypeParmType.
  /external/clang/unittests/Tooling/
FixItTest.cpp 28 std::function<void(CallExpr *, ASTContext *Context)> OnCall;
31 std::string LocationToString(SourceLocation Loc, ASTContext *Context) {
38 Visitor.OnCall = [](CallExpr *CE, ASTContext *Context) {
49 Visitor.OnCall = [](CallExpr *CE, ASTContext *Context) {
59 Visitor.OnCall = [](CallExpr *CE, ASTContext *Context) {
70 Visitor.OnCall = [](CallExpr *CE, ASTContext *Context) {
84 Visitor.OnCall = [](CallExpr *CE, ASTContext *Context) {
104 Visitor.OnCall = [](CallExpr *CE, ASTContext *Context) {
119 Visitor.OnCall = [](CallExpr *CE, ASTContext *Context) {
146 Visitor.OnCall = [](CallExpr *CE, ASTContext *Context)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIFunctionClassifier.h 26 MPIFunctionClassifier(ASTContext &ASTCtx) { identifierInit(ASTCtx); }
52 void identifierInit(ASTContext &ASTCtx);
53 void initPointToPointIdentifiers(ASTContext &ASTCtx);
54 void initCollectiveIdentifiers(ASTContext &ASTCtx);
55 void initAdditionalIdentifiers(ASTContext &ASTCtx);
  /development/vndk/tools/header-checker/header-abi-dumper/src/
ast_processing.h 38 clang::ASTContext *ast_contextp,
62 clang::ASTContext *ast_contextp_;
77 void HandleTranslationUnit(clang::ASTContext &ctx) override;
  /frameworks/compile/slang/
slang_rs_ast_replace.h 23 #include "clang/AST/ASTContext.h"
35 const clang::ASTContext &C;
59 explicit RSASTReplace(const clang::ASTContext &Con)
  /external/clang/lib/Tooling/Core/
QualTypeNames.cpp 32 /// \param[in] Ctx - the ASTContext to be used.
35 static QualType getFullyQualifiedType(QualType QT, const ASTContext &Ctx,
47 const ASTContext &Ctx,
62 const ASTContext &Ctx, const TypeDecl *TD,
66 const ASTContext &Ctx, const Decl *decl,
70 const ASTContext &Ctx, NestedNameSpecifier *scope, bool WithGlobalNsPrefix);
72 static bool getFullyQualifiedTemplateName(const ASTContext &Ctx,
106 static bool getFullyQualifiedTemplateArgument(const ASTContext &Ctx,
132 static const Type *getFullyQualifiedTemplateType(const ASTContext &Ctx,
202 static NestedNameSpecifier *createOuterNNS(const ASTContext &Ctx, const Decl *D
    [all...]
  /external/clang/include/clang/Tooling/
FixIt.h 23 #include "clang/AST/ASTContext.h"
30 StringRef getText(SourceRange Range, const ASTContext &Context);
50 StringRef getText(const T &Node, const ASTContext &Context) {
63 const ASTContext &Context) {
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 76 MatchResult(const BoundNodes &Nodes, clang::ASTContext *Context);
85 clang::ASTContext * const Context;
183 template <typename T> void match(const T &Node, ASTContext &Context) {
187 ASTContext &Context);
191 void matchAST(ASTContext &Context);
236 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context);
241 ASTContext &Context);
247 SmallVector<BoundNodes, 1> match(MatcherT Matcher, ASTContext &Context);
282 ASTContext &Context) {
292 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context)
    [all...]

Completed in 2703 milliseconds

1 2 3 4 5 6 7 8 91011>>