OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ASTContext
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/AST/
ASTContext.cpp
1
//===---
ASTContext
.cpp - Context to hold long-lived AST nodes ------------===//
10
// This file implements the
ASTContext
interface.
14
#include "clang/AST/
ASTContext
.h"
39
unsigned
ASTContext
::NumImplicitDefaultConstructors;
40
unsigned
ASTContext
::NumImplicitDefaultConstructorsDeclared;
41
unsigned
ASTContext
::NumImplicitCopyConstructors;
42
unsigned
ASTContext
::NumImplicitCopyConstructorsDeclared;
43
unsigned
ASTContext
::NumImplicitMoveConstructors;
44
unsigned
ASTContext
::NumImplicitMoveConstructorsDeclared;
45
unsigned
ASTContext
::NumImplicitCopyAssignmentOperators
[
all
...]
/external/clang/include/clang/AST/
ASTContext.h
1
//===---
ASTContext
.h - Context to hold long-lived AST nodes ----*- C++ -*-===//
10
// This file defines the
ASTContext
interface.
83
///
ASTContext
- This class holds long-lived AST nodes (such as types and
85
class
ASTContext
: public RefCountedBase<
ASTContext
> {
86
ASTContext
&this_() { return *this; }
104
mutable llvm::ContextualFoldingSet<FunctionProtoType,
ASTContext
&>
113
mutable llvm::ContextualFoldingSet<TemplateSpecializationType,
ASTContext
&>
119
ASTContext
&>
133
ASTContext
&>
[
all
...]
Completed in 1894 milliseconds