HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 476 - 500 of 1068) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 577 size_t Internals::numberOfScopedHTMLStyleChildren(const Node* scope, ExceptionState& es) const
579 if (scope && (scope->isElementNode() || scope->isShadowRoot()))
580 return scope->numberOfScopedHTMLStyleChildren();
    [all...]
Internals.h 164 PassRefPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocation, int rangeLength, ExceptionState&);
165 unsigned locationFromRange(Element* scope, const Range*, ExceptionState&);
166 unsigned lengthFromRange(Element* scope, const Range*, ExceptionState&);
  /external/chromium_org/v8/src/arm/
builtins-arm.cc 266 FrameScope scope(masm, StackFrame::INTERNAL);
286 FrameScope scope(masm, StackFrame::INTERNAL);
310 FrameScope scope(masm, StackFrame::INTERNAL);
338 FrameScope scope(masm, StackFrame::INTERNAL);
377 FrameScope scope(masm, StackFrame::CONSTRUCT);
726 FrameScope scope(masm, StackFrame::INTERNAL);
800 FrameScope scope(masm, StackFrame::INTERNAL);
829 FrameScope scope(masm, StackFrame::INTERNAL);
866 FrameScope scope(masm, StackFrame::MANUAL);
890 FrameScope scope(masm, StackFrame::INTERNAL)
    [all...]
  /external/chromium_org/v8/src/mips/
builtins-mips.cc 274 FrameScope scope(masm, StackFrame::INTERNAL);
294 FrameScope scope(masm, StackFrame::INTERNAL);
318 FrameScope scope(masm, StackFrame::INTERNAL);
346 FrameScope scope(masm, StackFrame::INTERNAL);
392 FrameScope scope(masm, StackFrame::CONSTRUCT);
749 FrameScope scope(masm, StackFrame::INTERNAL);
820 FrameScope scope(masm, StackFrame::INTERNAL);
850 FrameScope scope(masm, StackFrame::INTERNAL);
896 FrameScope scope(masm, StackFrame::MANUAL);
920 FrameScope scope(masm, StackFrame::INTERNAL)
    [all...]
  /external/v8/src/
