HomeSort by relevance Sort by last modified time
    Searched refs:ScopeType (Results 1 - 25 of 26) sorted by null

1 2

  /external/v8/test/mjsunit/
debug-scopes.js 85 assertEquals(scopes[i], scope.scopeType());
88 if (scopes[i] == debug.ScopeType.Global) {
107 if (scopes[i] == debug.ScopeType.Local ||
108 scopes[i] == debug.ScopeType.Closure) {
172 assertEquals(scope.scopeType(), response.body.type);
174 if (scope.scopeType() == debug.ScopeType.Local ||
175 scope.scopeType() == debug.ScopeType.Closure) {
196 CheckScopeChain([debug.ScopeType.Local
    [all...]
debug-evaluate-locals-optimized-double.js 86 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());
debug-evaluate-locals-optimized.js 76 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/harmony/
debug-blockscopes.js 89 assertEquals(scopes[i], scope.scopeType());
92 if (scopes[i] == debug.ScopeType.Global) {
111 if (scopes[i] == debug.ScopeType.Local ||
112 scopes[i] == debug.ScopeType.Closure) {
182 assertEquals(scope.scopeType(), response.body.type);
184 if (scope.scopeType() == debug.ScopeType.Local ||
185 scope.scopeType() == debug.ScopeType.Closure) {
208 CheckScopeChain([debug.ScopeType.Local
    [all...]
  /external/v8/src/
scopes.h 90 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,
preparser.h 207 enum ScopeType {
446 Scope(Scope** variable, ScopeType type)
460 ScopeType type() { return type_; }
479 const ScopeType type_;
scopes.cc 102 Scope::Scope(Scope* outer_scope, ScopeType type)
124 ScopeType type,
170 void Scope::SetDefaults(ScopeType type,
718 static const char* Header(ScopeType type) {
    [all...]
v8globals.h 461 enum ScopeType {
scopeinfo.cc 155 ScopeType ScopeInfo::Type() {
parser.h 781 Scope* NewScope(Scope* parent, ScopeType type);
d8.js 107 Debug.ScopeType = { Global: 0,
    [all...]
mirror-debugger.js 194 var ScopeType = { Global: 0,
    [all...]
preparser.cc     [all...]
objects.h     [all...]
parser.cc 410 Scope* Parser::NewScope(Scope* parent, ScopeType type) {
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
DebuggerScript.js 217 var scopeType = [];
223 switch (scopeMirror.scopeType()) {
224 case ScopeType.Local:
225 case ScopeType.Closure:
240 case ScopeType.Global:
241 case ScopeType.With:
242 case ScopeType.Catch:
247 scopeType.push(scopeMirror.scopeType());
262 "scopeType": scopeType
    [all...]
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 86 assertEquals(scopes[i], scope.scopeType());
89 if (scopes[i] == debug.ScopeType.Global) {
108 if (scopes[i] == debug.ScopeType.Local ||
109 scopes[i] == debug.ScopeType.Closure) {
179 assertEquals(scope.scopeType(), response.body.type);
181 if (scope.scopeType() == debug.ScopeType.Local ||
182 scope.scopeType() == debug.ScopeType.Closure) {
215 CheckScopeChain([debug.ScopeType.Local
    [all...]
  /external/llvm/lib/CodeGen/
MachineCSE.cpp 76 typedef ScopedHTType::ScopeTy ScopeType;
77 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
383 ScopeType *Scope = new ScopeType(VNT);
389 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
  /external/clang/lib/AST/
ExprCXX.cpp 154 NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType,
168 (ScopeType &&
169 ScopeType->getType()->isInstantiationDependentType()) ||
178 (ScopeType &&
179 ScopeType->getType()->containsUnexpandedParameterPack()) ||
185 ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc),
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
  /external/v8/test/cctest/
test-parsing.cc 826 i::ScopeType scope_type;
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 908 milliseconds

1 2