HomeSort by relevance Sort by last modified time
    Searched full:array (Results 376 - 400 of 7457) sorted by null

<<11121314151617181920>>

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.8-3.js 27 Returns an Array object into which substrings of the result of converting
30 occurrences are not part of any substring in the returned array, but serve
34 up into individual characters; the length of the result array equals the
37 If the separator is not supplied, then the result array contains just one
43 2. Create a new Array object of length 0 and call it A.
90 var array = new Array();
94 var EXPECT = new Array();
98 array[item++] = new TestCase( SECTION,
103 array[item++] = new TestCase( SECTION
    [all...]
15.5.4.4-2.js 59 var array = new Array();
61 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(0)", "t", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(0)") );
62 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(1)", "r", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(1)") );
63 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(2)", "u", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(2)") );
64 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(3)", "e", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(3)") );
65 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(4)", "", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(4)") );
66 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(-1)", "", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(-1)") );
68 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(true)", "r", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(true)") );
69 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.ch (…)
    [all...]
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/charset/
NativeConverter.java 21 * Converts an array of bytes containing characters in an external
22 * encoding into an array of Unicode characters. This method allows
31 * @param input byte array containing text to be converted.
32 * @param inEnd stop conversion at this offset in input array (exclusive).
33 * @param output character array to receive conversion result.
34 * @param outEnd stop writing to output array at this offset (exclusive).
35 * @param data integer array containing the following data
48 * Converts an array of bytes containing characters in an external
49 * encoding into an array of Unicode characters. This method allows
58 * @param input byte array containing text to be converted
    [all...]
  /dalvik/docs/opcodes/
opcode-44-aget.html 17 Perform the identified array operation at the identified index of the given
18 array, storing into the value register.
44 <code>B:</code> array register (8 bits)<br/>
61 Register vB must contain an array reference. The component type of the
62 array must match the variant of the instruction.
73 For all but the -wide variant, the array element at the given index is moved
74 into register vA, that is, vA'=array[index].
77 For the -wide variant, the array element at the given index is moved into
81 vA'=array[index] >> 0x20
84 v(A+1)'=array[index] & 0xffffffff
    [all...]
  /dalvik/libcore/text/src/main/java/java/text/