liveedit.cc 207 // place one in class scope).
690 HandleScope scope; local
764 HandleScope scope; local
798 HandleScope scope; local
809 HandleScope scope; local
825 // Saves full information about a function: its code, its scope info
827 void FunctionInfo(Handle<SharedFunctionInfo> shared, Scope* scope) {
838 Handle<Object> scope_info_list(SerializeFunctionScope(scope));
845 Object* SerializeFunctionScope(Scope* scope)
910 HandleScope scope; local
1076 HandleScope scope; local
1123 HandleScope scope; local
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.cc 223 scoped_ptr<ListValue> scope(new ListValue());
225 transaction->scope().begin();
226 scope_it != transaction->scope().end();
231 scope->AppendString(it->second.name);
234 transaction_info->Set("scope", scope.release());
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp     [all...]
InsertListCommand.cpp 156 RefPtr<ContainerNode> scope; local
157 int indexForEndOfSelection = indexForVisiblePosition(endOfSelection, scope);
160 endOfSelection = visiblePositionForIndex(indexForEndOfSelection, scope.get());
  /external/v8/src/arm/
full-codegen-arm.cc 160 int receiver_offset = info->scope()->num_parameters() * kPointerSize;
166 // Open a frame scope to indicate that there is a frame on the stack. The
167 // MANUAL indicates that the scope shouldn't actually generate code to set up
171 int locals_count = info->scope()->num_stack_slots();
191 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
207 int num_parameters = info->scope()->num_parameters();
209 Variable* var = scope()->parameter(i);
226 Variable* arguments = scope()->arguments();
237 int num_parameters = info->scope()->num_parameters();
268 if (scope()->HasIllegalRedeclaration())
    [all...]
lithium-codegen-arm.h 57 scope_(info->scope()),
157 Scope* scope() const { return scope_; } function in class:v8::internal::BASE_EMBEDDED
174 int GetParameterCount() const { return scope()->num_parameters(); }
341 Scope* const scope_;
  /external/v8/src/mips/
full-codegen-mips.cc 167 int receiver_offset = info->scope()->num_parameters() * kPointerSize;
173 // Open a frame scope to indicate that there is a frame on the stack. The
174 // MANUAL indicates that the scope shouldn't actually generate code to set up
178 int locals_count = info->scope()->num_stack_slots();
198 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
214 int num_parameters = info->scope()->num_parameters();
216 Variable* var = scope()->parameter(i);
233 Variable* arguments = scope()->arguments();
244 int num_parameters = info->scope()->num_parameters();
275 if (scope()->HasIllegalRedeclaration())
    [all...]
lithium-codegen-mips.h 57 scope_(info->scope()),
153 Scope* scope() const { return scope_; } function in class:v8::internal::BASE_EMBEDDED
171 int GetParameterCount() const { return scope()->num_parameters(); }
356 Scope* const scope_;
  /external/v8/src/ia32/
full-codegen-ia32.cc 149 int receiver_offset = (info->scope()->num_parameters() + 1) * kPointerSize;
159 // Open a frame scope to indicate that there is a frame on the stack. The
160 // MANUAL indicates that the scope shouldn't actually generate code to set up
170 int locals_count = info->scope()->num_stack_slots();
184 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
201 int num_parameters = info->scope()->num_parameters();
203 Variable* var = scope()->parameter(i);
222 Variable* arguments = scope()->arguments();
232 int num_parameters = info->scope()->num_parameters();
262 if (scope()->HasIllegalRedeclaration())
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 167 int receiver_offset = (info->scope()->num_parameters() + 1) * kPointerSize;
173 // Open a frame scope to indicate that there is a frame on the stack. The
174 // MANUAL indicates that the scope shouldn't actually generate code to set up
184 int locals_count = info->scope()->num_stack_slots();
198 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
215 int num_parameters = info->scope()->num_parameters();
217 Variable* var = scope()->parameter(i);
234 Variable* arguments = scope()->arguments();
245 int num_parameters = info->scope()->num_parameters();
275 if (scope()->HasIllegalRedeclaration())
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 14 // control transfers out of a particular scope. This can be
95 /// Push an entry of the given size onto this protected-scope stack.
161 EHCleanupScope *Scope =
174 return Scope->getCleanupBuffer();
221 EHCatchScope *scope = local
224 return scope;
378 EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.begin());
380 // As long as Old strictly encloses the scope's enclosing normal
384 Old.strictlyEncloses(Scope.getEnclosingNormalCleanup());
418 EHCleanupScope &Scope) {
1020 EHScope &scope = *EHStack.find(i); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DebuggerScript.js 73 var scopeMirror = mirror.scope(i);
106 var scopeMirror = scopeHolder.scope(scopeIndex);
108 throw new Error("Incorrect scope index");
330 var scopeMirror = frameMirror.scope(i);
397 // Reset scope object prototype to null so that the proto properties
398 // don't appear in the local scope section.
V8GCController.cpp 345 v8::HandleScope scope(isolate);
358 v8::HandleScope scope(isolate);
395 v8::HandleScope scope(isolate);
419 v8::Context::Scope contextScope(context);
  /external/chromium_org/v8/src/
compiler.h 78 Scope* scope() const { return scope_; } function in class:v8::internal::CompilationInfo
79 Scope* global_scope() const { return global_scope_; }
168 void SetScope(Scope* scope) {
170 scope_ = scope;
172 void SetGlobalScope(Scope* global_scope) {
378 // The scope of the function literal as a convenience. Set to indicate
380 Scope* scope_;
381 // The global scope provided as a convenience
    [all...]
liveedit.cc 210 // place one in class scope).
718 HandleScope scope(isolate());
800 HandleScope scope(isolate());
834 HandleScope scope(isolate());
846 HandleScope scope(isolate());
864 // Saves full information about a function: its code, its scope info
866 void FunctionInfo(Handle<SharedFunctionInfo> shared, Scope* scope,
878 Handle<Object> scope_info_list(SerializeFunctionScope(scope, zone),
888 Object* SerializeFunctionScope(Scope* scope, Zone* zone)
    [all...]
preparser.h 165 Scope top_scope(&scope_, kTopLevelScope);
478 class Scope {
480 Scope(Scope** variable, ScopeType type)
492 ~Scope() { *variable_ = prev_; }
513 explicit InsideWith(Scope* scope) : scope_(scope) {
514 scope->with_nesting_count_++;
520 Scope* scope_
    [all...]
  /external/llvm/tools/gold/
gold-plugin.cpp 299 int scope = attrs & LTO_SYMBOL_SCOPE_MASK; local
300 switch (scope) {
312 (*message)(LDPL_ERROR, "Unknown scope attribute: %d", scope);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_parser.py 35 scope = {}
36 exec code in scope
37 self.assertIsInstance(scope["x"], unicode)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_parser.py 35 scope = {}
36 exec code in scope
37 self.assertIsInstance(scope["x"], unicode)
  /art/runtime/
common_throws.h 136 void ThrowNoSuchFieldError(const StringPiece& scope, mirror::Class* c,
  /external/chromium_org/base/debug/
trace_event_memory_unittest.cc 92 // Ended scope 2.
96 // Ended scope 1.
105 ScopedTraceMemory scope(kCategory);

Completed in 1853 milliseconds

<<11121314151617181920>>