Home | History | Annotate | Download | only in Sema

Lines Matching refs:parent

21 void Scope::Init(Scope *parent, unsigned flags) {
22 AnyParent = parent;
25 if (parent && !(flags & FnScope)) {
26 BreakParent = parent->BreakParent;
27 ContinueParent = parent->ContinueParent;
34 if (parent) {
35 Depth = parent->Depth + 1;
36 PrototypeDepth = parent->PrototypeDepth;
38 FnParent = parent->FnParent;
39 BlockParent = parent->BlockParent;
40 TemplateParamParent = parent->TemplateParamParent;
41 MSLastManglingParent = parent->MSLastManglingParent;
46 Flags |= parent->getFlags() & OpenMPSimdDirectiveScope;
211 if (const Scope *Parent = getParent())
212 OS << "Parent: (clang::Scope*)" << Parent << '\n';