DateFormatSymbols.java 252 * Returns the array of strings which represent AM and PM. Use the
254 * {@code Calendar.PM} as indices for the array.
256 * @return an array of strings.
263 * Returns the array of strings which represent BC and AD. Use the
265 * {@code GregorianCalendar.AD} as indices for the array.
267 * @return an array of strings.
284 * Returns the array of strings containing the full names of the months. Use
286 * indices for the array.
288 * @return an array of strings.
295 * Returns the array of strings containing the abbreviated names of th
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
CharSequenceReader.java 87 * Read the sepcified number of characters into the array.
89 * @param array The array to store the characters in
90 * @param offset The starting position in the array to store
95 public int read(char[] array, int offset, int length) {
99 if (array == null) {
100 throw new NullPointerException("Character array is missing");
102 if (length < 0 || (offset + length) > array.length) {
103 throw new IndexOutOfBoundsException("Array Size=" + array.length +
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
arrays_byte.sgml 76 the array. Note however that the size of the array is still 0.
86 The array will grow in size automatically if necessary.
89 @array: a #GByteArray.
98 The array will grow in size automatically if necessary.
101 @array: a #GByteArray.
113 @array: a #GByteArray.
121 The last element in the array is used to fill in the space, so this function
126 @array: a #GByteArray.
137 @array: a @GByteArray
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.1.1-1.js 51 var array = new Array();
58 // array[item++] = new TestCase( SECTION, "myfunc.toString()", "function anonymous() { }", myfunc.toString() );
61 array[item++] = new TestCase( SECTION,
65 array[item++] = new TestCase( SECTION, "myfunc.length", 0, myfunc.length );
66 array[item++] = new TestCase( SECTION, "myfunc.prototype.toString()", "[object Object]", myfunc.prototype.toString() );
67 array[item++] = new TestCase( SECTION, "myfunc.prototype.constructor", myfunc, myfunc.prototype.constructor );
68 array[item++] = new TestCase( SECTION, "myfunc.arguments", null, myfunc.arguments );
69 array[item++] = new TestCase( SECTION, "var OBJ = new MyObject(true); OBJ.valueOf()", true, eval("var OBJ = new MyObject(true); OBJ.valueOf()") );
70 array[item++] = new TestCase( SECTION, "OBJ.toString()", "true", (…)
    [all...]
  /frameworks/base/awt/java/awt/image/
ByteLookupTable.java 28 * is defined by an input byte array for bands or components of image and an
31 * represented as an array of unsigned bytes.
44 * the specified byte array which represents the lookup table for all bands.
49 * the data array of bytes.
56 // The data array stored as a reference
62 * the specified byte array of arrays which represents the lookup table for
68 * the data array of bytes array for each band.
74 // The data array for each band stored as a reference
81 * ByteLookupTable object has one byte array for all bands, the returne
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.4-1.js 84 var array = new Array();
89 array[item++] = new TestCase( SECTION, "td = new Date(Number.NaN); td.valueOf()", Number.NaN, eval("td = new Date(Number.NaN); td.valueOf()") );
90 array[item++] = new TestCase( SECTION, "td = new Date(Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.POSITIVE_INFINITY); td.valueOf()") );
91 array[item++] = new TestCase( SECTION, "td = new Date(-Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.NEGATIVE_INFINITY); td.valueOf()") );
92 array[item++] = new TestCase( SECTION, "td = new Date(-0); td.valueOf()", -0, eval("td = new Date(-0); td.valueOf()" ) );
93 array[item++] = new TestCase( SECTION, "td = new Date(0); td.valueOf()", 0, eval("td = new Date(0); td.valueOf()") );
97 array[item++] = new TestCase( SECTION, "td = new Date(3.14159); td.valueOf()", 3, eval("td = new Date(3.14159); td.valueOf()") );
98 array[item++] = new TestCase( SECTION, "td = new Date(Math.PI); td.valueOf()", 3, eval("td = new Date(Math.PI); td.valueOf()") );
99 array[item++] = new TestCase( SECTION, "td = new Date(-Math.PI);td.valueOf()", -3, eval("td (…)
    [all...]
9.4-2.js 84 var array = new Array();
89 array[item++] = new TestCase( SECTION, "td = new Date(Number.NaN); td.valueOf()", Number.NaN, eval("td = new Date(Number.NaN); td.valueOf()") );
90 array[item++] = new TestCase( SECTION, "td = new Date(Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.POSITIVE_INFINITY); td.valueOf()") );
91 array[item++] = new TestCase( SECTION, "td = new Date(-Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.NEGATIVE_INFINITY); td.valueOf()") );
92 array[item++] = new TestCase( SECTION, "td = new Date(-0); td.valueOf()", -0, eval("td = new Date(-0); td.valueOf()" ) );
93 array[item++] = new TestCase( SECTION, "td = new Date(0); td.valueOf()", 0, eval("td = new Date(0); td.valueOf()") );
97 array[item++] = new TestCase( SECTION, "td = new Date(3.14159); td.valueOf()", 3, eval("td = new Date(3.14159); td.valueOf()") );
98 array[item++] = new TestCase( SECTION, "td = new Date(Math.PI); td.valueOf()", 3, eval("td = new Date(Math.PI); td.valueOf()") );
99 array[item++] = new TestCase( SECTION, "td = new Date(-Math.PI);td.valueOf()", -3, eval("td (…)
    [all...]
  /frameworks/base/awt/javax/imageio/stream/
ImageOutputStream.java 46 * Writes the bytes array to the stream.
49 * the byte array to be written.
56 * Writes a number of bytes from the specified byte array beginning from the
60 * the byte array.
194 * Writes a len number of short values from the specified array to the
198 * the shorts array to be written.
200 * the offset in the char array.
212 * the char array to be written.
214 * the offset in the char array.
223 * Writes a len number of integer values from the specified array to th
    [all...]
  /dalvik/dx/tests/048-dex-new-array/
info.txt 2 simple array construction expressions get converted reasonably.
  /dalvik/dx/tests/064-dex-array-access/
info.txt 2 a few cases of array access get converted reasonably.
  /dalvik/dx/tests/065-dex-new-array/
info.txt 2 a few cases of array construction get converted reasonably.
  /dalvik/dx/tests/070-dex-multianewarray/
info.txt 2 cases of multidimensional array construction get converted reasonably.
  /dalvik/dx/tests/090-dex-unify-arrays/
expected.txt 7 0005: new-array v1, v1, java.lang.String[]
13 000d: new-array v1, v1, java.lang.Integer[]
21 0005: new-array v2, v2, int[]
29 0010: new-array v2, v2, float[]
37 0005: new-array v2, v2, char[]
45 0010: new-array v2, v2, double[]
53 0005: new-array v2, v2, long[]
61 0010: new-array v2, v2, boolean[]
69 0005: new-array v2, v2, short[]
77 0010: new-array v2, v2, java.lang.Object[
    [all...]
info.txt 2 array type unification works properly.
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ListOfVariables.java 25 ArrayList<TypeVariable<?>> array = new ArrayList<TypeVariable<?>>(); field in class:ListOfVariables
29 array.add(elem);
33 TypeVariable<?>[] a = new TypeVariable[array.size()];
34 return array.toArray(a);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
Digest.java 32 * @param in the byte array containing the data.
33 * @param inOff the offset into the byte array where the data starts.
42 * @param out the array the digest is to be copied into.
43 * @param outOff the offset into the out array the digest is to start at.
  /dalvik/tests/003-omnibus-opcodes/
expected.txt 50 Array check...
51 Array.checkRange32
52 Array.checkRange64
53 Array.checkNegAlloc
  /dalvik/tests/004-annotations/src/android/test/anno/
ExportedProperty.java 1 /* part of test for array problem */
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_RESTORE_STATE.S 4 * r0 - offset from rGLUE to the 1st element of the coreRegs save array.
  /external/apache-http/src/org/apache/commons/codec/
BinaryEncoder.java 20 * Defines common encoding methods for byte array encoders.
28 * Encodes a byte array and return the encoded data
29 * as a byte array.
33 * @return A byte array containing the encoded data
  /external/icu4c/test/cintltst/
cbiditst.h 28 /* length of an array */
29 #define ARRAY_LENGTH(array) (sizeof(array)/sizeof(array[0]))

Completed in 294 milliseconds

<<11121314151617181920>>