HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 276 - 300 of 389) sorted by null

<<111213141516

  /external/v8/src/
mirror-debugger.js 160 const SCOPE_TYPE = 'scope';
192 // A copy of the scope types from runtime.cc.
388 * Check whether the mirror reflects a scope.
389 * @returns {boolean} True if the mirror reflects a scope
    [all...]
handles.h 88 // Closes the given scope, but lets this handle escape. See
90 inline Handle<T> EscapeFrom(v8::HandleScope* scope);
98 // After a handle scope has been created, all local handles will be
99 // allocated within that handle scope until either the handle scope is
100 // deleted or another handle scope is created. If there is already a
101 // handle scope and a new one is created, all allocations will take
102 // place in the new handle scope until it is deleted. After that,
103 // new handles will again be allocated in the original handle scope.
105 // After the handle scope of a local handle has been deleted th
    [all...]
runtime-profiler.cc 244 HandleScope scope(isolate_);
d8.js 379 case 'scope':
790 // Create a JSON request for the scope command.
792 // Build a scope request from the text command.
793 var request = this.createRequest('scope');
    [all...]
debug-debugger.js     [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.h 141 llvm::DIDescriptor scope);
  /external/libxml2/include/libxml/
schemasInternals.h 785 const xmlChar *scope; member in struct:_xmlSchemaElement
  /external/v8/samples/
lineprocessor.cc 134 v8::Context::Scope scope(debug_message_context);
220 v8::Context::Scope context_scope(context);
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.cpp 119 // cells have borders, or use attributes like headers, abbr, scope or axis
179 || !cellElement->axis().isEmpty() || !cellElement->scope().isEmpty())
  /external/webkit/Source/WebCore/css/
SVGCSSParser.cpp 277 ShorthandScope scope(this, propId);
  /libcore/luni/src/main/java/java/sql/
DatabaseMetaData.java 64 * States that the remainder of the current session is used as the scope for
70 * States that best row identifier scope lasts only while the row is being
76 * States that the remainder of the current transaction is used as the scope
488 * this gives the catalog of the table corresponding to the attribute's scope.
491 * this gives the schema of the table corresponding to the attribute's scope.
494 * this gives the name of the table corresponding to the attribute's scope.
527 * identify the rows. The results are ordered by {@code SCOPE} (see below).
532 * <li>{@code SCOPE} - short - the {@code SCOPE} of the result, as follows:
574 * @param scope
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 60 HandleScope scope(isolate);
138 HandleScope scope(isolate);
607 CpuFeatures::Scope scope(SSE2);
  /external/webkit/Source/JavaScriptCore/runtime/
JSONObject.cpp 818 LocalScope scope(exec->globalData());
840 LocalScope scope(exec->globalData());
849 LocalScope scope(exec->globalData());
  /external/doclava/src/com/google/doclava/
ClassInfo.java 878 data.setValue("class.scope", "protected");
880 data.setValue("class.scope", "public");
1371 public String scope() { method in class:ClassInfo
    [all...]
  /external/webkit/Source/WebCore/editing/
ApplyStyleCommand.cpp 257 Node* scope = highestAncestor(visibleStart.deepEquivalent().deprecatedNode());
258 RefPtr<Range> startRange = Range::create(document(), firstPositionInNode(scope), visibleStart.deepEquivalent().parentAnchoredEquivalent());
259 RefPtr<Range> endRange = Range::create(document(), firstPositionInNode(scope), visibleEnd.deepEquivalent().parentAnchoredEquivalent());
290 startRange = TextIterator::rangeFromLocationAndLength(static_cast<Element*>(scope), startIndex, 0, true);
291 endRange = TextIterator::rangeFromLocationAndLength(static_cast<Element*>(scope), endIndex, 0, true);
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp 3396 JSObject* scope = new (stackFrame.globalData) JSStaticScopeObject(stackFrame.callFrame, stackFrame.args[0].identifier(), stackFrame.args[1].jsValue(), DontDelete); local
    [all...]
  /external/doclava/res/assets/templates/
class.cs 96 <?cs var:class.scope ?>
198 <?cs var:field.scope ?>
246 <?cs var:cl.scope ?>
485 <?cs var:field.scope ?>
524 <?cs var:method.scope ?>
  /bionic/libc/bionic/
pthread.c 524 int pthread_attr_setscope(pthread_attr_t *attr, int scope)
526 if (scope == PTHREAD_SCOPE_SYSTEM)
528 if (scope == PTHREAD_SCOPE_PROCESS)
    [all...]
  /external/chromium/chrome/browser/history/
history_backend_unittest.cc 86 void* scope = 0; local
87 memcpy(&scope, &int_scope, sizeof(int_scope));
90 redirects.back(), Time::Now(), scope, page_id, GURL(),
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.cc 125 // issues when the stack allocated buffer goes out of scope.
176 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
193 int num_parameters = scope()->num_parameters();
195 Slot* slot = scope()->parameter(i)->AsSlot();
    [all...]
  /external/v8/test/cctest/
test-log.cc 382 v8::HandleScope scope;
386 v8::Context::Scope context_scope(context);
508 v8::HandleScope scope; local
1127 v8::HandleScope scope; local
    [all...]
test-mark-compact.cc 42 v8::HandleScope scope; local
  /external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.cpp 358 v8::HandleScope scope; local
1051 v8::HandleScope scope; local
1058 return scope.Close(element(0));
    [all...]
  /external/v8/src/mips/
codegen-mips.h 69 // reference on the execution stack while in scope. For variables
328 inline Scope* scope();
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 368 Element* scope = selectionRoot ? selectionRoot : frame->document()->documentElement();
369 return TextIterator::rangeFromLocationAndLength(scope, nsrange.location, nsrange.length);

Completed in 1324 milliseconds

<<111213141516