Home | History | Annotate | Download | only in Sema

Lines Matching refs:parent

19 void Scope::Init(Scope *parent, unsigned flags) {
20 AnyParent = parent;
23 if (parent && !(flags & FnScope)) {
24 BreakParent = parent->BreakParent;
25 ContinueParent = parent->ContinueParent;
32 if (parent) {
33 Depth = parent->Depth + 1;
34 PrototypeDepth = parent->PrototypeDepth;
36 FnParent = parent->FnParent;
37 BlockParent = parent->BlockParent;
38 TemplateParamParent = parent->TemplateParamParent;