/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/ |
Type.java | 12 LONG(0, "0l", ".longValue()", "java.lang.Long", Long.TYPE),
|
/libcore/json/src/main/java/org/json/ |
JSON.java | 76 return ((Number) value).longValue();
|
/libcore/luni/src/test/java/libcore/java/util/prefs/ |
OldAbstractPreferencesTest.java | 155 String[] keyArray = new String[]{"Value", "DoubleValue", "LongValue", "IntValue"}; 254 pref.putLong("LongValue", new Long(Long.MIN_VALUE)); 259 assertEquals(1, pref.getInt("LongValue", new Integer(1))); 281 pref.putLong("LongValue", new Long(299792458)); 284 assertEquals(299792458L, pref.getLong("LongValue", new Long(1))); 310 pref.putLong("LongValue", new Long(1)); 320 pref.putLong("LongValue", new Long(Long.MIN_VALUE)); 325 assertEquals(Long.MIN_VALUE, pref.getLong("LongValue", new Long(1))); 339 pref.getLong("LongValue", new Long(1)); [all...] |
OldPreferencesTest.java | 38 private static final String longValue; 51 longValue = value.toString(); 438 pref.put(longKey, longValue); 440 pref.put(longKey + 1, longValue); 445 pref.put(longKey, longValue + 1); 452 pref.put(longKey, longValue + 1); 458 pref.put(longKey, longValue); [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
ComponentKey.java | 56 .getUserForSerialNumber(componentUser.longValue());
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/ |
Frequency.java | 136 obj = Long.valueOf(((Integer) v).longValue()); 143 freqTable.put(obj, Long.valueOf(count.longValue() + 1)); 170 addValue(Long.valueOf(v.longValue())); 220 result += iterator.next().longValue(); 247 return getCount(((Integer) v).longValue()); 253 result = count.longValue(); 397 return getCumFreq(((Integer) v).longValue()); 409 result = value.longValue();
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
SimpleBigDecimal.java | 164 public long longValue() 166 return floor().longValue();
|
/external/guava/guava/src/com/google/common/cache/ |
LongAdder.java | 27 * #longValue}) returns the current total combined across the 169 public long longValue() {
|
/external/guava/guava/src/com/google/common/math/ |
DoubleUtils.java | 97 return x.longValue(); 111 long twiceSignifFloor = absX.shiftRight(shift).longValue();
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/data/ |
ExecutionDataStore.java | 133 entry = new ExecutionData(id.longValue(), name, probecount); 137 entry.assertCompatibility(id.longValue(), name, probecount);
|
/external/junit/src/main/java/org/junit/runner/ |
Result.java | 167 fRunTime = result.runTime.longValue(); 168 fStartTime = result.startTime.longValue();
|
/external/proguard/src/proguard/evaluation/value/ |
DetailedArrayReferenceValue.java | 90 public LongValue longArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) 94 value.longValue() :
|
/external/r8/src/test/debugTestResources/ |
Locals.java | 166 long l = obj.longValue(); 168 l = obj.longValue();
|
/frameworks/base/tests/net/java/android/net/nsd/ |
NsdServiceInfoTest.java | 85 String longValue = "loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo" + 89 info.setAttribute("longcat", longValue); // Key + value == 255 characters.
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
TimeVal.java | 156 public long longValue() { 157 return mValue.longValue();
|
/libcore/ojluni/src/main/java/java/util/ |
UUID.java | 198 long mostSigBits = Long.decode(components[0]).longValue(); 200 mostSigBits |= Long.decode(components[1]).longValue(); 202 mostSigBits |= Long.decode(components[2]).longValue(); 204 long leastSigBits = Long.decode(components[3]).longValue(); 206 leastSigBits |= Long.decode(components[4]).longValue();
|
/packages/apps/Camera2/src/com/android/camera/settings/ |
AppUpgrader.java | 372 long longValue = (Long) value; 373 if (longValue <= Integer.MAX_VALUE && longValue >= Integer.MIN_VALUE) { 374 String intValue = SettingsManager.convert((int) longValue); 378 key + " : " + longValue);
|
/sdk/eventanalyzer/src/com/android/eventanalyzer/ |
EventAnalyzer.java | 355 builder.append(list.get(index).longValue()).append(DATA_SEPARATOR); 381 builder.append(list.get(0).longValue()).append(DATA_SEPARATOR); 382 builder.append(list.get(list.size()-1).longValue()).append(DATA_SEPARATOR); 385 builder.append(list.get(list.size()/2).longValue()).append(DATA_SEPARATOR); 391 total += value.longValue();
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
ByteTest.java | 336 * java.lang.Byte#longValue() 339 assertEquals(-1L, new Byte((byte) -1).longValue()); 340 assertEquals(0L, new Byte((byte) 0).longValue()); 341 assertEquals(1L, new Byte((byte) 1).longValue()); 526 * java.lang.Byte#longValue() 529 // Test for method long java.lang.Byte.longValue() 530 assertEquals("Returned incorrect long value", 127L, new Byte((byte) 127).longValue());
|
/external/proguard/src/proguard/evaluation/ |
Stack.java | 299 * Pops the top LongValue from the stack. 301 public LongValue lpop() 303 return pop().longValue();
|
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
ConcatTest.java | 160 LongStream result = LongStream.concat(s1.mapToLong(Integer::longValue), 161 s2.mapToLong(Integer::longValue)); 164 expected.stream().mapToLong(Integer::longValue).spliterator());
|
/external/apache-xml/src/main/java/org/apache/xalan/xslt/ |
SecuritySupport12.java | 143 })).longValue();
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
SecuritySupport12.java | 143 })).longValue();
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
SecuritySupport12.java | 143 })).longValue();
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
SecuritySupport12.java | 140 })).longValue();
|