Home
last modified time | relevance | path

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

12

/external/v8/test/mjsunit/
Ddebug-scopes.js88 if (scopes[i] == debug.ScopeType.Global) {
107 if (scopes[i] == debug.ScopeType.Local ||
108 scopes[i] == debug.ScopeType.Closure) {
174 if (scope.scopeType() == debug.ScopeType.Local ||
175 scope.scopeType() == debug.ScopeType.Closure) {
196 CheckScopeChain([debug.ScopeType.Local,
197 debug.ScopeType.Global], exec_state);
212 CheckScopeChain([debug.ScopeType.Local,
213 debug.ScopeType.Global], exec_state);
229 CheckScopeChain([debug.ScopeType.Local,
[all …]
Ddebug-evaluate-locals-optimized.js76 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());
Ddebug-evaluate-locals-optimized-double.js86 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());
/external/v8/test/mjsunit/harmony/
Ddebug-blockscopes.js92 if (scopes[i] == debug.ScopeType.Global) {
111 if (scopes[i] == debug.ScopeType.Local ||
112 scopes[i] == debug.ScopeType.Closure) {
184 if (scope.scopeType() == debug.ScopeType.Local ||
185 scope.scopeType() == debug.ScopeType.Closure) {
208 CheckScopeChain([debug.ScopeType.Local,
209 debug.ScopeType.Global], exec_state);
226 CheckScopeChain([debug.ScopeType.Local,
227 debug.ScopeType.Global], exec_state);
243 CheckScopeChain([debug.ScopeType.Local,
[all …]
/external/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) {
181 if (scope.scopeType() == debug.ScopeType.Local ||
182 scope.scopeType() == debug.ScopeType.Closure) {
215 CheckScopeChain([debug.ScopeType.Local,
216 debug.ScopeType.Block,
217 debug.ScopeType.Closure,
218 debug.ScopeType.Global], exec_state);
/external/webkit/Source/WebCore/bindings/v8/
DDebuggerScript.js224 case ScopeType.Local:
225 case ScopeType.Closure:
240 case ScopeType.Global:
241 case ScopeType.With:
242 case ScopeType.Catch:
/external/v8/src/
Dscopes.h90 Scope(Scope* outer_scope, ScopeType type);
306 ScopeType type() const { return type_; } in type()
428 ScopeType type_;
591 Scope(Scope* inner_scope, ScopeType type, Handle<ScopeInfo> scope_info);
603 void SetDefaults(ScopeType type,
Dpreparser.h207 enum ScopeType { enum
446 Scope(Scope** variable, ScopeType type) in Scope()
460 ScopeType type() { return type_; } in type()
479 const ScopeType type_;
Dscopes.cc102 Scope::Scope(Scope* outer_scope, ScopeType type) in Scope()
124 ScopeType type, in Scope()
170 void Scope::SetDefaults(ScopeType type, in SetDefaults()
718 static const char* Header(ScopeType type) { in Header()
Dd8.js107 Debug.ScopeType = { Global: 0,
1673 case Debug.ScopeType.Global:
1677 case Debug.ScopeType.Local:
1680 case Debug.ScopeType.With:
1684 case Debug.ScopeType.Catch:
1688 case Debug.ScopeType.Closure:
Dv8globals.h461 enum ScopeType { enum
Dmirror-debugger.js194 var ScopeType = { Global: 0, variable
1794 var transient = this.scopeType() == ScopeType.Local ||
1795 this.scopeType() == ScopeType.Closure;
Dscopeinfo.cc155 ScopeType ScopeInfo::Type() { in Type()
Dparser.h781 Scope* NewScope(Scope* parent, ScopeType type);
Dpreparser.cc1367 ScopeType outer_scope_type = scope_->type(); in ParseFunctionLiteral()
Dobjects.h3334 ScopeType Type();
3510 class TypeField: public BitField<ScopeType, 0, 3> {};
Druntime.cc10913 enum ScopeType { enum in v8::internal::ScopeIterator
11016 ScopeType scope_type = Type(); in Next()
11035 ScopeType Type() { in Type()
Dparser.cc410 Scope* Parser::NewScope(Scope* parent, ScopeType type) { in NewScope()
/external/llvm/lib/CodeGen/
DMachineCSE.cpp76 typedef ScopedHTType::ScopeTy ScopeType; typedef in __anon909a6d8c0111::MachineCSE
77 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
406 ScopeType *Scope = new ScopeType(VNT); in EnterScope()
412 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB); in ExitScope()
/external/clang/lib/AST/
DExprCXX.cpp163 NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType, in CXXPseudoDestructorExpr() argument
177 (ScopeType && in CXXPseudoDestructorExpr()
178 ScopeType->getType()->isInstantiationDependentType()) || in CXXPseudoDestructorExpr()
187 (ScopeType && in CXXPseudoDestructorExpr()
188 ScopeType->getType()->containsUnexpandedParameterPack()) || in CXXPseudoDestructorExpr()
194 ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc), in CXXPseudoDestructorExpr()
/external/clang/lib/Sema/
DSemaExprCXX.cpp5112 QualType ScopeType = ScopeTypeInfo->getType(); in BuildPseudoDestructorExpr() local
5113 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() && in BuildPseudoDestructorExpr()
5114 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) { in BuildPseudoDestructorExpr()
5118 << ObjectType << ScopeType << Base->getSourceRange() in BuildPseudoDestructorExpr()
5121 ScopeType = QualType(); in BuildPseudoDestructorExpr()
5230 QualType ScopeType; in ActOnPseudoDestructorExpr() local
5246 ScopeType = QualType(); in ActOnPseudoDestructorExpr()
5248 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo); in ActOnPseudoDestructorExpr()
5263 ScopeType = QualType(); in ActOnPseudoDestructorExpr()
5265 ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo); in ActOnPseudoDestructorExpr()
[all …]
DTreeTransform.h1419 TypeSourceInfo *ScopeType,
9227 TypeSourceInfo *ScopeType, in RebuildCXXPseudoDestructorExpr() argument
9240 SS, ScopeType, CCLoc, TildeLoc, in RebuildCXXPseudoDestructorExpr()
9253 if (ScopeType) in RebuildCXXPseudoDestructorExpr()
9255 ScopeType->getTypeLoc(), CCLoc); in RebuildCXXPseudoDestructorExpr()
/external/clang/include/clang/AST/
DExprCXX.h1781 TypeSourceInfo *ScopeType; variable
1800 TypeSourceInfo *ScopeType,
1807 Base(0), IsArrow(false), QualifierLoc(), ScopeType(0) { } in CXXPseudoDestructorExpr()
1843 TypeSourceInfo *getScopeTypeInfo() const { return ScopeType; } in getScopeTypeInfo()
/external/v8/test/cctest/
Dtest-parsing.cc826 i::ScopeType scope_type; in TEST()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1274 E->ScopeType = GetTypeSourceInfo(Record, Idx); in VisitCXXPseudoDestructorExpr()

12