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

1 2

  /external/chromium_org/v8/test/mjsunit/
debug-scopes.js 85 assertEquals(scopes[i], scope.scopeType());
88 if (scopes[i] == debug.ScopeType.Global) {
107 if (scopes[i] == debug.ScopeType.Local ||
108 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) {
196 CheckScopeChain([debug.ScopeType.Local
    [all...]
debug-function-scopes.js 34 assertEquals(expected_scope_type, scope_mirror.scopeType());
46 var ScopeType = { Global: 0,
73 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
74 CheckScope(mirror.scope(1), { w: 5, v: "Capybara" }, ScopeType.With);
75 CheckScope(mirror.scope(2), { y: 17, z: 22 }, ScopeType.Closure);
76 CheckScope(mirror.scope(3), { x: 5 }, ScopeType.Closure);
77 CheckScope(mirror.scope(4), {}, ScopeType.Global);
85 CheckScope(mirror.scope(0), {}, ScopeType.Global);
104 CheckScope(mirror.scope(0), { visible2: 20 }, ScopeType.Closure);
105 CheckScope(mirror.scope(1), { visible1: 10 }, ScopeType.Closure)
    [all...]
debug-evaluate-locals-optimized-double.js 93 assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType());
94 assertEquals(debug.ScopeType.Global, frame.scope(1).scopeType());
138 assertEquals(debug.ScopeType.Global, frame.scope(0).scopeType());
debug-evaluate-locals-optimized.js 84 assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType());
85 assertEquals(debug.ScopeType.Global, frame.scope(1).scopeType());
129 assertEquals(debug.ScopeType.Global, frame.scope(0).scopeType());
  /external/v8/test/mjsunit/
debug-scopes.js 85 assertEquals(scopes[i], scope.scopeType());
88 if (scopes[i] == debug.ScopeType.Global) {
107 if (scopes[i] == debug.ScopeType.Local ||
108 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) {
196 CheckScopeChain([debug.ScopeType.Local
    [all...]
debug-evaluate-locals-optimized-double.js 86 assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType());
87 assertEquals(debug.ScopeType.Global, frame.scope(1).scopeType());
128 assertEquals(debug.ScopeType.Global, frame.scope(0).scopeType());
debug-evaluate-locals-optimized.js 76 assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType());
77 assertEquals(debug.ScopeType.Global, frame.scope(1).scopeType());
118 assertEquals(debug.ScopeType.Global, frame.scope(0).scopeType());
  /external/chromium_org/v8/test/mjsunit/harmony/
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.Closure) {
182 assertEquals(scope.scopeType(), response.body.type);
184 if (scope.scopeType() == debug.ScopeType.Local ||
185 scope.scopeType() == debug.ScopeType.Closure) {
208 CheckScopeChain([debug.ScopeType.Local
    [all...]
debug-function-scopes.js 36 assertEquals(expected_scope_type, scope_mirror.scopeType());
48 var ScopeType = { Global: 0,
77 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
78 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure);
79 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure);
80 CheckScope(mirror.scope(3), {}, ScopeType.Global);
110 CheckScope(mirror.scope(0), { l4: 11 }, ScopeType.Block);
112 CheckScope(mirror.scope(1), { l3: 9 }, ScopeType.Block);
113 CheckScope(mirror.scope(2), { l1: 6, l2: 7 }, ScopeType.Block);
114 CheckScope(mirror.scope(3), { v1:3, l0: 0, v3: 5, v6: 11 }, ScopeType.Closure)
    [all...]
  /external/v8/test/mjsunit/harmony/
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.Closure) {
182 assertEquals(scope.scopeType(), response.body.type);
184 if (scope.scopeType() == debug.ScopeType.Local ||
185 scope.scopeType() == debug.ScopeType.Closure) {
208 CheckScopeChain([debug.ScopeType.Local
    [all...]
  /external/v8/src/
scopes.h 90 Scope(Scope* outer_scope, ScopeType type);
306 ScopeType type() const { return type_; }
428 ScopeType type_;
591 Scope(Scope* inner_scope, ScopeType type, Handle<ScopeInfo> scope_info);
603 void SetDefaults(ScopeType type,
preparser.h 207 enum ScopeType {
446 Scope(Scope** variable, ScopeType type)
460 ScopeType type() { return type_; }
479 const ScopeType type_;
scopes.cc 102 Scope::Scope(Scope* outer_scope, ScopeType type)
124 ScopeType type,
170 void Scope::SetDefaults(ScopeType type,
718 static const char* Header(ScopeType type) {
    [all...]
v8globals.h 461 enum ScopeType {
scopeinfo.cc 155 ScopeType ScopeInfo::Type() {
  /external/chromium_org/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 86 assertEquals(scopes[i], scope.scopeType());
89 if (scopes[i] == debug.ScopeType.Global) {
108 if (scopes[i] == debug.ScopeType.Local ||
109 scopes[i] == debug.ScopeType.Closure) {
179 assertEquals(scope.scopeType(), response.body.type);
181 if (scope.scopeType() == debug.ScopeType.Local ||
182 scope.scopeType() == debug.ScopeType.Closure) {
215 CheckScopeChain([debug.ScopeType.Local
    [all...]
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 86 assertEquals(scopes[i], scope.scopeType());
89 if (scopes[i] == debug.ScopeType.Global) {
108 if (scopes[i] == debug.ScopeType.Local ||
109 scopes[i] == debug.ScopeType.Closure) {
179 assertEquals(scope.scopeType(), response.body.type);
181 if (scope.scopeType() == debug.ScopeType.Local ||
182 scope.scopeType() == debug.ScopeType.Closure) {
215 CheckScopeChain([debug.ScopeType.Local
    [all...]
  /external/chromium_org/v8/src/
scopes.h 100 Scope(Scope* outer_scope, ScopeType scope_type, Zone* zone);
324 ScopeType scope_type() const { return scope_type_; }
452 ScopeType scope_type_;
625 Scope(Scope* inner_scope, ScopeType type, Handle<ScopeInfo> scope_info,
638 void SetDefaults(ScopeType type,
preparser.h 235 enum ScopeType {
480 Scope(Scope** variable, ScopeType type)
495 ScopeType type() { return type_; }
527 const ScopeType type_;
v8globals.h 470 enum ScopeType {
scopes.cc 107 Scope::Scope(Scope* outer_scope, ScopeType scope_type, Zone* zone)
129 ScopeType scope_type,
180 void Scope::SetDefaults(ScopeType scope_type,
783 static const char* Header(ScopeType scope_type) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DebuggerScript.js 75 type: scopeMirror.scopeType(),
328 var scopeType = [];
331 scopeType.push(scopeMirror.scopeType());
379 "scopeType": scopeType,
390 switch (scopeMirror.scopeType()) {
391 case ScopeType.Local:
392 case ScopeType.Closure:
393 case ScopeType.Catch
    [all...]
  /external/llvm/lib/CodeGen/
MachineCSE.cpp 74 typedef ScopedHTType::ScopeTy ScopeType;
75 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
422 ScopeType *Scope = new ScopeType(VNT);
428 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
  /external/clang/lib/AST/
ExprCXX.cpp 180 NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType,
194 (ScopeType &&
195 ScopeType->getType()->isInstantiationDependentType()) ||
204 (ScopeType &&
205 ScopeType->getType()->containsUnexpandedParameterPack()) ||
211 ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc),
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]

Completed in 5210 milliseconds

1 2