HomeSort by relevance Sort by last modified time
    Searched refs:ScopeType (Results 1 - 25 of 31) sorted by null

1 2

  /external/v8/test/mjsunit/es6/
generators-debug-scopes.js 50 assertEquals(scope1.scopeType(), scope2.scopeType());
63 assertEquals(scopes[scopes.length - i - 1], scope.scopeType());
75 assertEquals(scopes[i], scope.scopeType());
79 if (scopes[i] == debug.ScopeType.Global) {
99 if (scopes[i] == debug.ScopeType.Local ||
100 scopes[i] == debug.ScopeType.Script ||
101 scopes[i] == debug.ScopeType.Closure) {
160 assertEquals(scope.scopeType(), response.body.type);
162 if (scope.scopeType() == debug.ScopeType.Local |
    [all...]
debug-blockscopes.js 89 assertEquals(scopes[i], scope.scopeType());
92 if (scopes[i] == debug.ScopeType.Global) {
111 if (scopes[i] == debug.ScopeType.Local ||
112 scopes[i] == debug.ScopeType.Script ||
113 scopes[i] == debug.ScopeType.Closure) {
175 assertEquals(scope.scopeType(), response.body.type);
177 if (scope.scopeType() == debug.ScopeType.Local ||
178 scope.scopeType() == debug.ScopeType.Closure)
    [all...]
debug-function-scopes.js 37 assertEquals(expected_scope_type, scope_mirror.scopeType());
49 var ScopeType = { Global: 0,
79 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
80 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure);
81 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure);
82 CheckScope(mirror.scope(3), { top_level_let: 255 }, ScopeType.Script);
83 CheckScope(mirror.scope(4), {}, ScopeType.Global);
112 CheckScope(mirror.scope(0), { l3: 9 }, ScopeType.Block);
113 CheckScope(mirror.scope(1), { l2: 7 }, ScopeType.Block);
114 CheckScope(mirror.scope(2), { v1:3, l0: 0, v3: 5, v6: 11 }, ScopeType.Closure)
    [all...]
  /external/v8/test/mjsunit/
debug-scopes.js 81 assertEquals(scope1.scopeType(), scope2.scopeType());
95 assertEquals(scopes[scopes.length - i - 1], scope.scopeType());
108 assertEquals(scopes[i], scope.scopeType());
112 if (scopes[i] == debug.ScopeType.Global) {
132 if (scopes[i] == debug.ScopeType.Local ||
133 scopes[i] == debug.ScopeType.Script ||
134 scopes[i] == debug.ScopeType.Closure) {
210 assertEquals(scope.scopeType(), response.body.type);
212 if (scope.scopeType() == debug.ScopeType.Local |
    [all...]
debug-function-scopes.js 34 assertEquals(expected_scope_type, scope_mirror.scopeType());
46 var ScopeType = { Global: 0,
74 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
75 CheckScope(mirror.scope(1), { w: 5, v: "Capybara" }, ScopeType.With);
76 CheckScope(mirror.scope(2), { y: 17, z: 22 }, ScopeType.Closure);
77 CheckScope(mirror.scope(3), { x: 5 }, ScopeType.Closure);
78 CheckScope(mirror.scope(4), {}, ScopeType.Script);
79 CheckScope(mirror.scope(5), {}, ScopeType.Global);
87 CheckScope(mirror.scope(0), {}, ScopeType.Script);
88 CheckScope(mirror.scope(1), {}, ScopeType.Global)
    [all...]
debug-evaluate-locals-optimized-double.js 93 assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType());
94 assertEquals(debug.ScopeType.Script, frame.scope(1).scopeType());
95 assertEquals(debug.ScopeType.Global, frame.scope(2).scopeType());
139 assertEquals(debug.ScopeType.Script, frame.scope(0).scopeType());
140 assertEquals(debug.ScopeType.Global, frame.scope(1).scopeType());
    [all...]
debug-evaluate-locals-optimized.js 84 assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType());
85 assertEquals(debug.ScopeType.Script, frame.scope(1).scopeType());
86 assertEquals(debug.ScopeType.Global, frame.scope(2).scopeType());
130 assertEquals(debug.ScopeType.Script, frame.scope(0).scopeType());
131 assertEquals(debug.ScopeType.Global, frame.scope(1).scopeType());
    [all...]
  /external/v8/test/mjsunit/regress/
regress-4309-3.js 16 assertEquals(debug.ScopeType.With, scopes[0].scopeType());
17 assertEquals(debug.ScopeType.Local, scopes[1].scopeType());
18 assertEquals(debug.ScopeType.Script, scopes[2].scopeType());
19 assertEquals(debug.ScopeType.Global, scopes[3].scopeType());
regress-4309-1.js 16 assertEquals(debug.ScopeType.Local, scopes[0].scopeType());
17 assertEquals(debug.ScopeType.Script, scopes[1].scopeType());
18 assertEquals(debug.ScopeType.Global, scopes[2].scopeType());
  /external/v8/src/debug/
debug-scopes.h 20 enum ScopeType {
59 ScopeType Type();
debug-scopes.cc 149 ScopeType scope_type = Type();
182 ScopeIterator::ScopeType ScopeIterator::Type() {
266 ScopeType type = Type();
debug-evaluate.cc 162 ScopeIterator::ScopeType scope_type = it.Type();
mirrors.js 259 var ScopeType = { Global: 0,
    [all...]
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 87 assertEquals(scopes[i], scope.scopeType());
90 if (scopes[i] == debug.ScopeType.Global) {
109 if (scopes[i] == debug.ScopeType.Local ||
110 scopes[i] == debug.ScopeType.Closure) {
172 assertEquals(scope.scopeType(), response.body.type);
174 if (scope.scopeType() == debug.ScopeType.Local ||
175 scope.scopeType() == debug.ScopeType.Closure) {
208 CheckScopeChain([debug.ScopeType.Local
    [all...]
  /external/v8/src/ast/
scopes.h 92 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
390 ScopeType scope_type() const { return scope_type_; }
611 ScopeType scope_type_;
808 Scope(Zone* zone, Scope* inner_scope, ScopeType type,
    [all...]
scopes.cc 93 Scope::Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
116 Scope::Scope(Zone* zone, Scope* inner_scope, ScopeType scope_type,
169 void Scope::SetDefaults(ScopeType scope_type, Scope* outer_scope,
894 static const char* Header(ScopeType scope_type, FunctionKind function_kind,
    [all...]
scopeinfo.cc 302 ScopeType ScopeInfo::scope_type() {
  /external/llvm/lib/CodeGen/
MachineCSE.cpp 77 typedef ScopedHTType::ScopeTy ScopeType;
78 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
438 ScopeType *Scope = new ScopeType(VNT);
444 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dhcpsapi.h 89 DHCP_OPTION_SCOPE_TYPE ScopeType;
307 DHCP_OPTION_SCOPE_TYPE6 ScopeType;
  /external/clang/lib/AST/
ExprCXX.cpp 237 NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType,
250 (ScopeType &&
251 ScopeType->getType()->isInstantiationDependentType()) ||
260 (ScopeType &&
261 ScopeType->getType()->containsUnexpandedParameterPack()) ||
267 ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc),
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
TreeTransform.h     [all...]
  /external/v8/src/
globals.h 766 enum ScopeType {
  /external/v8/src/parsing/
parser.h 541 V8_INLINE Scope* NewScope(Scope* parent_scope, ScopeType scope_type,
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]

Completed in 859 milliseconds

1 2