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

1 2

  /external/v8/test/mjsunit/harmony/
async-function-debug-scopes.js 57 CheckScopeChain([debug.ScopeType.Local,
58 debug.ScopeType.Closure,
59 debug.ScopeType.Script,
60 debug.ScopeType.Global], exec_state);
68 CheckScopeChain([debug.ScopeType.Local,
69 debug.ScopeType.Closure,
70 debug.ScopeType.Script,
71 debug.ScopeType.Global], exec_state);
81 CheckScopeChain([debug.ScopeType.Catch,
82 debug.ScopeType.Local
    [all...]
  /external/v8/test/mjsunit/
debug-evaluate-nested.js 8 ScopeType = debug.ScopeType;
23 assertEquals(scopes.map(s => s.scopeType()), expectation);
32 [ ScopeType.With, ScopeType.Local, ScopeType.Closure,
33 ScopeType.Script, ScopeType.Global ]);
37 [ ScopeType.Eval, ScopeType.With, ScopeType.Closure
    [all...]
debug-eval-scope.js 27 assertEquals([ debug.ScopeType.Eval,
28 debug.ScopeType.Script,
29 debug.ScopeType.Global ],
30 exec_state.frame(0).allScopes().map(s => s.scopeType()));
52 assertEquals([ debug.ScopeType.Local,
53 debug.ScopeType.Script,
54 debug.ScopeType.Global ],
55 exec_state.frame(0).allScopes().map(s => s.scopeType()));
56 assertEquals([ debug.ScopeType.Eval,
57 debug.ScopeType.Script
    [all...]
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) {
208 assertEquals(scope.scopeType(), response.body.type);
210 if (scope.scopeType() == debug.ScopeType.Local |
    [all...]
debug-function-scopes.js 34 assertEquals(expected_scope_type, scope_mirror.scopeType());
45 var ScopeType = debug.ScopeType;
67 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
68 CheckScope(mirror.scope(1), { w: 5, v: "Capybara" }, ScopeType.With);
69 CheckScope(mirror.scope(2), { z: 22 }, ScopeType.Closure);
70 CheckScope(mirror.scope(3), { x: 5 }, ScopeType.Closure);
71 CheckScope(mirror.scope(4), {}, ScopeType.Script);
72 CheckScope(mirror.scope(5), {}, ScopeType.Global);
80 CheckScope(mirror.scope(0), {}, ScopeType.Script)
    [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/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-scope-default-param-with-eval.js 29 assertEquals([ debug.ScopeType.Eval,
30 debug.ScopeType.Block,
31 debug.ScopeType.Closure,
32 debug.ScopeType.Script,
33 debug.ScopeType.Global ],
34 frame.allScopes().map(s => s.scopeType()));
39 assertEquals([ debug.ScopeType.Block,
40 debug.ScopeType.Local,
41 debug.ScopeType.Script,
42 debug.ScopeType.Global ]
    [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) {
173 assertEquals(scope.scopeType(), response.body.type);
175 if (scope.scopeType() == debug.ScopeType.Local ||
176 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/regress/
regress-crbug-582051.js 20 var ScopeType = debug.ScopeType;
26 var expectation = [ ScopeType.Block,
27 ScopeType.Local,
28 ScopeType.Script,
29 ScopeType.Global ];
30 assertEquals(expectation, scopes.map(x => x.scopeType()));
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-4703.js 11 assertEquals([ debug.ScopeType.Block,
12 debug.ScopeType.Local,
13 debug.ScopeType.Script,
14 debug.ScopeType.Global ],
15 all_scopes.map(scope => scope.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());
regress-crbug-609046.js 17 assertEquals([ debug.ScopeType.Block,
18 debug.ScopeType.Script,
19 debug.ScopeType.Global ],
20 exec_state.frame(0).allScopes().map(s => s.scopeType()));
regress-crbug-621361.js 14 assertEquals([ debug.ScopeType.Local,
15 debug.ScopeType.Script,
16 debug.ScopeType.Global],
17 execState.frame().allScopes().map(s => s.scopeType()));
  /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/debug/
debug-scopes.h 20 enum ScopeType {
61 ScopeType Type();
debug-evaluate.cc 155 ScopeIterator::ScopeType scope_type = it.Type();
  /external/v8/src/ast/
scopes.h 91 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
377 ScopeType scope_type() const { return scope_type_; }
596 ScopeType scope_type_;
785 Scope(Zone* zone, Scope* inner_scope, ScopeType type,
809 void SetDefaults(ScopeType type, Scope* outer_scope,
scopes.cc 85 Scope::Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
105 Scope::Scope(Zone* zone, Scope* inner_scope, ScopeType scope_type,
155 void Scope::SetDefaults(ScopeType scope_type, Scope* outer_scope,
825 static const char* Header(ScopeType scope_type, FunctionKind function_kind,
    [all...]
  /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...]

Completed in 361 milliseconds

1 2