Home
last modified time | relevance | path

Searched refs:newScope (Results 1 – 2 of 2) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/data/
DDefaultDataContext.java46 private boolean newScope = false; field in DefaultDataContext
66 if (newScope) { in pushVariableScope()
70 newScope = true; in pushVariableScope()
79 if (newScope) { in popVariableScope()
81 newScope = false; in popVariableScope()
119 if (head == null && !newScope) { in createLocalVariable()
138 if (!newScope && head != null && name.equals(head.name)) { in createLocalVariable()
149 if (newScope) { in createLocalVariable()
151 newScope = false; in createLocalVariable()
/external/clang/include/clang/Sema/
DTemplate.h281 LocalInstantiationScope *newScope = in cloneScopes() local
284 newScope->Outer = nullptr; in cloneScopes()
286 newScope->Outer = Outer->cloneScopes(Outermost); in cloneScopes()
288 newScope->PartiallySubstitutedPack = PartiallySubstitutedPack; in cloneScopes()
289 newScope->ArgsInPartiallySubstitutedPack = ArgsInPartiallySubstitutedPack; in cloneScopes()
290 newScope->NumArgsInPartiallySubstitutedPack = in cloneScopes()
297 newScope->LocalDecls[D]; in cloneScopes()
304 newScope->ArgumentPacks.push_back(NewPack); in cloneScopes()
309 return newScope; in cloneScopes()