Home
last modified time | relevance | path

Searched refs:WITH_SCOPE (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DJavaScriptCallFrame.idl35 const unsigned short WITH_SCOPE = 2;
DInjectedScriptSource.js1334 const WITH_SCOPE = 2;
1342 scopeTypeNames[WITH_SCOPE] = "with";
/external/chromium_org/v8/test/cctest/
Dtest-parsing.cc928 { " 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/
Dscopes.h266 bool is_with_scope() const { return scope_type_ == WITH_SCOPE; } in is_with_scope()
Dpreparser.cc587 PreParserScope with_scope(scope_, WITH_SCOPE); in ParseWithStatement()
762 PreParserScope with_scope(scope_, WITH_SCOPE); in ParseTryStatement()
Dglobals.h644 WITH_SCOPE // The scope introduced by with. enumerator
Dscopes.cc200 WITH_SCOPE, in DeserializeScopeChain()
764 case WITH_SCOPE: return "with"; in Header()
Dscopeinfo.cc171 scope_type() == WITH_SCOPE || in ContextLength()
Dparser.cc2519 Scope* with_scope = NewScope(scope_, WITH_SCOPE); in ParseWithStatement()
Druntime.cc12068 case WITH_SCOPE: in Type()