HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 551 - 575 of 1184) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/WebKit/Source/core/editing/
htmlediting.h 182 int indexForVisiblePosition(const VisiblePosition&, RefPtr<ContainerNode>& scope);
183 VisiblePosition visiblePositionForIndex(int index, ContainerNode* scope);
htmlediting.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.idl 44 [RaisesException] unsigned long numberOfScopedHTMLStyleChildren(Node scope);
125 [RaisesException] Range rangeFromLocationAndLength(Element scope, long rangeLocation, long rangeLength);
126 [RaisesException] unsigned long locationFromRange(Element scope, Range range);
127 [RaisesException] unsigned long lengthFromRange(Element scope, Range range);
Internals.h 168 PassRefPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocation, int rangeLength, ExceptionState&);
169 unsigned locationFromRange(Element* scope, const Range*, ExceptionState&);
170 unsigned lengthFromRange(Element* scope, const Range*, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Tools/qunit/test/
test.js 140 module("save scope", {
148 test("scope check", function() {
157 test("scope check", function() {
173 test("scope check", function() {
  /external/chromium_org/tools/gn/
args.cc 74 void Args::AddArgOverrides(const Scope::KeyValueMap& overrides) {
75 for (Scope::KeyValueMap::const_iterator i = overrides.begin();
82 void Args::SetupRootScope(Scope* dest,
83 const Scope::KeyValueMap& toolchain_overrides) const {
90 bool Args::DeclareArgs(const Scope::KeyValueMap& args,
91 Scope* scope_to_set,
95 for (Scope::KeyValueMap::const_iterator i = args.begin();
107 Scope::KeyValueMap::iterator previously_declared =
137 // Only set on the current scope to the new value if it hasn't been already
152 for (Scope::KeyValueMap::const_iterator i = all_overrides_.begin()
    [all...]
  /external/chromium_org/v8/src/
accessors.cc 170 HandleScope scope(isolate);
403 HandleScope scope(isolate);
482 HandleScope scope(isolate);
574 HandleScope scope(isolate);
591 HandleScope scope(isolate);
650 HandleScope scope(isolate);
732 HandleScope scope(isolate);
856 HandleScope scope(isolate);
  /external/chromium_org/v8/test/cctest/
test-alloc.cc 98 v8::HandleScope scope(CcTest::isolate());
122 v8::HandleScope scope(CcTest::isolate());
test-cpu-profiler.cc 134 i::HandleScope scope(isolate);
200 i::HandleScope scope(isolate);
271 i::HandleScope scope(isolate);
354 v8::HandleScope scope(env->GetIsolate());
401 v8::HandleScope scope(env->GetIsolate());
555 v8::HandleScope scope(env->GetIsolate());
624 v8::HandleScope scope(env->GetIsolate());
731 v8::HandleScope scope(env->GetIsolate());
776 v8::HandleScope scope(env->GetIsolate());
835 v8::HandleScope scope(env->GetIsolate())
    [all...]
  /external/chromium_org/v8/test/webkit/
resolve-arguments-from-scope.js 25 "Tests that doing repeated resolves of 'arguments' from some nested scope doesn't crash."
  /external/chromium_org/webkit/browser/fileapi/
file_system_operation_runner.h 245 base::WeakPtr<BeginOperationScoper> scope; member in struct:fileapi::FileSystemOperationRunner::OperationHandle
298 base::WeakPtr<BeginOperationScoper> scope);
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 163 MDNode *scope = I->Loc.getScope( local
166 Filenames.getFullPath(scope));
  /external/v8/src/
scopes.h 47 Variable* Declare(Scope* scope,
59 // The dynamic scope part holds hash maps for the variables that will
61 // are allocated on-demand from Scope::NonLocal to avoid wasting memory
85 class Scope: public ZoneObject {
90 Scope(Scope* outer_scope, ScopeType type);
92 // Compute top scope and allocate variables. For lazy compilation the top
93 // scope only contains the single lazily compiled function, so this
97 static Scope* DeserializeScopeChain(Context* context, Scope* global_scope)
    [all...]
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/v8/test/cctest/
test-alloc.cc 126 v8::HandleScope scope; local
148 v8::HandleScope scope; local
  /frameworks/base/media/java/android/media/
MediaDrm.java 352 * @param scope may be a sessionId or a keySetId, depending on the specified keyType.
354 * scope should be set to the sessionId the keys will be provided to. When the keyType
355 * is KEY_TYPE_RELEASE, scope should be set to the keySetId of the keys
372 public native KeyRequest getKeyRequest(byte[] scope, byte[] init,
386 * @param scope may be a sessionId or keySetId depending on the type of the
387 * response. Scope should be set to the sessionId when the response is for either
388 * streaming or offline key requests. Scope should be set to the keySetId when
398 public native byte[] provideKeyResponse(byte[] scope, byte[] response)
  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.cc 260 scoped_ptr<ListValue> scope(new ListValue());
262 transaction->scope().begin();
263 scope_it != transaction->scope().end();
268 scope->AppendString(it->second.name);
271 transaction_info->Set("scope", scope.release());
  /external/chromium_org/v8/src/x64/
builtins-x64.cc 78 FrameScope scope(masm, StackFrame::INTERNAL);
143 FrameScope scope(masm, StackFrame::CONSTRUCT);
457 // Open a C++ scope for the FrameScope.
475 FrameScope scope(masm, StackFrame::INTERNAL);
505 FrameScope scope(masm, StackFrame::INTERNAL);
606 FrameScope scope(masm, StackFrame::MANUAL);
639 FrameScope scope(masm, StackFrame::MANUAL);
669 FrameScope scope(masm, StackFrame::INTERNAL);
699 FrameScope scope(masm, StackFrame::INTERNAL);
809 FrameScope scope(masm, StackFrame::INTERNAL)
    [all...]
  /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...]
  /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...]
  /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");
347 var scopeMirror = frameMirror.scope(i);
417 // Reset scope object prototype to null so that the proto properties
418 // don't appear in the local scope section.
V8GCController.cpp 344 v8::HandleScope scope(isolate);
357 v8::HandleScope scope(isolate);
394 v8::HandleScope scope(isolate);
418 v8::Context::Scope contextScope(context);

Completed in 718 milliseconds

<<21222324252627282930>>