Searched
refs:array (Results
726 -
750 of
1532) sorted by null
<<21222324252627282930>>
/dalvik/libcore/sql/src/test/java/tests/sql/ |
StatementTest.java | 841 Vector<int[]> array = new Vector<int[]>(); local 842 array.addElement(null); 843 array.addElement(new int[] { 1, 2, 3 }); 844 array.addElement(new int[] { 1, 2, 10, 100 }); 845 array.addElement(new int[] {}); 849 st.execute(queries[i], (int[]) array.elementAt(i)); 886 Vector<String[]> array = new Vector<String[]>(); local 887 array.addElement(null); 888 array.addElement(new String[] { "", "", "", "", "", "", "", "" }); 889 array.addElement(new String[] { "field 1", "", "field2" }) 1177 Vector<int[]> array = new Vector<int[]>(); local 1283 Vector<String[]> array = new Vector<String[]>(); local [all...] |
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
ServerSessionContext.java | 56 SSLSession[] array = sessions.values().toArray( local 58 return Arrays.asList(array).iterator();
|
/dalvik/vm/mterp/x86-atom/ |
OP_FILL_ARRAY_DATA.S | 19 * Code: Fills an array with given data. Uses no substitutions. 21 * For: fill-array-data 23 * Description: Fill the given array with the idicated data. The reference 24 * must be an array of primitives, and the data table must 36 lea (rPC, %edx, 2), %edx # %edx<- PC + +BBBBBBBB; array data location
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
Spinner1.java | 46 this, R.array.colors, android.R.layout.simple_spinner_item); 62 adapter = ArrayAdapter.createFromResource(this, R.array.planets,
|
/external/guava/src/com/google/common/collect/ |
ImmutableEnumSet.java | 81 @Override public <T> T[] toArray(T[] array) { 82 return delegate.toArray(array);
|
/external/icu4c/layout/ |
LETypes.h | 272 * A convenience macro to get the length of an array. 276 #define LE_ARRAY_SIZE(array) (sizeof array / sizeof array[0]) 280 * A convenience macro for copying an array. 287 * Allocate an array of basic types. This is used to isolate the rest of 295 * Re-allocate an array of basic types. This is used to isolate the rest of 300 #define LE_GROW_ARRAY(array, newSize) uprv_realloc((void *) (array), (newSize) * sizeof (array)[0] [all...] |
/external/v8/src/ |
allocation.h | 118 static void DeleteArray(T* array) { 119 delete[] array;
|
/external/v8/tools/visual_studio/ |
js2c.cmd | 6 %PYTHON% ..\js2c.py %TARGET_DIR%\natives.cc %TARGET_DIR%\natives-empty.cc CORE %SOURCE_DIR%\macros.py %SOURCE_DIR%\runtime.js %SOURCE_DIR%\v8natives.js %SOURCE_DIR%\array.js %SOURCE_DIR%\string.js %SOURCE_DIR%\uri.js %SOURCE_DIR%\math.js %SOURCE_DIR%\messages.js %SOURCE_DIR%\apinatives.js %SOURCE_DIR%\debug-delay.js %SOURCE_DIR%\mirror-delay.js %SOURCE_DIR%\date-delay.js %SOURCE_DIR%\regexp-delay.js %SOURCE_DIR%\json-delay.js
|