/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
ActionTranslator.g | 149 AttributeScope scope = r.getLocalAttributeScope(attrName); 150 if ( scope!=null && !scope.isParameterScope ) { 151 return scope.getAttribute(attrName); 164 return null; // not a valid dynamic scope 191 AttributeScope scope = enclosingRule.getLocalAttributeScope($y.text); 192 if ( scope.isPredefinedRuleScope ) { 196 st.add("scope", $x.text); 207 else if ( scope.isPredefinedLexerRuleScope ) { 215 else if ( scope.isParameterScope ) [all...] |
/external/v8/src/ |
scopeinfo.cc | 41 Handle<ScopeInfo> ScopeInfo::Create(Scope* scope) { 43 ZoneList<Variable*> stack_locals(scope->StackLocalCount()); 44 ZoneList<Variable*> context_locals(scope->ContextLocalCount()); 45 scope->CollectStackAndContextLocals(&stack_locals, &context_locals); 49 ASSERT(scope->StackLocalCount() == stack_local_count); 50 ASSERT(scope->ContextLocalCount() == context_local_count); 55 if (scope->is_function_scope() && scope->function() != NULL) { 56 Variable* var = scope->function()->var() [all...] |
scopes.cc | 65 Scope* scope, 76 p->value = new Variable(scope, 100 // Implementation of Scope 102 Scope::Scope(Scope* outer_scope, ScopeType type) 116 // eval scopes (by walking the stack and reading the scope info). 123 Scope::Scope(Scope* inner_scope 252 Scope* scope = info->function()->scope(); local 683 Scope* scope = this; local 705 Scope* scope = inner_scopes_[i]; local [all...] |
variables.cc | 57 Variable::Variable(Scope* scope, 64 : scope_(scope),
|
/external/v8/test/mjsunit/ |
global-load-from-eval-in-with.js | 38 // Test shadowing in eval scope. 42 // Test shadowing in local scope inside an eval scope. 46 // Test shadowing in local scope inside an eval scope. Deeper nesting 51 // Test shadowing in local scope inside an eval scope with eval calls in the eval scopes. 55 // Test shadowing in local scope inside an eval scope with eval calls
|
debug-scopes.js | 79 // Check that the scope chain contains the expected types of scopes. 83 var scope = exec_state.frame().scope(i); 84 assertTrue(scope.isScope()); 85 assertEquals(scopes[i], scope.scopeType()); 87 // Check the global object when hitting the global scope. 91 assertPropertiesEqual(this, scope.scopeObject().value()); 117 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found"); 122 // Check that the content of the scope is as expected. For functions just check 125 var scope = exec_state.frame().scope(number) [all...] |
/external/v8/test/cctest/ |
test-weakmaps.cc | 69 v8::HandleScope scope; local 76 v8::HandleScope scope; local 85 v8::HandleScope scope; local 99 v8::HandleScope scope; local 124 v8::HandleScope scope; local 132 v8::HandleScope scope; local
|
test-deoptimization.cc | 116 v8::HandleScope scope; local 154 v8::HandleScope scope; local 193 v8::HandleScope scope; local 218 v8::HandleScope scope; local 245 v8::HandleScope scope; local 273 v8::HandleScope scope; local 311 v8::HandleScope scope; local 340 v8::HandleScope scope; local 430 v8::HandleScope scope; local 442 v8::HandleScope scope; local 454 v8::HandleScope scope; local 466 v8::HandleScope scope; local 478 v8::HandleScope scope; local 490 v8::HandleScope scope; local 533 v8::HandleScope scope; local 613 v8::HandleScope scope; local [all...] |
test-compiler.cc | 70 v8::HandleScope scope; local 92 v8::HandleScope scope; local 97 v8::HandleScope scope; local 150 v8::HandleScope scope; local 171 v8::HandleScope scope; local 191 v8::HandleScope scope; local 212 v8::HandleScope scope; local 219 v8::HandleScope scope; local 234 v8::HandleScope scope; local 266 v8::HandleScope scope; local 288 v8::HandleScope scope; local 321 v8::HandleScope scope; local 333 v8::HandleScope scope; local 393 v8::HandleScope scope; local [all...] |
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/ |
ToastDetector.java | 23 import com.android.tools.lint.detector.api.Scope; 55 Scope.JAVA_FILE_SCOPE); 79 private MethodDeclaration findSurroundingMethod(Node scope) { 80 while (scope != null) { 81 Class<? extends Node> type = scope.getClass(); 85 return (MethodDeclaration) scope; 88 scope = scope.getParent();
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/ |
ASTParser.stg | 124 ruleRef(rule,label,elementIndex,args,scope) ::= << 130 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 133 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= << 139 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 145 ruleRefBangAndListLabel(rule,label,elementIndex,args,scope) ::= << 151 ruleRefRuleRootAndListLabel(rule,label,elementIndex,args,scope) ::= <<
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/ |
ASTParser.stg | 123 ruleRef(rule,label,elementIndex,args,scope) ::= << 129 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 132 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= << 138 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 144 ruleRefBangAndListLabel(rule,label,elementIndex,args,scope) ::= << 150 ruleRefRuleRootAndListLabel(rule,label,elementIndex,args,scope) ::= <<
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/ |
ASTParser.stg | 95 ruleRef(rule,label,elementIndex,args,scope) ::= << 101 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 104 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= << 110 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 116 ruleRefBangAndListLabel(rule,label,elementIndex,args,scope) ::= << 122 ruleRefRuleRootAndListLabel(rule,label,elementIndex,args,scope) ::= <<
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
ASTParser.stg | 131 ruleRef(rule,label,elementIndex,args,scope) ::= << 137 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 140 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= << 146 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 152 ruleRefBangAndListLabel(rule,label,elementIndex,args,scope) ::= << 158 ruleRefRuleRootAndListLabel(rule,label,elementIndex,args,scope) ::= <<
|
/external/webkit/Source/WebCore/bindings/scripts/test/V8/ |
V8TestCallback.cpp | 66 v8::Context::Scope scope(v8Context); 86 v8::Context::Scope scope(v8Context); 113 v8::Context::Scope scope(v8Context); 146 v8::Context::Scope scope(v8Context);
|
/external/webkit/Source/WebCore/bindings/v8/ |
V8HiddenPropertyName.cpp | 50 v8::HandleScope scope; local
|
/external/webkit/Source/WebCore/css/ |
MediaQueryListListener.cpp | 44 v8::Context::Scope scope(context);
|
/external/webkit/Source/WebCore/html/ |
HTMLTableCellElement.h | 49 String scope() const;
|
HTMLTableCellElement.idl | 36 attribute [Reflect] DOMString scope;
|
/sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/ |
Issue.java | 49 private final EnumSet<Scope> mScope; 61 @NonNull EnumSet<Scope> scope) { 70 mScope = scope; 85 * @param scope the scope of files required to analyze this issue 97 @NonNull EnumSet<Scope> scope) { 99 detectorClass, scope); 198 * Returns the scope required to analyze the code to detect this issue [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
scopes.rb | 16 scope { 46 scope aScope { 61 scope aScope; 69 scope {x} 86 scope { 110 scope { 137 /* recursive rule scopes, access bottom-most scope */ 140 scope { 154 scope {
|
/hardware/ril/mock-ril/src/cpp/ |
node_buffer.cpp | 165 HandleScope scope; local 177 HandleScope scope; local 301 HandleScope scope; local 311 return scope.Close(b); 317 HandleScope scope; local 334 return scope.Close(string); 340 HandleScope scope; local 346 return scope.Close(string); 352 HandleScope scope; local 357 return scope.Close(slice) 364 HandleScope scope; local 420 HandleScope scope; local 461 HandleScope scope; local 493 HandleScope scope; local 533 HandleScope scope; local 594 HandleScope scope; local 614 HandleScope scope; local [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/ |
T.g | 28 scope {
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
CachedCall.h | 41 , m_globalObjectScope(callFrame->globalData(), function->scope()->globalObject.get()) 44 m_closure = m_interpreter->prepareForRepeatCall(function->jsExecutable(), callFrame, function, argCount, function->scope());
|
/external/skia/src/animator/ |
SkDisplayList.cpp | 80 if (apply->scope == match) 82 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index)) 86 SkDrawable* scope = *ptr; local 87 if (scope == match) 89 //perhaps should call SearchGroupForMatch here as well (on scope)
|