Home
last modified time | relevance | path

Searched refs:ScopeType (Results 1 – 25 of 32) sorted by relevance

12

/external/chromium_org/v8/test/mjsunit/
Ddebug-scopes.js112 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 …]
Ddebug-function-scopes.js46 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 …]
Ddebug-evaluate-locals-optimized.js84 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());
Ddebug-evaluate-locals-optimized-double.js93 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/
Ddebug-blockscopes.js91 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 …]
Ddebug-function-scopes.js48 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/
Dgenerators-debug-scopes.js79 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/
Ddebug-blockscopes.js89 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/
DScopeChainSidebarPane.js78 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/
Dscopes.h75 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,
Dd8.js84 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:
Dparser.h577 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()
Dscopes.cc70 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()
Dglobals.h645 enum ScopeType { enum
Dmirror-debugger.js194 var ScopeType = { Global: 0, variable
2251 var transient = this.scopeType() == ScopeType.Local ||
2252 this.scopeType() == ScopeType.Closure;
Dpreparser.h941 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()
Dscopeinfo.cc137 ScopeType ScopeInfo::scope_type() { in scope_type()
Dpreparser.cc832 ScopeType outer_scope_type = scope_->type(); in ParseFunctionLiteral()
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DDebuggerScript.js508 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/
DMachineCSE.cpp75 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/
DObjectPropertiesSection.js654 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/
DExprCXX.cpp239 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/
DSemaExprCXX.cpp5419 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 …]
DTreeTransform.h1702 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/
DExprCXX.h1913 TypeSourceInfo *ScopeType; variable
1932 TypeSourceInfo *ScopeType,
1939 Base(nullptr), IsArrow(false), QualifierLoc(), ScopeType(nullptr) { } in CXXPseudoDestructorExpr()
1975 TypeSourceInfo *getScopeTypeInfo() const { return ScopeType; } in getScopeTypeInfo()

12