/external/v8/test/mjsunit/es6/ |
H A D | debug-function-scopes.js | 49 var ScopeType = { Global: 0, 79 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure); 80 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure); 81 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure); 82 CheckScope(mirror.scope(3), { top_level_let: 255 }, ScopeType.Script); 83 CheckScope(mirror.scope(4), {}, ScopeType.Global); 112 CheckScope(mirror.scope(0), { l3: 9 }, ScopeType.Block); 113 CheckScope(mirror.scope(1), { l2: 7 }, ScopeType.Block); 114 CheckScope(mirror.scope(2), { v1:3, l0: 0, v3: 5, v6: 11 }, ScopeType.Closure); 115 CheckScope(mirror.scope(3), { top_level_let: 255 }, ScopeType [all...] |
/external/v8/test/mjsunit/ |
H A D | debug-function-scopes.js | 45 var ScopeType = debug.ScopeType; variable 67 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure); 68 CheckScope(mirror.scope(1), { w: 5, v: "Capybara" }, ScopeType.With); 69 CheckScope(mirror.scope(2), { z: 22 }, ScopeType.Closure); 70 CheckScope(mirror.scope(3), { x: 5 }, ScopeType.Closure); 71 CheckScope(mirror.scope(4), {}, ScopeType.Script); 72 CheckScope(mirror.scope(5), {}, ScopeType.Global); 80 CheckScope(mirror.scope(0), {}, ScopeType.Script); 81 CheckScope(mirror.scope(1), {}, ScopeType [all...] |
/external/v8/test/mjsunit/regress/ |
H A D | regress-crbug-582051.js | 20 var ScopeType = debug.ScopeType; variable 26 var expectation = [ ScopeType.Block, 27 ScopeType.Local, 28 ScopeType.Script, 29 ScopeType.Global ];
|
/external/v8/src/debug/ |
H A D | debug-scopes.h | 20 enum ScopeType { enum in class:v8::internal::ScopeIterator 61 ScopeType Type();
|
H A D | mirrors.js | 259 var ScopeType = { Global: 0, 2287 var transient = this.scopeType() == ScopeType.Local || 2288 this.scopeType() == ScopeType.Closure || 2289 this.scopeType() == ScopeType.Script; 3010 "ScopeType", ScopeType,
|
/external/llvm/lib/CodeGen/ |
H A D | MachineCSE.cpp | 77 typedef ScopedHTType::ScopeTy ScopeType; typedef in class:__anon12229::MachineCSE 78 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap; 438 ScopeType *Scope = new ScopeType(VNT); 444 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
|
/external/clang/lib/AST/ |
H A D | ExprCXX.cpp | 237 NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType, 250 (ScopeType && 251 ScopeType->getType()->isInstantiationDependentType()) || 260 (ScopeType && 261 ScopeType->getType()->containsUnexpandedParameterPack()) || 267 ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc), 235 CXXPseudoDestructorExpr(const ASTContext &Context, Expr *Base, bool isArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType, SourceLocation ColonColonLoc, SourceLocation TildeLoc, PseudoDestructorTypeStorage DestroyedType) argument
|
H A D | ItaniumMangle.cpp | 3002 QualType ScopeType; local
|
/external/v8/src/ |
H A D | globals.h | 840 enum ScopeType { enum in namespace:v8::internal
|
/external/clang/lib/Sema/ |
H A D | SemaExprCXX.cpp | 5885 QualType ScopeType = ScopeTypeInfo->getType(); local 5886 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() && 5887 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) { 5891 << ObjectType << ScopeType << Base->getSourceRange() 5894 ScopeType = QualType(); 5999 QualType ScopeType; local 6015 ScopeType = QualType(); 6017 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo); 6032 ScopeType = QualType(); 6034 ScopeType [all...] |
H A D | TreeTransform.h | 1939 TypeSourceInfo *ScopeType, 11519 TypeSourceInfo *ScopeType, 11531 Base, OperatorLoc, isArrow ? tok::arrow : tok::period, SS, ScopeType, 11543 if (ScopeType) { 11544 if (!ScopeType->getType()->getAs<TagType>()) { 11545 getSema().Diag(ScopeType->getTypeLoc().getBeginLoc(), 11547 << ScopeType->getType() << getSema().getLangOpts().CPlusPlus; 11550 SS.Extend(SemaRef.Context, SourceLocation(), ScopeType->getTypeLoc(), 11515 RebuildCXXPseudoDestructorExpr(Expr *Base, SourceLocation OperatorLoc, bool isArrow, CXXScopeSpec &SS, TypeSourceInfo *ScopeType, SourceLocation CCLoc, SourceLocation TildeLoc, PseudoDestructorTypeStorage Destroyed) argument
|