/external/chromium_org/v8/test/mjsunit/ |
D | debug-scopes.js | 112 if (scopes[i] == debug.ScopeType.Global) { 132 if (scopes[i] == debug.ScopeType.Local || 133 scopes[i] == debug.ScopeType.Closure) { 195 if (scope.scopeType() == debug.ScopeType.Local || 196 scope.scopeType() == debug.ScopeType.Closure) { 217 CheckScopeChain([debug.ScopeType.Local, 218 debug.ScopeType.Global], exec_state); 233 CheckScopeChain([debug.ScopeType.Local, 234 debug.ScopeType.Global], exec_state); 250 CheckScopeChain([debug.ScopeType.Local, [all …]
|
D | debug-function-scopes.js | 46 var ScopeType = { Global: 0, variable 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); 106 CheckScope(mirror.scope(2), {}, ScopeType.Global); [all …]
|
D | 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());
|
D | 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());
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
D | debug-blockscopes.js | 91 if (scopes[i] == debug.ScopeType.Global) { 110 if (scopes[i] == debug.ScopeType.Local || 111 scopes[i] == debug.ScopeType.Closure) { 175 if (scope.scopeType() == debug.ScopeType.Local || 176 scope.scopeType() == debug.ScopeType.Closure) { 199 CheckScopeChain([debug.ScopeType.Local, 200 debug.ScopeType.Global], exec_state); 217 CheckScopeChain([debug.ScopeType.Local, 218 debug.ScopeType.Global], exec_state); 234 CheckScopeChain([debug.ScopeType.Local, [all …]
|
D | debug-function-scopes.js | 48 var ScopeType = { Global: 0, variable 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); 115 CheckScope(mirror.scope(4), {}, ScopeType.Global);
|
/external/chromium_org/v8/test/mjsunit/es6/ |
D | generators-debug-scopes.js | 79 if (scopes[i] == debug.ScopeType.Global) { 99 if (scopes[i] == debug.ScopeType.Local || 100 scopes[i] == debug.ScopeType.Closure) { 161 if (scope.scopeType() == debug.ScopeType.Local || 162 scope.scopeType() == debug.ScopeType.Closure) { 180 CheckScopeChain([debug.ScopeType.Local, 181 debug.ScopeType.Global], exec_state); 190 CheckScopeChain([debug.ScopeType.Local, 191 debug.ScopeType.Global], exec_state); 200 CheckScopeChain([debug.ScopeType.Local, [all …]
|
/external/chromium_org/v8/test/mjsunit/bugs/harmony/ |
D | debug-blockscopes.js | 89 if (scopes[i] == debug.ScopeType.Global) { 108 if (scopes[i] == debug.ScopeType.Local || 109 scopes[i] == debug.ScopeType.Closure) { 173 if (scope.scopeType() == debug.ScopeType.Local || 174 scope.scopeType() == debug.ScopeType.Closure) { 207 CheckScopeChain([debug.ScopeType.Local, 208 debug.ScopeType.Block, 209 debug.ScopeType.Closure, 210 debug.ScopeType.Global], exec_state);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
D | ScopeChainSidebarPane.js | 78 case DebuggerAgent.ScopeType.Local: 99 case DebuggerAgent.ScopeType.Closure: 105 case DebuggerAgent.ScopeType.Catch: 110 case DebuggerAgent.ScopeType.With: 114 case DebuggerAgent.ScopeType.Global: 133 if (scope.type === DebuggerAgent.ScopeType.Global) 135 …else if (!foundLocalScope || scope.type === DebuggerAgent.ScopeType.Local || title in this._expand…
|
/external/chromium_org/v8/src/ |
D | scopes.h | 75 Scope(Scope* outer_scope, ScopeType scope_type, 299 ScopeType scope_type() const { return scope_type_; } in scope_type() 427 ScopeType scope_type_; 604 Scope(Scope* inner_scope, ScopeType type, Handle<ScopeInfo> scope_info, 619 void SetDefaults(ScopeType type,
|
D | d8.js | 84 Debug.ScopeType = { Global: 0, 1288 case Debug.ScopeType.Global: 1292 case Debug.ScopeType.Local: 1295 case Debug.ScopeType.With: 1299 case Debug.ScopeType.Catch: 1303 case Debug.ScopeType.Closure:
|
D | parser.h | 577 V8_INLINE Scope* NewScope(Scope* parent_scope, ScopeType scope_type); 811 Scope* NewScope(Scope* parent, ScopeType type); 863 Scope* ParserTraits::NewScope(Scope* parent_scope, ScopeType scope_type) { in NewScope()
|
D | scopes.cc | 70 Scope::Scope(Scope* outer_scope, ScopeType scope_type, in Scope() 94 ScopeType scope_type, in Scope() 149 void Scope::SetDefaults(ScopeType scope_type, in SetDefaults() 773 static const char* Header(ScopeType scope_type) { in Header()
|
D | globals.h | 645 enum ScopeType { enum
|
D | mirror-debugger.js | 194 var ScopeType = { Global: 0, variable 2251 var transient = this.scopeType() == ScopeType.Local || 2252 this.scopeType() == ScopeType.Closure;
|
D | preparser.h | 941 explicit PreParserScope(PreParserScope* outer_scope, ScopeType scope_type, 947 ScopeType type() { return scope_type_; } in type() 966 ScopeType scope_type_; 1252 PreParserScope NewScope(PreParserScope* outer_scope, ScopeType scope_type) { in NewScope()
|
D | scopeinfo.cc | 137 ScopeType ScopeInfo::scope_type() { in scope_type()
|
D | preparser.cc | 832 ScopeType outer_scope_type = scope_->type(); in ParseFunctionLiteral()
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | DebuggerScript.js | 508 case ScopeType.Local: 509 case ScopeType.Closure: 510 case ScopeType.Catch: 524 case ScopeType.Global: 525 case ScopeType.With: 528 case ScopeType.Block:
|
/external/llvm/lib/CodeGen/ |
D | MachineCSE.cpp | 75 typedef ScopedHTType::ScopeTy ScopeType; typedef in __anond2e4af9d0111::MachineCSE 76 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap; 430 ScopeType *Scope = new ScopeType(VNT); in EnterScope() 436 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB); in ExitScope()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
D | ObjectPropertiesSection.js | 654 case DebuggerAgent.ScopeType.Local: 659 case DebuggerAgent.ScopeType.Closure: 663 case DebuggerAgent.ScopeType.Catch: 667 case DebuggerAgent.ScopeType.With: 671 case DebuggerAgent.ScopeType.Global:
|
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 239 NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType, in CXXPseudoDestructorExpr() argument 255 (ScopeType && in CXXPseudoDestructorExpr() 256 ScopeType->getType()->isInstantiationDependentType()) || in CXXPseudoDestructorExpr() 265 (ScopeType && in CXXPseudoDestructorExpr() 266 ScopeType->getType()->containsUnexpandedParameterPack()) || in CXXPseudoDestructorExpr() 272 ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc), in CXXPseudoDestructorExpr()
|
/external/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 5419 QualType ScopeType = ScopeTypeInfo->getType(); in BuildPseudoDestructorExpr() local 5420 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() && in BuildPseudoDestructorExpr() 5421 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) { in BuildPseudoDestructorExpr() 5425 << ObjectType << ScopeType << Base->getSourceRange() in BuildPseudoDestructorExpr() 5428 ScopeType = QualType(); in BuildPseudoDestructorExpr() 5537 QualType ScopeType; in ActOnPseudoDestructorExpr() local 5553 ScopeType = QualType(); in ActOnPseudoDestructorExpr() 5555 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo); in ActOnPseudoDestructorExpr() 5570 ScopeType = QualType(); in ActOnPseudoDestructorExpr() 5572 ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo); in ActOnPseudoDestructorExpr() [all …]
|
D | TreeTransform.h | 1702 TypeSourceInfo *ScopeType, 10159 TypeSourceInfo *ScopeType, in RebuildCXXPseudoDestructorExpr() argument 10172 SS, ScopeType, CCLoc, TildeLoc, in RebuildCXXPseudoDestructorExpr() 10185 if (ScopeType) in RebuildCXXPseudoDestructorExpr() 10187 ScopeType->getTypeLoc(), CCLoc); in RebuildCXXPseudoDestructorExpr()
|
/external/clang/include/clang/AST/ |
D | ExprCXX.h | 1913 TypeSourceInfo *ScopeType; variable 1932 TypeSourceInfo *ScopeType, 1939 Base(nullptr), IsArrow(false), QualifierLoc(), ScopeType(nullptr) { } in CXXPseudoDestructorExpr() 1975 TypeSourceInfo *getScopeTypeInfo() const { return ScopeType; } in getScopeTypeInfo()
|