Searched refs:scopeDepth (Results 1 – 11 of 11) sorted by relevance
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | LabelScope.h | 43 …LabelScope(Type type, const Identifier* name, int scopeDepth, PassRefPtr<Label> breakTarget, PassR… in LabelScope() argument 47 , m_scopeDepth(scopeDepth) in LabelScope() 66 int scopeDepth() const { return m_scopeDepth; } in scopeDepth() function
|
D | BytecodeGenerator.h | 374 int scopeDepth() { return m_dynamicScopeDepth + m_finallyDepth; } in scopeDepth() function
|
D | BytecodeGenerator.cpp | 669 …LabelScope scope(type, name, scopeDepth(), newLabel(), type == LabelScope::Loop ? newLabel() : Pas… in newLabelScope() 2005 ASSERT(scopeDepth() - targetScopeDepth >= 0); in emitJumpScopes() 2008 size_t scopeDelta = scopeDepth() - targetScopeDepth; in emitJumpScopes()
|
D | NodesCodegen.cpp | 1637 generator.emitJumpScopes(scope->continueTarget(), scope->scopeDepth()); in emitBytecode() 1651 generator.emitJumpScopes(scope->breakTarget(), scope->scopeDepth()); in emitBytecode() 1666 if (generator.scopeDepth()) { in emitBytecode()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | ScopeChain.cpp | 58 int scopeDepth = 0; in localDepth() local 65 ++scopeDepth; in localDepth() 67 return scopeDepth; in localDepth()
|
/external/webkit/Source/JavaScriptCore/bytecode/ |
D | CodeBlock.h | 74 uint32_t scopeDepth; member
|
/external/clang/include/clang/AST/ |
D | Decl.h | 1272 void setScopeInfo(unsigned scopeDepth, unsigned parameterIndex) { in setScopeInfo() argument 1275 ParmVarDeclBits.ScopeDepthOrObjCQuals = scopeDepth; in setScopeInfo() 1276 assert(ParmVarDeclBits.ScopeDepthOrObjCQuals == scopeDepth in setScopeInfo()
|
/external/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 929 unsigned scopeDepth = Record[Idx++]; in VisitParmVarDecl() local 933 assert(scopeDepth == 0); in VisitParmVarDecl() 937 PD->setScopeInfo(scopeDepth, scopeIndex); in VisitParmVarDecl()
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 707 scopeDelta = depth(codeBlock, scopeChain) - handler->scopeDepth; in throwException()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2008-08-10 | 10740 (KJS::CodeGenerator::scopeDepth): 12548 scopes and dynamic scopes ("with"). This means "scopeDepth" is now 12586 (KJS::CodeGenerator::scopeDepth):
|
D | ChangeLog-2009-06-16 | 25635 (JSC::LabelScope::scopeDepth): Simple abstraction for holding everything
|