HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 1026 - 1050 of 1201) sorted by null

<<414243444546474849

  /external/v8/test/mjsunit/
prototype.js 87 // Test setting the length of an object where the prototype is from an array.
89 test.__proto__ = (new Array()).__proto__;
stack-traces.js 187 testTrace("testArrayNative", testArrayNative, ["Array.map (native)"]);
196 testTrace("testAnonymousMethod", testAnonymousMethod, ["Array.<anonymous>"]);
undeletable-functions.js 34 var array; variable
36 array = [
40 CheckJSCSemantics(Array.prototype, array, "Array prototype");
42 array = [
53 CheckJSCSemantics(Date.prototype, array, "Date prototype");
55 array = [
58 CheckJSCSemantics(Math, array, "Math1");
62 array =
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_3/
shell.js 71 testcases = new Array();
  /external/webkit/WebCore/bindings/v8/
V8DOMWindowShell.cpp 303 m_wrapperBoilerplates = v8::Persistent<v8::Array>::New(v8::Array::New(V8ClassIndex::WRAPPER_TYPE_COUNT));
  /external/webkit/WebKit/chromium/src/
WebDevToolsFrontendImpl.cpp 365 v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(args[1]);
368 for (size_t i = 0; i < array->Length(); ++i) {
369 v8::Local<v8::Object> item = v8::Local<v8::Object>::Cast(array->Get(v8::Integer::New(i)));
  /libcore/luni/src/main/java/java/util/
ArrayDeque.java 24 import java.lang.reflect.Array;
27 * An implementation of Deque, backed by an array.
518 * If array of elements is full, there will be a new bigger array to store
763 * Returns all the elements in an array from head to tail. The result is a
766 * @return the Array of all the elements
775 * Returns all the elements in an array from head to tail, and the type of
776 * the result array is the type of the argument array. If the argument array
    [all...]
ArrayList.java 29 import java.lang.reflect.Array;
32 * ArrayList is an implementation of {@link List}, backed by an array.
50 * An empty array of objects (to be shared among all empty lists).
71 transient Object[] array; field in class:ArrayList
84 array = (capacity == 0 ? EMPTY_OBJECT_ARRAY : new Object[capacity]);
91 array = EMPTY_OBJECT_ARRAY;
108 array = a;
120 Object[] a = array;
127 array = a = newArray;
149 Object[] a = array;
    [all...]
Vector.java 23 import java.lang.reflect.Array;
26 * Vector is an implementation of {@link List}, backed by an array and synchronized.
301 * corresponding elements of the supplied {@code Object} array.
304 * the {@code Object} array into which the elements of this
959 * Returns a new array containing all elements contained in this vector.
961 * @return an array of the elements from this vector.
971 * Returns an array containing all elements contained in this vector. If the
972 * specified array is large enough to hold the elements, the specified array
973 * is used, otherwise an array of the same type is created. If the specifie
    [all...]
  /libcore/luni/src/test/java/tests/javax/sql/
RowSetTest.java 13 import java.sql.Array;
251 args = {int.class, java.sql.Array.class}
  /external/v8/test/mjsunit/regress/
regress-1200351.js 96 eval("with ({ eval(Array(x)) : 1.call('a').superConstructor }) { debugger.lastIndex.toLocaleString() }")
312 eval("for (~new Object().push(Array(null)) in new RegExp>>>=void.prototype.name) { goto break.lastIndex }")
332 eval("for (debugger==continue.toObject(), Array(NaN.className()), Math.max(new RegExp).prototype.value) { GetFunctionFor('a').prototype.value }")
336 eval("const x = new parseInt(break)==Array(x)")
400 eval("for (continue.isNull.filter(this.toText), function () { throw new 'a'(0.2) }, native?break:undef.prototype.return continue) { Array(void.toText) }")
412 eval("native false.length?new RegExp instanceof this:Array(undef)")
456 eval("for (Array(x.length) in 'a'.length().sort()) { goto (new Object()) }")
667 eval("SetValueOf(Array(1).toLocaleString(), null.name().exec(undef.filter(false)))")
699 eval("if (-1.push(new RegExp)[void.valueOf()]) { new RegExp.className().__lookupGetter__(Array(0)) }")
790 eval("export Array(null).add(NaN.valueOf())"
    [all...]
  /external/webkit/SunSpider/tests/parse-only/
concat-jquery-mootools-prototype.js 55 // HANDLE: $(html) -> $(array)
108 // Get the whole matched element set as a clean array
112 // Return a 'clean' array
113 Array.prototype.slice.call( this ) :
119 // Take an array of elements and push it onto the stack
140 // the specified array of elements (destroying the stack in the process)
143 // Resetting the length to 0, then using the native Array push
144 // is a super-fast way to populate an object with array-like properties
146 Array.prototype.push.apply( this, elems );
152 // (You can seed the arguments with an array of args, but this i
    [all...]
  /build/tools/droiddoc/templates/assets/
search_autocomplete.js 3 var gMatches = new Array();
137 gMatches = new Array();
  /external/libvpx/examples/includes/geshi/geshi/
ruby.php 39 $language_data = array (
41 'COMMENT_SINGLE' => array(1 => "#"),
42 'COMMENT_MULTI' => array("=begin" => "=end"),
44 'QUOTEMARKS' => array('"', '`','\''),
46 'KEYWORDS' => array(
47 1 => array(
55 2 => array(
59 3 => array(
60 'Array', 'Float', 'Integer', 'String', 'at_exit',
70 4 => array(
    [all...]
  /external/v8/src/
d8.h 133 static Handle<Array> GetCompletions(Handle<String> text,
  /external/v8/tools/
profile_view.js 127 * functions. Must comply with Array.sort sorting function requirements.
219 * functions. Must comply with Array.sort sorting function requirements.
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.2.js 51 var array = new Array();
54 array[item++] = new TestCase( SECTION, "typeof (new Boolean(1))", "object", typeof (new Boolean(1)) );
55 array[item++] = new TestCase( SECTION, "(new Boolean(1)).constructor", Boolean.prototype.constructor, (new Boolean(1)).constructor );
56 array[item++] = new TestCase( SECTION,
60 array[item++] = new TestCase( SECTION, "(new Boolean(1)).valueOf()", true, (new Boolean(1)).valueOf() );
61 array[item++] = new TestCase( SECTION, "typeof new Boolean(1)", "object", typeof new Boolean(1) );
62 array[item++] = new TestCase( SECTION, "(new Boolean(0)).constructor", Boolean.prototype.constructor, (new Boolean(0)).constructor );
63 array[item++] = new TestCase( SECTION,
67 array[item++] = new TestCase( SECTION, "(new Boolean(0)).valueOf()", false, (new Boolean(0)).v (…)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.3.1-1.js 82 var testcases = new Array();
15.9.5.23-1.js 43 var testcases = new Array();
15.9.5.23-10.js 43 var testcases = new Array();
15.9.5.23-11.js 44 var testcases = new Array();
15.9.5.23-12.js 43 var testcases = new Array();
15.9.5.23-13.js 45 var testcases = new Array();
15.9.5.23-14.js 45 var testcases = new Array();
15.9.5.23-15.js 44 var testcases = new Array();

Completed in 1524 milliseconds

<<414243444546474849