/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorState.h | 69 void setLong(const String& propertyName, long value) { setValue(propertyName, JSONBasicValue::create((double)value)); }
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowSQLiteProgram.java | 63 actualDBstatement.setLong(index,value);
|
/libcore/luni/src/main/java/java/lang/reflect/ |
Array.java | 419 setLong(array, index, ((Long) value).longValue()); 572 public static void setLong(Object array, int index, long value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
|
/libcore/luni/src/main/java/java/sql/ |
PreparedStatement.java | 402 public void setLong(int parameterIndex, long theLong) throws SQLException; [all...] |
CallableStatement.java | [all...] |
/art/test/045-reflect-array/src/ |
Main.java | 140 Array.setLong(longArray, 1, 0x1122334455667788L);
|
/dalvik/tests/045-reflect-array/src/ |
Main.java | 139 Array.setLong(longArray, 1, 0x1122334455667788L);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/ |
ArrayTest.java | 607 * @tests java.lang.reflect.Array#setLong(java.lang.Object, int, long) 611 // java.lang.reflect.Array.setLong(java.lang.Object, int, long) 614 Array.setLong(x, 0, (long) 1); 618 Array.setLong(new Object(), 0, (long) 9); 628 Array.setLong(x, 4, (long) 9);
|
FieldTest.java | 202 f.setLong(o, ((Long) value).longValue()); 255 * @tests java.lang.reflect.Field#setLong(java.lang.Object, long) [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
fmtable.cpp | 520 Formattable::setLong(int32_t l)
|
/external/icu4c/i18n/ |
fmtable.cpp | 540 Formattable::setLong(int32_t l)
|
/frameworks/base/media/java/android/media/ |
MediaFormat.java | 337 public final void setLong(String name, long value) {
|
/libcore/libart/src/main/java/java/lang/reflect/ |
Field.java | 728 public native void setLong(Object object, long value) throws IllegalAccessException, [all...] |
/libcore/luni/src/main/java/javax/sql/ |
RowSet.java | [all...] |
/libcore/luni/src/test/java/tests/api/java/lang/reflect/ |
ArrayTest.java | 897 * java.lang.reflect.Array#setLong(java.lang.Object, int, long) 901 // java.lang.reflect.Array.setLong(java.lang.Object, int, long) 905 Array.setLong(x, 0, 1); 911 Array.setLong(new Object(), 0, 9); 921 Array.setLong(x, 4, 9); 932 Array.setLong(null, 0, 0);
|
/external/javassist/src/test/test/javassist/convert/ |
ArrayAccessReplaceTest.java | 92 simple.setLong(i, i); 260 public void setLong(int pos, long value); 369 public void setLong(int pos, long value) {
|
/art/test/100-reflect2/src/ |
Main.java | 63 f.setLong(null, 63);
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
ArrayTest.java | 213 try { Array.setLong(booleans, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} 214 try { Array.setLong(bytes, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} 215 try { Array.setLong(chars, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} 216 Array.setLong(doubles, 0, longs[0]); 217 Array.setLong(floats, 0, longs[0]); 218 try { Array.setLong(ints, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} 219 Array.setLong(longs, 0, longs[0]); 220 try { Array.setLong(shorts, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} 221 try { Array.setLong(null, 0, longs[0]); fail(); } catch (NullPointerException expected) {}
|
/art/test/046-reflect/src/ |
Main.java | 241 field.setLong(instance, 0x9988776655443322L); 273 field.setLong(instance, 123);
|
/dalvik/tests/046-reflect/src/ |
Main.java | 227 field.setLong(instance, 0x9988776655443322L); 259 field.setLong(instance, 123);
|
/external/nist-sip/java/gov/nist/core/ |
GenericObject.java | 254 f.setLong(this, longField);
|
/frameworks/base/core/java/android/net/ |
NetworkStatsHistory.java | 428 setLong(activeTime, index, 0L); 429 setLong(rxBytes, index, 0L); 430 setLong(rxPackets, index, 0L); 431 setLong(txBytes, index, 0L); 432 setLong(txPackets, index, 0L); 433 setLong(operations, index, 0L); 622 private static void setLong(long[] array, int i, long value) {
|
/libcore/libdvm/src/main/java/java/lang/reflect/ |
Field.java | 808 public void setLong(Object object, long value) throws IllegalAccessException [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
EntrySchema.java | 124 field.setLong(object, cursor.getLong(columnIndex));
|
/cts/tests/tests/widget/src/android/widget/cts/ |
RemoteViewsTest.java | 544 mRemoteViews.setLong(R.id.remoteView_chronometer, "setBase", base1); 548 mRemoteViews.setLong(R.id.remoteView_chronometer, "setBase", base2); 552 mRemoteViews.setLong(R.id.remoteView_absolute, "setBase", base1);
|