Searched refs:WITH_SCOPE (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | JavaScriptCallFrame.idl | 35 const unsigned short WITH_SCOPE = 2;
|
D | InjectedScriptSource.js | 1334 const WITH_SCOPE = 2; 1342 scopeTypeNames[WITH_SCOPE] = "with";
|
/external/chromium_org/v8/test/cctest/ |
D | test-parsing.cc | 928 { " with ({}) ", "{ block; }", " more;", i::WITH_SCOPE, i::SLOPPY }, in TEST() 929 { " with ({}) ", "{ block; }", "; more;", i::WITH_SCOPE, i::SLOPPY }, in TEST() 933 " more;", i::WITH_SCOPE, i::SLOPPY }, in TEST() 934 { " with ({}) ", "statement;", " more;", i::WITH_SCOPE, i::SLOPPY }, in TEST() 936 " more;", i::WITH_SCOPE, i::SLOPPY }, in TEST() 939 " more;", i::WITH_SCOPE, i::SLOPPY }, in TEST()
|
/external/chromium_org/v8/src/ |
D | scopes.h | 266 bool is_with_scope() const { return scope_type_ == WITH_SCOPE; } in is_with_scope()
|
D | preparser.cc | 587 PreParserScope with_scope(scope_, WITH_SCOPE); in ParseWithStatement() 762 PreParserScope with_scope(scope_, WITH_SCOPE); in ParseTryStatement()
|
D | globals.h | 644 WITH_SCOPE // The scope introduced by with. enumerator
|
D | scopes.cc | 200 WITH_SCOPE, in DeserializeScopeChain() 764 case WITH_SCOPE: return "with"; in Header()
|
D | scopeinfo.cc | 171 scope_type() == WITH_SCOPE || in ContextLength()
|
D | parser.cc | 2519 Scope* with_scope = NewScope(scope_, WITH_SCOPE); in ParseWithStatement()
|
D | runtime.cc | 12068 case WITH_SCOPE: in Type()
|