Lines Matching defs:EffectiveContext
80 struct EffectiveContext { struct
81 EffectiveContext() : Inner(nullptr), Dependent(false) {} in EffectiveContext() function
83 explicit EffectiveContext(DeclContext *DC) in EffectiveContext() function
125 bool isDependent() const { return Dependent; } in isDependent()
127 bool includesClass(const CXXRecordDecl *R) const { in includesClass()
135 DeclContext *getInnerContext() const { in getInnerContext()
139 typedef SmallVectorImpl<CXXRecordDecl*>::const_iterator record_iterator;
141 DeclContext *Inner;
142 SmallVector<FunctionDecl*, 4> Functions;
143 SmallVector<CXXRecordDecl*, 4> Records;
144 bool Dependent;