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

1 2 3 4

  /external/chromium_org/tools/idl_parser/test_parser/
dictionary_web.idl 58 * Key(setLong)
68 unsigned long long setLong = 123;
  /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);
  /frameworks/base/core/java/com/android/internal/widget/
ILockSettings.aidl 22 void setLong(in String key, in long value, in int userId);
LockPatternUtils.java 440 setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED);
441 setLong(PASSWORD_TYPE_ALTERNATE_KEY, DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED);
451 setLong(DISABLE_LOCKSCREEN_KEY, disable ? 1 : 0);
505 setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
509 setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK);
510 setLong(PASSWORD_TYPE_ALTERNATE_KEY,
635 setLong(PASSWORD_TYPE_KEY, Math.max(quality, computedQuality), userHandle);
670 setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK,
672 setLong(PASSWORD_TYPE_ALTERNATE_KEY, Math.max(quality, computedQuality),
804 setLong(LOCK_PASSWORD_SALT_KEY, salt)
    [all...]
  /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) {}
  /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/chromium_org/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 !
  /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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteProgram.java 63 actualDBstatement.setLong(index,value);
  /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);
  /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) {
  /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) {
  /external/chromium_org/third_party/icu/source/i18n/unicode/
fmtable.h 497 void setLong(int32_t l);
  /external/icu4c/i18n/unicode/
fmtable.h 509 void setLong(int32_t l);
  /frameworks/base/media/java/android/media/
MediaFormat.java 337 public final void setLong(String name, long value) {
  /libcore/luni/src/main/java/java/sql/
PreparedStatement.java 402 public void setLong(int parameterIndex, long theLong) throws SQLException;
    [all...]
  /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/javax/sql/
RowSet.java     [all...]
  /frameworks/base/services/java/com/android/server/
LockSettingsService.java 138 setLong(OWNER_INFO_ENABLED, enabled ? 1 : 0, userId);
142 setLong(OWNER_INFO_ENABLED, 1, userId);
185 public void setLong(String key, long value, int userId) throws RemoteException {
  /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);

Completed in 444 milliseconds

1 2 3 4