HomeSort by relevance Sort by last modified time
    Searched refs:ASTContext (Results 76 - 100 of 282) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/lib/Analysis/
ObjCNoReturn.cpp 15 #include "clang/AST/ASTContext.h"
29 ObjCNoReturn::ObjCNoReturn(ASTContext &C)
BodyFarm.cpp 16 #include "clang/AST/ASTContext.h"
48 ASTMaker(ASTContext &C) : C(C) {}
82 ASTContext &C;
158 typedef Stmt *(*FunctionFarmer)(ASTContext &C, const FunctionDecl *D);
161 static Stmt *create_dispatch_once(ASTContext &C, const FunctionDecl *D) {
239 static Stmt *create_dispatch_sync(ASTContext &C, const FunctionDecl *D) {
265 static Stmt *create_OSAtomicCompareAndSwap(ASTContext &C, const FunctionDecl *D)
  /external/clang/lib/Serialization/
ASTCommon.h 17 #include "clang/AST/ASTContext.h"
34 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) {
  /external/clang/lib/StaticAnalyzer/Checkers/
CastToStructChecker.cpp 37 ASTContext &Ctx = C.getASTContext();
MallocOverflowSecurityChecker.cpp 48 const Expr *TheArgument, ASTContext &Context) const;
60 ASTContext &Context) const {
118 ASTContext &Context;
185 CheckOverflowOps(theVecType &v, ASTContext &ctx)
ChrootChecker.cpp 69 ASTContext &Ctx = C.getASTContext();
129 ASTContext &Ctx = C.getASTContext();
CastSizeChecker.cpp 34 ASTContext &Ctx = C.getASTContext();
  /external/clang/lib/StaticAnalyzer/Core/
AnalysisManager.cpp 17 AnalysisManager::AnalysisManager(ASTContext &ctx, DiagnosticsEngine &diags,
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 30 ASTContext &Ctx = CXXUnit->getASTContext();
CIndexHigh.cpp 64 ASTContext &getASTContext() const {
188 ASTContext &Ctx = data->getASTContext();
258 ASTContext &getASTContext() const {
283 ASTContext &Ctx = data->getASTContext();
350 ASTContext &getASTContext() const {
361 ASTContext &Ctx = getASTContext();
  /external/clang/unittests/Frontend/
FrontendActionTest.cpp 12 #include "clang/AST/ASTContext.h"
39 virtual void HandleTranslationUnit(ASTContext &context) {
  /frameworks/compile/slang/
slang_rs_context.h 41 class ASTContext;
68 clang::ASTContext &mCtx;
106 clang::ASTContext &Ctx,
113 inline clang::ASTContext &getASTContext() const { return mCtx; }
slang_rs_export_func.cpp 21 #include "clang/AST/ASTContext.h"
38 const clang::ASTContext &C = FD->getASTContext();
69 clang::ASTContext &Ctx = Context->getASTContext();
  /external/clang/include/clang/AST/
TemplateBase.h 80 // We store a decomposed APSInt with the data allocated by ASTContext if
130 TemplateArgument(ASTContext &Ctx, const llvm::APSInt &Value, QualType Type);
199 static TemplateArgument CreatePackCopy(ASTContext &Context,
342 void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context) const;
507 ASTContext &Context) const;
519 void* operator new(size_t bytes, ASTContext& C);
585 static const ASTTemplateArgumentListInfo *Create(ASTContext &C,
618 Create(ASTContext &C, SourceLocation TemplateKWLoc,
ASTContext.h 1 //===--- ASTContext.h - Context to hold long-lived AST nodes ----*- C++ -*-===//
11 /// \brief Defines the clang::ASTContext interface.
77 class ASTContext : public RefCountedBase<ASTContext> {
78 ASTContext &this_() { return *this; }
96 mutable llvm::ContextualFoldingSet<FunctionProtoType, ASTContext&>
105 mutable llvm::ContextualFoldingSet<TemplateSpecializationType, ASTContext&>
111 ASTContext&>
125 ASTContext&>
352 /// this ASTContext object
    [all...]
DeclFriend.h 100 static FriendDecl *Create(ASTContext &C, DeclContext *DC,
105 static FriendDecl *CreateDeserialized(ASTContext &C, unsigned ID,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SValBuilder.h 18 #include "clang/AST/ASTContext.h"
34 ASTContext &Context;
62 SValBuilder(llvm::BumpPtrAllocator &alloc, ASTContext &context,
120 ASTContext &getContext() { return Context; }
121 const ASTContext &getContext() const { return Context; }
318 ASTContext &context,
BasicValueFactory.h 19 #include "clang/AST/ASTContext.h"
66 ASTContext &Ctx;
82 BasicValueFactory(ASTContext &ctx, llvm::BumpPtrAllocator& Alloc)
88 ASTContext &getContext() const { return Ctx; }
  /external/clang/lib/AST/
TypeLoc.cpp 15 #include "clang/AST/ASTContext.h"
82 void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL,
287 void ElaboratedTypeLoc::initializeLocal(ASTContext &Context,
295 void DependentNameTypeLoc::initializeLocal(ASTContext &Context,
305 DependentTemplateSpecializationTypeLoc::initializeLocal(ASTContext &Context,
324 void TemplateSpecializationTypeLoc::initializeArgLocs(ASTContext &Context,
TemplateName.cpp 42 ASTContext &Context) {
47 ASTContext &Context,
  /external/clang/lib/Frontend/
ASTConsumers.cpp 17 #include "clang/AST/ASTContext.h"
44 virtual void HandleTranslationUnit(ASTContext &Context) {
100 virtual void HandleTranslationUnit(ASTContext &Context) {
135 ASTContext *Context;
137 void Initialize(ASTContext &Context) {
176 void HandleTranslationUnit(ASTContext &C) {
486 void HandleTranslationUnit(ASTContext &C) {
  /external/clang/lib/CodeGen/
ABIInfo.h 24 class ASTContext;
196 ASTContext &getContext() const;
  /external/clang/lib/Sema/
TypeLocBuilder.h 18 #include "clang/AST/ASTContext.h"
105 TypeSourceInfo *getTypeSourceInfo(ASTContext& Context, QualType T) {
118 TypeLoc getTypeLocInContext(ASTContext &Context, QualType T) {
  /external/clang/unittests/Tooling/
TestVisitor.h 19 #include "clang/AST/ASTContext.h"
67 virtual void HandleTranslationUnit(clang::ASTContext &Context) {
90 ASTContext *Context;
  /external/clang/include/clang/Basic/
Builtins.h 29 class ASTContext;

Completed in 1998 milliseconds

1 2 34 5 6 7 8 91011>>