HomeSort by relevance Sort by last modified time
    Searched refs:setLong (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/icu4c/samples/msgfmt/answers/
main_2.cpp 33 msgArgs[0].setLong(argc-1);
main_3.cpp 33 msgArgs[0].setLong(argc-1);
  /external/icu4c/samples/msgfmt/
main.cpp 33 msgArgs[0].setLong(argc-1);
  /libcore/luni/src/main/java/org/apache/harmony/luni/platform/
OSMemory.java 387 public static native void setLong(int address, long value);
389 public static void setLong(int address, long value, ByteOrder byteOrder) {
391 setLong(address, value);
393 setLong(address, Long.reverseBytes(value));
490 setLong(address, Long.reverseBytes(doubleBits));
PlatformAddress.java 203 public final void setLong(int offset, long value, ByteOrder order) {
205 OSMemory.setLong(osaddr + offset, value, order);
208 public final void setLong(int offset, long value) {
210 OSMemory.setLong(osaddr + offset, value);
  /libcore/luni/src/test/java/com/google/coretests/
StatsStore.java 164 updateStmt.setLong(pos, a.lastBestAt); pos++;
166 updateStmt.setLong(pos, a.duration); pos++;
169 updateStmt.setLong(pos, a.statMinDuration); pos++;
170 updateStmt.setLong(pos, a.statMaxDuration); pos++;
175 insertDetStmt.setLong(pos, now); pos++;
178 insertDetStmt.setLong(pos, a.duration); pos++;
183 insertEventStmt.setLong(pos, now); pos++;
186 insertEventStmt.setLong(pos, a.duration); pos++;
  /external/chromium/third_party/icu/source/test/intltest/
tfsmalls.cpp 174 fta.setLong(1); ftb.setLong(2);
176 it_logln("FT setLong, operator== and operator!= tested.");
185 it_errln("*** Formattable setLong or operator== or !=");
348 ft_arr.setLong(0); // calls 'dispose' and deletes adopted array !
359 fta.setLong(0); // calls 'dispose' and deletes adopted string !
  /external/icu4c/test/intltest/
tfsmalls.cpp 174 fta.setLong(1); ftb.setLong(2);
176 it_logln("FT setLong, operator== and operator!= tested.");
185 it_errln("*** Formattable setLong or operator== or !=");
348 ft_arr.setLong(0); // calls 'dispose' and deletes adopted array !
359 fta.setLong(0); // calls 'dispose' and deletes adopted string !
  /libcore/luni/src/main/java/java/lang/reflect/
Array.java 536 setLong(array, index, ((Long) value).longValue());
716 setLong(array, index, value);
739 public static void setLong(Object array, int index, long value)
Field.java 781 public void setLong(Object object, long value) throws IllegalAccessException,
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java 295 setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
318 setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
384 setLong(PASSWORD_TYPE_KEY, computedQuality);
482 setLong(LOCK_PASSWORD_SALT_KEY, salt);
588 setLong(LOCKOUT_ATTEMPT_DEADLINE, deadline);
654 private void setLong(String secureSettingKey, long value) {
  /libcore/luni/src/main/java/java/nio/
ReadWriteDirectByteBuffer.java 324 getBaseAddress().setLong(offset + position, value, order);
334 getBaseAddress().setLong(offset + index, value, order);
  /external/chromium/third_party/icu/public/i18n/unicode/
fmtable.h 457 void setLong(int32_t l);
  /external/icu4c/i18n/unicode/
fmtable.h 497 void setLong(int32_t l);
  /libcore/luni/src/main/java/java/sql/
PreparedStatement.java 402 public void setLong(int parameterIndex, long theLong) throws SQLException;
    [all...]
CallableStatement.java     [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ArrayTest.java 1017 * @tests java.lang.reflect.Array#setLong(java.lang.Object, int, long)
1022 method = "setLong",
1027 // java.lang.reflect.Array.setLong(java.lang.Object, int, long)
1031 Array.setLong(x, 0, 1);
1037 Array.setLong(new Object(), 0, 9);
1047 Array.setLong(x, 4, 9);
1058 Array.setLong(null, 0, 0);
    [all...]
FieldTest.java 328 f.setLong(o, ((Long) value).longValue());
384 * @tests java.lang.reflect.Field#setLong(java.lang.Object, long)
471 method = "setLong",
    [all...]
  /libcore/luni/src/main/java/javax/sql/
RowSet.java     [all...]
  /dalvik/tests/046-reflect/src/
Main.java 178 field.setLong(instance, 0x9988776655443322L);
210 field.setLong(instance, 123);
  /frameworks/base/core/java/android/widget/
RemoteViews.java 689 setLong(viewId, "setBase", base);
822 public void setLong(int viewId, String methodName, long value) {
    [all...]
  /frameworks/base/core/java/android/app/
Notification.java 507 contentView.setLong(com.android.internal.R.id.time, "setTime", when);
  /cts/tests/tests/widget/src/android/widget/cts/
RemoteViewsTest.java 687 method = "setLong",
695 mRemoteViews.setLong(R.id.remoteView_chronometer, "setBase", base1);
699 mRemoteViews.setLong(R.id.remoteView_chronometer, "setBase", base2);
703 mRemoteViews.setLong(R.id.remoteView_absolute, "setBase", base1);
  /external/chromium/third_party/icu/source/i18n/
fmtable.cpp 477 Formattable::setLong(int32_t l)
  /libcore/luni/src/main/native/
org_apache_harmony_luni_platform_OSMemory.cpp 357 NATIVE_METHOD(OSMemory, setLong, "(IJ)V"),

Completed in 1662 milliseconds

1 2 3