HomeSort by relevance Sort by last modified time
    Searched defs:Local (Results 1 - 5 of 5) sorted by null

  /external/v8/test/mjsunit/
arguments-apply.js 49 function Local() {
54 assertEquals(0, Local().length);
55 assertEquals(1, Local(1).length);
56 assertEquals(2, Local(2)[0]);
57 assertEquals(2, Local(3, 4).length);
58 assertEquals(3, Local(3, 4)[0]);
59 assertEquals(4, Local(3, 4)[1]);
  /external/v8/src/
d8.js 103 Local: 1,
897 case Debug.ScopeType.Local:
898 result += 'Local';
    [all...]
mirror-debugger.js 193 Local: 1,
628 // Get the local property names.
645 // Get the local element names.
1258 * 4: Local count
    [all...]
  /external/v8/include/
v8.h 124 template <class T> class Local;
171 * There are two types of handles: local and persistent handles.
172 * Local handles are light-weight and transient and typically used in
173 * local operations. They are managed by HandleScopes. Persistent
271 * that return objects from within v8 return them in local handles. They
272 * are created within HandleScopes, and all local handles allocated within a
274 * is not necessary to explicitly deallocate local handles.
276 template <class T> class V8EXPORT_INLINE Local : public Handle<T> {
278 inline Local();
279 template <class S> inline Local(Local<S> that
    [all...]
  /external/webkit/WebKit/chromium/src/js/
DebuggerAgent.js 135 Local: 1,
940 * Adds the script info to the local cache. This method assumes that the script
    [all...]

Completed in 104 milliseconds