/external/webkit/Source/JavaScriptCore/bytecompiler/ |
NodesCodegen.cpp | 1462 RefPtr<LabelScope> scope = generator.newLabelScope(LabelScope::Loop); local 1488 RefPtr<LabelScope> scope = generator.newLabelScope(LabelScope::Loop); local 1517 RefPtr<LabelScope> scope = generator.newLabelScope(LabelScope::Loop); local 1556 RefPtr<LabelScope> scope = generator.newLabelScope(LabelScope::Loop); local 1634 LabelScope* scope = generator.continueTarget(m_ident); local 1648 LabelScope* scope = generator.breakTarget(m_ident); local 1685 RefPtr<RegisterID> scope = generator.newTemporary(); local 1850 RefPtr<LabelScope> scope = generator.newLabelScope(LabelScope::Switch); local 1867 RefPtr<LabelScope> scope = generator.newLabelScope(LabelScope::NamedLabel, &m_name); local [all...] |
/external/v8/src/ |
scopes.h | 51 Variable* Declare(Scope* scope, 61 // The dynamic scope part holds hash maps for the variables that will 63 // are allocated on-demand from Scope::NonLocal to avoid wasting memory 87 class Scope: public ZoneObject { 93 EVAL_SCOPE, // the top-level scope for an 'eval' source 94 FUNCTION_SCOPE, // the top-level scope for a function 95 GLOBAL_SCOPE // the top-level scope for a program or a top-level eval 103 Scope(Scope* outer_scope, Type type) [all...] |
top.cc | 409 HandleScope scope; 480 HandleScope scope(this); 523 HandleScope scope(this); 545 HandleScope scope; local 611 HandleScope scope; local 688 HandleScope scope; local 819 HandleScope scope; local 830 HandleScope scope; local [all...] |
liveedit.cc | 207 // place one in class scope). 599 HandleScope scope; local 673 HandleScope scope; local 707 HandleScope scope; local 718 HandleScope scope; local 734 // Saves full information about a function: its code, its scope info 736 void FunctionInfo(Handle<SharedFunctionInfo> shared, Scope* scope) { 747 Handle<Object> scope_info_list(SerializeFunctionScope(scope)); 754 Object* SerializeFunctionScope(Scope* scope) 838 HandleScope scope; local 1004 HandleScope scope; local 1049 HandleScope scope; local [all...] |
data-flow.cc | 68 Scope* scope = info->scope(); local 69 int size = scope->num_parameters() + scope->num_stack_slots(); 158 return info_->scope()->num_parameters() + slot->index();
|
/external/v8/test/cctest/ |
test-alloc.cc | 108 v8::HandleScope scope; local 130 v8::HandleScope scope; local
|
test-cpu-profiler.cc | 40 v8::HandleScope scope; local 98 i::HandleScope scope; local 317 v8::HandleScope scope; local 363 v8::HandleScope scope; local
|
/external/webkit/Source/WebCore/bindings/v8/ |
WorkerContextExecutionProxy.cpp | 151 v8::Context::Scope scope(context); 198 v8::Context::Scope scope(m_context);
|
V8LazyEventListener.cpp | 93 // Use the outer scope to hold context. 99 v8::Context::Scope scope(v8Context); 103 // Nodes other than the document object, when executing inline event handlers push document, form, and the target node on the scope chain.
|
WorkerScriptDebugServer.cpp | 76 v8::HandleScope scope; local 78 v8::Context::Scope contextScope(debuggerContext);
|
/sdk/lint/libs/lint_api/src/com/android/tools/lint/api/ |
Lint.java | 25 import com.android.tools.lint.detector.api.Scope; 39 private Scope mScope; 47 * @param scope the scope of the analysis; detectors with a wider scope will 50 public Lint(DetectorRegistry registry, ToolContext toolContext, Scope scope) { 54 mScope = scope;
|
/external/webkit/Source/WebCore/inspector/ |
InjectedScriptSource.js | 501 var scope = {}; 502 scope.object = injectedScript._wrapObject(scopeChain[i], "backtrace"); 505 scope.type = scopeTypeNames[scopeType]; 508 scope.this = injectedScript._wrapObject(callFrame.thisObject, "backtrace"); 510 scopeChainProxy.push(scope);
|
/external/webkit/Source/WebCore/editing/ |
TextIterator.cpp | 2389 Element* scope = selectionRoot ? selectionRoot : range->ownerDocument()->documentElement(); local [all...] |
TextIterator.h | 101 static PassRefPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocation, int rangeLength, bool spacesForReplacedElements = false);
|
/external/webkit/Source/JavaScriptCore/parser/ |
JSParser.cpp | 281 struct Scope { 282 Scope(JSGlobalData* globalData, bool isFunction, bool strictMode) 298 Scope(const Scope& rhs) 398 bool collectFreeVariables(Scope* nestedScope, bool shouldTrackClosedVariables) 500 typedef Vector<Scope, 10> ScopeStack; 508 Scope* operator->() { return &m_scopeStack->at(m_index); } 528 AutoPopScopeRef(JSParser* parser, ScopeRef scope) 529 : ScopeRef(scope) 562 m_scopeStack.append(Scope(m_globalData, isFunction, isStrict)) 636 ScopeRef scope = pushScope(); local 655 ScopeRef scope = currentScope(); local [all...] |
/external/clang/lib/CodeGen/ |
CGCleanup.cpp | 14 // control transfers out of a particular scope. This can be 90 /// Push an entry of the given size onto this protected-scope stack. 156 EHCleanupScope *Scope = 169 return Scope->getCleanupBuffer(); 216 EHCatchScope *scope = local 219 return scope; 374 EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.begin()); 376 // As long as Old strictly encloses the scope's enclosing normal 380 Old.strictlyEncloses(Scope.getEnclosingNormalCleanup()); 387 EHCleanupScope &Scope) { 981 EHScope &scope = *EHStack.find(i); local [all...] |
/external/llvm/tools/gold/ |
gold-plugin.cpp | 300 int scope = attrs & LTO_SYMBOL_SCOPE_MASK; local 301 switch (scope) { 313 (*message)(LDPL_ERROR, "Unknown scope attribute: %d", scope);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
JSFunction.cpp | 156 callData.js.scopeChain = scope(); 190 JSObject* prototype = constructEmptyObject(exec, scope()->globalObject->emptyObjectStructure()); 320 constructData.js.scopeChain = scope();
|
/external/v8/src/arm/ |
full-codegen-arm.cc | 136 int locals_count = scope()->num_stack_slots(); 156 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; 172 int num_parameters = scope()->num_parameters(); 174 Slot* slot = scope()->parameter(i)->AsSlot(); 192 Variable* arguments = scope()->arguments(); 203 int offset = scope()->num_parameters() * kPointerSize; 206 __ mov(r1, Operand(Smi::FromInt(scope()->num_parameters()))); 218 Variable* arguments_shadow = scope()->arguments_shadow(); 233 if (scope()->HasIllegalRedeclaration()) { 235 scope()->VisitIllegalRedeclaration(this) [all...] |
/external/v8/src/ia32/ |
full-codegen-ia32.cc | 130 int locals_count = scope()->num_stack_slots(); 144 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; 161 int num_parameters = scope()->num_parameters(); 163 Slot* slot = scope()->parameter(i)->AsSlot(); 181 Variable* arguments = scope()->arguments(); 191 int offset = scope()->num_parameters() * kPointerSize; 195 __ SafePush(Immediate(Smi::FromInt(scope()->num_parameters()))); 205 Variable* arguments_shadow = scope()->arguments_shadow(); 219 if (scope()->HasIllegalRedeclaration()) { 221 scope()->VisitIllegalRedeclaration(this) [all...] |
/external/v8/src/x64/ |
full-codegen-x64.cc | 129 int locals_count = scope()->num_stack_slots(); 143 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; 160 int num_parameters = scope()->num_parameters(); 162 Slot* slot = scope()->parameter(i)->AsSlot(); 181 Variable* arguments = scope()->arguments(); 192 int offset = scope()->num_parameters() * kPointerSize; 196 __ Push(Smi::FromInt(scope()->num_parameters())); 206 Variable* arguments_shadow = scope()->arguments_shadow(); 221 if (scope()->HasIllegalRedeclaration()) { 223 scope()->VisitIllegalRedeclaration(this) [all...] |
/external/webkit/LayoutTests/dom/html/level2/events/ |
dispatchEvent13.js | 103 // bring class variables into function scope 146 // bring class variables into function scope
|
/external/webkit/LayoutTests/dom/xhtml/level2/events/ |
dispatchEvent13.js | 103 // bring class variables into function scope 146 // bring class variables into function scope
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8InjectedScriptHostCustom.cpp | 61 v8::HandleScope scope; local 63 v8::Context::Scope contextScope(context);
|
/external/webkit/Source/WebCore/dom/ |
Attr.cpp | 123 EventQueueScope scope; local
|