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

12

/external/v8/test/mjsunit/harmony/
H A 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
[all...]
/external/v8/test/mjsunit/
H A 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
[all...]
H A 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());
H A 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());
/external/v8/test/mjsunit/bugs/harmony/
H A 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/
H A DDebuggerScript.js224 case ScopeType.Local:
225 case ScopeType.Closure:
240 case ScopeType.Global:
241 case ScopeType.With:
242 case ScopeType.Catch:
/external/v8/src/
H A Dscopes.h90 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,
H A Dpreparser.h207 enum ScopeType { enum in class:v8::preparser::PreParser
446 Scope(Scope** variable, ScopeType type)
460 ScopeType type() { return type_; }
479 const ScopeType type_;
H A Dscopes.cc102 Scope::Scope(Scope* outer_scope, ScopeType type)
124 ScopeType type,
170 void Scope::SetDefaults(ScopeType type,
718 static const char* Header(ScopeType type) {
H A Dv8globals.h461 enum ScopeType { enum in namespace:v8::internal
H A 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:
H A Dmirror-debugger.js194 var ScopeType = { Global: 0,
1794 var transient = this.scopeType() == ScopeType.Local ||
1795 this.scopeType() == ScopeType.Closure;
H A Dscopeinfo.cc155 ScopeType ScopeInfo::Type() {
H A Dparser.h781 Scope* NewScope(Scope* parent, ScopeType type);
H A Dpreparser.cc1367 ScopeType outer_scope_type = scope_->type();
H A Dobjects.h3334 ScopeType Type();
3510 class TypeField: public BitField<ScopeType, 0, 3> {};
H A Dparser.cc410 Scope* Parser::NewScope(Scope* parent, ScopeType type) {
H A Druntime.cc10913 enum ScopeType {
11016 ScopeType scope_type = Type();
11035 ScopeType Type() {
/external/llvm/lib/CodeGen/
H A DMachineCSE.cpp76 typedef ScopedHTType::ScopeTy ScopeType; typedef in class:__anon8676::MachineCSE
77 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
406 ScopeType *Scope = new ScopeType(VNT);
412 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
/external/clang/lib/AST/
H A DExprCXX.cpp163 NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType,
177 (ScopeType &&
178 ScopeType->getType()->isInstantiationDependentType()) ||
187 (ScopeType &&
188 ScopeType->getType()->containsUnexpandedParameterPack()) ||
194 ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc),
161 CXXPseudoDestructorExpr(ASTContext &Context, Expr *Base, bool isArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType, SourceLocation ColonColonLoc, SourceLocation TildeLoc, PseudoDestructorTypeStorage DestroyedType) argument
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp5112 QualType ScopeType = ScopeTypeInfo->getType(); local
5113 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() &&
5114 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) {
5118 << ObjectType << ScopeType << Base->getSourceRange()
5121 ScopeType = QualType();
5230 QualType ScopeType; local
5246 ScopeType = QualType();
5248 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo);
5263 ScopeType = QualType();
5265 ScopeType
[all...]
H A DTreeTransform.h1419 TypeSourceInfo *ScopeType,
9227 TypeSourceInfo *ScopeType,
9240 SS, ScopeType, CCLoc, TildeLoc,
9253 if (ScopeType)
9255 ScopeType->getTypeLoc(), CCLoc);
9223 RebuildCXXPseudoDestructorExpr(Expr *Base, SourceLocation OperatorLoc, bool isArrow, CXXScopeSpec &SS, TypeSourceInfo *ScopeType, SourceLocation CCLoc, SourceLocation TildeLoc, PseudoDestructorTypeStorage Destroyed) argument
/external/clang/include/clang/AST/
H A DExprCXX.h1781 TypeSourceInfo *ScopeType;
1800 TypeSourceInfo *ScopeType,
1807 Base(0), IsArrow(false), QualifierLoc(), ScopeType(0) { }
1843 TypeSourceInfo *getScopeTypeInfo() const { return ScopeType; }
/external/v8/test/cctest/
H A Dtest-parsing.cc826 i::ScopeType scope_type;
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1274 E->ScopeType = GetTypeSourceInfo(Record, Idx);

Completed in 5272 milliseconds

12