HomeSort by relevance Sort by last modified time
    Searched refs:array (Results 451 - 475 of 1532) sorted by null

<<11121314151617181920>>

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.4.2-2-n.js 49 var array = new Array();
52 array[item++] = new TestCase(SECTION, "o = new Object(); o.toString = Number.prototype.toString; o.toString()", "error", "o = new Object(); o.toString = Number.prototype.toString; o.toString()" );
53 // array[item++] = new TestCase(SECTION, "o = new String(); o.toString = Number.prototype.toString; o.toString()", "error", "o = new String(); o.toString = Number.prototype.toString; o.toString()" );
54 // array[item++] = new TestCase(SECTION, "o = 3; o.toString = Number.prototype.toString; o.toString()", "error", "o = 3; o.toString = Number.prototype.toString; o.toString()" );
56 return ( array );
15.7.4.2-3-n.js 49 var array = new Array();
52 array[item++] = new TestCase(SECTION, "o = new String(); o.toString = Number.prototype.toString; o.toString()", "error", "o = new String(); o.toString = Number.prototype.toString; o.toString()" );
54 return ( array );
15.7.4.2-4.js 49 var array = new Array();
52 array[item++] = new TestCase(SECTION, "o = 3; o.toString = Number.prototype.toString; o.toString()", "3", "o = 3; o.toString = Number.prototype.toString; o.toString()" );
54 return ( array );
15.7.4.3-2.js 44 var array = new Array();
47 array[item++] = new TestCase(SECTION, "v = Number.prototype.valueOf; num = 3; num.valueOf = v; num.valueOf()", 3, "v = Number.prototype.valueOf; num = 3; num.valueOf = v; num.valueOf()" );
49 return ( array );
15.7.4.3-3-n.js 45 var array = new Array();
48 // array[item++] = new TestCase("15.7.4.1", "v = Number.prototype.valueOf; num = 3; num.valueOf = v; num.valueOf()", "error", "v = Number.prototype.valueOf; num = 3; num.valueOf = v; num.valueOf()" );
49 array[item++] = new TestCase("15.7.4.1", "v = Number.prototype.valueOf; o = new String('Infinity'); o.valueOf = v; o.valueOf()", "error", "v = Number.prototype.valueOf; o = new String('Infinity'); o.valueOf = v; o.valueOf()" );
50 // array[item++] = new TestCase("15.7.4.1", "v = Number.prototype.valueOf; o = new Object(); o.valueOf = v; o.valueOf()", "error", "v = Number.prototype.valueOf; o = new Object(); o.valueOf = v; o.valueOf()" );
52 return ( array );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.3.1-1.js 49 var array = new Array();
51 array[item++] = new TestCase( SECTION, "var str = '';for ( p in Object ) { str += p; }; str",
55 return ( array );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Statements/
12.10.js 55 var array = new Array();
58 array[item++] = new TestCase( SECTION,
62 return ( array );
12.6.3-1.js 43 var array = new Array();
46 array[item++] = new TestCase( SECTION,
51 return ( array );
12.6.3-2.js 57 var array = new Array();
60 array[item++] = new TestCase( SECTION,
65 return ( array );
12.7-1-n.js 58 var array = new Array();
61 array[item++] = new TestCase( SECTION,
66 return ( array );
12.8-1-n.js 59 var array = new Array();
62 array[item++] = new TestCase( SECTION,
67 return ( array );
12.9-1-n.js 55 var array = new Array();
58 array[item++] = new TestCase( SECTION,
63 return ( array );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.3.1-2.js 49 var array = new Array();
52 array[item++] = new TestCase( SECTION,
56 return ( array );
15.5.3.1-3.js 49 var array = new Array();
52 array[item++] = new TestCase( SECTION, "delete( String.prototype )", false, eval("delete ( String.prototype )") );
53 return ( array );
15.5.3.1-4.js 50 var array = new Array();
53 array[item++] = new TestCase( SECTION, "delete( String.prototype );String.prototype", String.prototype, eval("delete ( String.prototype );String.prototype") );
54 return ( array );
15.5.4.2-2-n.js 65 var array = new Array();
68 array[item++] = new TestCase( SECTION,
73 return ( array );
15.5.4.3-3-n.js 63 var array = new Array();
66 array[item++] = new TestCase( SECTION,
71 return ( array );
  /frameworks/base/core/jni/android/graphics/
DrawFilter.cpp 62 #define REG(env, name, array) \
63 result = android::AndroidRuntime::registerNativeMethods(env, name, array, SK_ARRAY_COUNT(array)); \
Xfermode.cpp 62 #define REG(env, name, array) \
63 result = android::AndroidRuntime::registerNativeMethods(env, name, array, \
64 SK_ARRAY_COUNT(array)); \
  /cts/tests/tests/content/src/android/content/res/cts/
ArrayTest.java 67 checkStringArray(R.array.strings, new String[] {"zero", "1", "here"});
68 checkTextArray(R.array.strings, new String[] {"zero", "1", "here"});
69 checkStringArray(R.array.integers, new String[] {null, null, null});
70 checkTextArray(R.array.integers, new String[] {null, null, null});
75 checkIntArray(R.array.strings, new int[] {0, 0, 0});
76 checkIntArray(R.array.integers, new int[] {0, 1, 101});
  /dalvik/libcore/json/src/test/java/org/json/
JSONStringerTest.java 33 stringer.array();
48 stringer.array();
55 stringer.array();
67 stringer.array();
97 stringer.array();
106 new JSONStringer().array().value(Double.NaN);
111 new JSONStringer().array().value(Double.NEGATIVE_INFINITY);
116 new JSONStringer().array().value(Double.POSITIVE_INFINITY);
122 stringer.array();
151 new JSONStringer().array().endObject()
231 JSONArray array = new JSONArray(); local
312 JSONArray array = new JSONArray(); local
    [all...]
SelfUseTest.java 77 private final JSONArray array = new JSONArray() { field in class:SelfUseTest
161 array.put("foo");
162 array.put("baz");
163 array.put("bar");
164 object.toJSONArray(array);
172 array.put(10, false);
177 array.isNull(5);
182 array.put(true);
183 array.getBoolean(0);
188 array.optBoolean(3)
    [all...]
  /dalvik/vm/mterp/armv5te/
OP_FILL_ARRAY_DATA.S 2 /* fill-array-data vAA, +BBBBBBBB */
7 GET_VREG(r0, r3) @ r0<- vAA (array object)
8 add r1, rPC, r1, lsl #1 @ r1<- PC + BBBBbbbb*2 (array data off.)
10 bl dvmInterpHandleFillArrayData@ fill the array with predefined data
  /dalvik/libcore/include/
ScopedByteArray.h 43 const char* array = reinterpret_cast<const char*>(mBytes); local
44 return array[n];
  /external/guava/src/com/google/common/collect/
ImmutableSortedSet.java 36 * An immutable {@code SortedSet} that stores its elements in a sorted array.
49 * {@link #subSet} methods share the same array as the original set, preventing
50 * that array from being garbage collected. If this is a concern, the data may
51 * be copied into a correctly-sized array by calling {@link #copyOfSorted}.
121 Object[] array = { checkNotNull(element) }; local
122 return new RegularImmutableSortedSet<E>(array, Ordering.natural());
204 Object[] array = new Object[elements.length]; local
206 array[i] = checkNotNull(elements[i]);
208 sort(array, comparator);
209 array = removeDupes(array, comparator)
367 Object[] array = newObjectArray(elements); local
386 Object[] array = new Object[collection.size()]; local
399 Object[] array = list.toArray(); local
    [all...]

Completed in 985 milliseconds

<<11121314151617181920>>