Searched defs:ScopeType (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/v8/test/mjsunit/
H A Ddebug-function-scopes.js46 var ScopeType = { Global: 0,
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
[all...]
/external/chromium_org/v8/test/mjsunit/harmony/
H A Ddebug-function-scopes.js48 var ScopeType = { Global: 0,
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
[all...]
/external/chromium_org/v8/src/
H A Dd8.js107 Debug.ScopeType = { Global: 0,
1315 case Debug.ScopeType.Global:
1319 case Debug.ScopeType.Local:
1322 case Debug.ScopeType.With:
1326 case Debug.ScopeType.Catch:
1330 case Debug.ScopeType.Closure:
H A Dmirror-debugger.js193 var ScopeType = { Global: 0,
1958 var transient = this.scopeType() == ScopeType.Local ||
1959 this.scopeType() == ScopeType.Closure;
H A Dpreparser.h276 enum ScopeType { enum in class:v8::internal::PreParser
521 Scope(Scope** variable, ScopeType type)
536 ScopeType type() { return type_; }
568 const ScopeType type_;
H A Dv8globals.h455 enum ScopeType { enum in namespace:v8::internal
/external/v8/src/
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 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 Dv8globals.h461 enum ScopeType { enum in namespace:v8::internal
/external/llvm/lib/CodeGen/
H A DMachineCSE.cpp74 typedef ScopedHTType::ScopeTy ScopeType; typedef in class:__anon22091::MachineCSE
75 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
422 ScopeType *Scope = new ScopeType(VNT);
428 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
/external/clang/lib/AST/
H A DExprCXX.cpp180 NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType,
194 (ScopeType &&
195 ScopeType->getType()->isInstantiationDependentType()) ||
204 (ScopeType &&
205 ScopeType->getType()->containsUnexpandedParameterPack()) ||
211 ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc),
178 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.cpp5294 QualType ScopeType = ScopeTypeInfo->getType(); local
5295 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() &&
5296 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) {
5300 << ObjectType << ScopeType << Base->getSourceRange()
5303 ScopeType = QualType();
5412 QualType ScopeType; local
5428 ScopeType = QualType();
5430 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo);
5445 ScopeType = QualType();
5447 ScopeType
[all...]
H A DTreeTransform.h1508 TypeSourceInfo *ScopeType,
9599 TypeSourceInfo *ScopeType,
9612 SS, ScopeType, CCLoc, TildeLoc,
9625 if (ScopeType)
9627 ScopeType->getTypeLoc(), CCLoc);
9595 RebuildCXXPseudoDestructorExpr(Expr *Base, SourceLocation OperatorLoc, bool isArrow, CXXScopeSpec &SS, TypeSourceInfo *ScopeType, SourceLocation CCLoc, SourceLocation TildeLoc, PseudoDestructorTypeStorage Destroyed) argument

Completed in 226 milliseconds