Home
last modified time | relevance | path

Searched refs:newScope (Results 1 – 6 of 6) 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.h276 LocalInstantiationScope *newScope = in cloneScopes() local
279 newScope->Outer = 0; in cloneScopes()
281 newScope->Outer = Outer->cloneScopes(Outermost); in cloneScopes()
283 newScope->PartiallySubstitutedPack = PartiallySubstitutedPack; in cloneScopes()
284 newScope->ArgsInPartiallySubstitutedPack = ArgsInPartiallySubstitutedPack; in cloneScopes()
285 newScope->NumArgsInPartiallySubstitutedPack = in cloneScopes()
292 newScope->LocalDecls[D]; in cloneScopes()
299 newScope->ArgumentPacks.push_back(NewPack); in cloneScopes()
302 return newScope; in cloneScopes()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DTreeScopeAdopter.h36 TreeScopeAdopter(Node& toAdopt, TreeScope& newScope);
58 inline TreeScopeAdopter::TreeScopeAdopter(Node& toAdopt, TreeScope& newScope) in TreeScopeAdopter() argument
60 , m_newScope(newScope) in TreeScopeAdopter()
/external/skia/src/animator/
DSkDisplayApply.cpp427 SkDisplayable* newScope; in enableDynamic() local
429 &newScope); in enableDynamic()
430 if (success && scope != newScope) { in enableDynamic()
447 scope = (SkDrawable*) newScope; in enableDynamic()
/external/chromium_org/third_party/skia/src/animator/
DSkDisplayApply.cpp427 SkDisplayable* newScope; in enableDynamic() local
429 &newScope); in enableDynamic()
430 if (success && scope != newScope) { in enableDynamic()
447 scope = (SkDrawable*) newScope; in enableDynamic()
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
Ddojo-1.6.1.js37 var newScope = sMap[i];
38 …scopeDef += "var " + newScope[0] + " = {}; " + newScope[1] + " = " + newScope[0] + ";" + newScope[…
39 scopePrefix += (i == 0 ? "" : ",") + newScope[0];
40 scopeSuffix += (i == 0 ? "" : ",") + newScope[1];
41 scopeMap[newScope[0]] = newScope[1];
42 scopeMapRev[newScope[1]] = newScope[0];