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

<<414243444546474849

  /external/v8/test/mjsunit/
debug-references.js 60 assertTrue(response.body instanceof Array);
  /external/v8/tools/
profile.js 224 * @param {Array<number>} stack Stack sample.
238 * @param {Array<number>} stack Stack sample.
451 * @param {Array<string>} path Call path.
621 * Returns all node's children as an array.
678 * @param {Array<string>} labels The path.
  /external/webkit/WebCore/bindings/v8/
NPV8Object.cpp 451 // on the object into an array.
469 // Convert the results into an array of NPIdentifiers.
470 v8::Handle<v8::Array> props = v8::Handle<v8::Array>::Cast(propsObj);
  /external/webkit/WebCore/bridge/objc/
objc_runtime.mm 142 : Array(rootObject)
150 throwError(exec, TypeError, "Array is not mutable.");
155 throwError(exec, RangeError, "Index exceeds array size.");
160 // array.
173 return throwError(exec, RangeError, "Index exceeds array size.");
  /libcore/luni/src/main/java/java/util/
EnumMap.java 23 import java.lang.reflect.Array;
368 public Object[] toArray(Object[] array) {
371 Object[] entryArray = array;
372 if (size > array.length) {
373 Class<?> clazz = array.getClass().getComponentType();
374 entryArray = (Object[]) Array.newInstance(clazz, size);
382 if (index < array.length) {
LinkedList.java 24 import java.lang.reflect.Array;
917 * Returns a new array containing all elements contained in this
920 * @return an array of the elements from this {@code LinkedList}.
935 * Returns an array containing all elements contained in this
936 * {@code LinkedList}. If the specified array is large enough to hold the
937 * elements, the specified array is used, otherwise an array of the same
938 * type is created. If the specified array is used and is larger than this
939 * {@code LinkedList}, the array element following the collection elements
943 * the array
    [all...]
Arrays.java 21 import java.lang.reflect.Array;
144 contents = (T[]) Array.newInstance(ct, size);
159 * Returns a {@code List} of the objects in the specified array. The size of the
162 * array.
164 * @param array
165 * the array.
166 * @return a {@code List} of the elements of the specified array.
168 public static <T> List<T> asList(T... array) {
169 return new ArrayList<T>(array);
173 * Performs a binary search for {@code value} in the ascending sorted array {@code array}
    [all...]
  /libcore/luni/src/test/java/tests/sql/
ResultSetNotSupportedTests.java 708 * Test method for {@link java.sql.ResultSet#updateArray(int, java.sql.Array)}.
714 args = {int.class, java.sql.Array.class}
722 * Test method for {@link java.sql.ResultSet#updateArray(java.lang.String, java.sql.Array)}.
728 args = {java.lang.String.class, java.sql.Array.class}
    [all...]
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 34 // TODO: handle array and other types
456 else if (_parameterType.isArray ()) // array type:
500 // array type:
518 // array type:
528 Object array = Array.newInstance (component, 0); local
529 return array.getClass ();
558 // array type:
576 // array type:
584 String array = component + " []" local
    [all...]
  /external/v8/src/
globals.h 237 class Array;
497 // array. You should only use ARRAY_SIZE on statically allocated
spaces-inl.h 115 + Array::kLengthOffset));
objects.h 58 // - Array
249 /* Note: the order of these external array */ \
495 // Boundaries for testing for an external array.
    [all...]
objects-inl.h 1119 Array* JSObject::elements() {
1120 Object* array = READ_FIELD(this, kElementsOffset);
1122 ASSERT(array->IsFixedArray() || array->IsPixelArray() ||
1123 array->IsExternalArray());
1124 return reinterpret_cast<Array*>(array);
1128 void JSObject::set_elements(Array* value, WriteBarrierMode mode) {
1226 // properties stored in the properties array.
    [all...]
heap.cc 982 FixedArray* array = FixedArray::cast(obj); local
983 int length = array->length();
987 if (Heap::InNewSpace(array->get(i))) {
2904 FixedArray* array = FixedArray::cast(result); local
2961 FixedArray* array = FixedArray::cast(result); local
2978 FixedArray* array = FixedArray::cast(result); local
    [all...]
  /external/v8/src/ia32/
builtins-ia32.cc 191 // Check if a non-empty properties array is needed.
211 // edx: number of elements in properties array
228 __ mov(Operand(edi, Array::kLengthOffset), edx); // and length
577 // Make edx the space we need for the array when it is unrolled onto the
643 // Copy all arguments from the array to the stack.
681 // Load the built-in Array function from the current context.
686 // Load the Array function from the global context.
692 // Number of empty elements to allocate for an empty array.
696 // Allocate an empty JSArray. The allocated array is put into the result
710 // Load the initial map from the array function
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.2-1.js 104 var array = new Array();
110 array[item++] = new TestCase( SECTION, "parseInt.length", 2, parseInt.length );
111 array[item++] = new TestCase( SECTION, "parseInt.length = 0; parseInt.length", 2, eval("parseInt.length = 0; parseInt.length") );
112 array[item++] = new TestCase( SECTION, "var PROPS=''; for ( var p in parseInt ) { PROPS += p; }; PROPS", "", eval("var PROPS=''; for ( var p in parseInt ) { PROPS += p; }; PROPS") );
113 array[item++] = new TestCase( SECTION, "delete parseInt.length", false, delete parseInt.length );
114 array[item++] = new TestCase( SECTION, "delete parseInt.length; parseInt.length", 2, eval("delete parseInt.length; parseInt.length") );
115 array[item++] = new TestCase( SECTION, "parseInt.length = null; parseInt.length", 2, eval("parseInt.length = null; parseInt.length") );
117 array[item++] = new TestCase( SECTION, "parseInt()", NaN, parseInt() );
118 array[item++] = new TestCase( SECTION, "parseInt('')", NaN, parseInt("") )
    [all...]
15.1.2.3-2.js 72 var array = new Array();
75 array[item++] = new TestCase( SECTION, "parseFloat(true)", Number.NaN, parseFloat(true) );
76 array[item++] = new TestCase( SECTION, "parseFloat(false)", Number.NaN, parseFloat(false) );
77 array[item++] = new TestCase( SECTION, "parseFloat('string')", Number.NaN, parseFloat("string") );
79 array[item++] = new TestCase( SECTION, "parseFloat(' Infinity')", Number.POSITIVE_INFINITY, parseFloat("Infinity") );
80 // array[item++] = new TestCase( SECTION, "parseFloat(Infinity)", Number.POSITIVE_INFINITY, parseFloat(Infinity) );
82 array[item++] = new TestCase( SECTION, "parseFloat(' 0')", 0, parseFloat(" 0") );
83 array[item++] = new TestCase( SECTION, "parseFloat(' -0')", -0, parseFloat(" -0") );
84 array[item++] = new TestCase( SECTION, "parseFloat(' +0')", 0, parseFloat(" (…)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.13.js 43 var array = new Array();
46 array[item++] = new TestCase( SECTION, "Math.pow.length", 2, Math.pow.length );
48 array[item++] = new TestCase( SECTION, "Math.pow()", Number.NaN, Math.pow() );
49 array[item++] = new TestCase( SECTION, "Math.pow(null, null)", 1, Math.pow(null,null) );
50 array[item++] = new TestCase( SECTION, "Math.pow(void 0, void 0)", Number.NaN, Math.pow(void 0, void 0));
51 array[item++] = new TestCase( SECTION, "Math.pow(true, false)", 1, Math.pow(true, false) );
52 array[item++] = new TestCase( SECTION, "Math.pow(false,true)", 0, Math.pow(false,true) );
53 array[item++] = new TestCase( SECTION, "Math.pow('2','32')", 4294967296, Math.pow('2','32') );
55 array[item++] = new TestCase( SECTION, "Math.pow(1,NaN)", Number.NaN, (…)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_6/
shell.js 48 var callStack = new Array();
  /libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 459 public void setArray(int i, Array x) throws SQLException {
739 public Array getArray(String parameterName) throws SQLException {
743 public Array getArray(int parameterIndex) throws SQLException {
  /external/webkit/SunSpider/tests/parse-only/
jquery-1.3.2.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...]
  /dalvik/vm/
CheckJni.c 52 * returns a byte array, things will fail in strange ways later on.
88 * of an array, generated). However, the current class loader may
420 "Object/Array", "boolean", "char", "float", "double",
710 * Verify that "array" is non-NULL and points to an Array object.
722 LOGW("JNI WARNING: received null array (%s)\n", func);
726 LOGW("JNI WARNING: jarray %p points to non-array object (%s)\n",
742 * Verify that the "mode" argument passed to a primitive array Release
754 * Verify that the length argument to array-creation calls is >= 0.
759 LOGW("JNI WARNING: negative length for array allocation (%s)\n", func)
    [all...]
  /external/v8/src/x64/
builtins-x64.cc 350 // Make rdx the space we need for the array when it is unrolled onto the
412 // Copy all arguments from the array to the stack.
453 // Load the built-in Array function from the current context.
458 // Load the Array function from the global context.
464 // Number of empty elements to allocate for an empty array.
468 // Allocate an empty JSArray. The allocated array is put into the result
482 // Load the initial map from the array function.
486 // Allocate the JSArray object together with space for a fixed array with the
500 // array.
510 // If no storage is requested for the elements array just set the empt
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.7.3.js 48 var array = new Array();
51 array[item++] = new TestCase( SECTION, "0", 0, 0 );
52 array[item++] = new TestCase( SECTION, "1", 1, 1 );
53 array[item++] = new TestCase( SECTION, "2", 2, 2 );
54 array[item++] = new TestCase( SECTION, "3", 3, 3 );
55 array[item++] = new TestCase( SECTION, "4", 4, 4 );
56 array[item++] = new TestCase( SECTION, "5", 5, 5 );
57 array[item++] = new TestCase( SECTION, "6", 6, 6 );
58 array[item++] = new TestCase( SECTION, "7", 7, 7 )
    [all...]
7.7.4.js 46 var array = new Array();
51 array[item++] = new TestCase( SECTION, "\"\"", "", "" );
52 array[item++] = new TestCase( SECTION, "\'\'", "", '' );
55 array[item++] = new TestCase( SECTION, "\\\"", String.fromCharCode(0x0022), "\"" );
56 array[item++] = new TestCase( SECTION, "\\\'", String.fromCharCode(0x0027), "\'" );
57 array[item++] = new TestCase( SECTION, "\\", String.fromCharCode(0x005C), "\\" );
58 array[item++] = new TestCase( SECTION, "\\b", String.fromCharCode(0x0008), "\b" );
59 array[item++] = new TestCase( SECTION, "\\f", String.fromCharCode(0x000C), "\f" );
60 array[item++] = new TestCase( SECTION, "\\n", String.fromCharCode(0x000A), "\n" )
    [all...]

Completed in 1704 milliseconds

<<414243444546474849