HomeSort by relevance Sort by last modified time
    Searched full:longvalue (Results 1 - 25 of 1553) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
LongValue.java 30 public abstract class LongValue extends Category2Value
44 * Returns the negated value of this LongValue.
46 public abstract LongValue negate();
50 * Converts this LongValue to an IntegerValue.
55 * Converts this LongValue to a FloatValue.
60 * Converts this LongValue to a DoubleValue.
68 * Returns the generalization of this LongValue and the given other
69 * LongValue.
71 public LongValue generalize(LongValue other
    [all...]
UnknownLongValue.java 28 public class UnknownLongValue extends LongValue
32 public LongValue negate()
55 public LongValue generalize(LongValue other)
60 public LongValue add(LongValue other)
65 public LongValue subtract(LongValue other)
70 public LongValue subtractFrom(LongValue other
    [all...]
NegatedLongValue.java 24 * This LongValue represents a long value that is negated.
30 private final LongValue longValue;
36 public NegatedLongValue(LongValue longValue)
38 this.longValue = longValue;
42 // Implementations of unary methods of LongValue.
44 public LongValue negate()
46 return longValue;
    [all...]
ParticularLongValue.java 24 * This LongValue represents a particular long value.
42 // Implementations for LongValue.
50 // Implementations of unary methods of LongValue.
52 public LongValue negate()
73 // Implementations of binary methods of LongValue.
75 public LongValue generalize(LongValue other)
80 public LongValue add(LongValue other)
85 public LongValue subtract(LongValue other
    [all...]
SpecificLongValue.java 24 * This LongValue represents a specific long value.
28 abstract class SpecificLongValue extends LongValue
30 // Implementations of unary methods of LongValue.
32 public LongValue negate()
53 // Implementations of binary methods of LongValue.
55 public LongValue generalize(LongValue other)
60 public LongValue add(LongValue other)
65 public LongValue subtract(LongValue other
    [all...]
UnknownIntegerValue.java 52 public LongValue convertToLong()
151 public LongValue shiftLeftOf(LongValue other)
156 public LongValue shiftRightOf(LongValue other)
161 public LongValue unsignedShiftRightOf(LongValue other)
ParticularIntegerValue.java 84 public LongValue convertToLong()
181 public LongValue shiftLeftOf(LongValue other)
186 public LongValue shiftRightOf(LongValue other)
191 public LongValue unsignedShiftRightOf(LongValue other)
309 public LongValue shiftLeftOf(ParticularLongValue other)
314 public LongValue shiftRightOf(ParticularLongValue other)
319 public LongValue unsignedShiftRightOf(ParticularLongValue other
    [all...]
SpecificIntegerValue.java 52 public LongValue convertToLong()
149 public LongValue shiftLeftOf(LongValue other)
154 public LongValue shiftRightOf(LongValue other)
159 public LongValue unsignedShiftRightOf(LongValue other)
281 public LongValue shiftLeftOf(SpecificLongValue other)
286 public LongValue shiftRightOf(SpecificLongValue other)
291 public LongValue unsignedShiftRightOf(SpecificLongValue other
    [all...]
ValueFactory.java 35 static final LongValue LONG_VALUE = new UnknownLongValue();
88 * Creates a new LongValue with an undefined value.
90 public LongValue createLongValue()
96 * Creates a new LongValue with a given particular value.
98 public LongValue createLongValue(long value)
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
MemHealthParserTest.java 55 assertEquals(10910, process.get("native_avg").longValue());
56 assertEquals(8011, process.get("dalvik_avg").longValue());
57 assertEquals(90454, process.get("pss_avg").longValue());
58 assertEquals(11136, process.get("native_peak").longValue());
59 assertEquals(9812, process.get("dalvik_peak").longValue());
60 assertEquals(95161, process.get("pss_peak").longValue());
61 assertEquals(8223, process.get("summary_java_heap_avg").longValue());
62 assertEquals(3852, process.get("summary_native_heap_avg").longValue());
63 assertEquals(1804, process.get("summary_code_avg").longValue());
64 assertEquals(246, process.get("summary_stack_avg").longValue());
    [all...]
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
JitterVerificationTest.java 78 assertEquals(1, deltaValues.get(0).longValue());
79 assertEquals(1, deltaValues.get(1).longValue());
80 assertEquals(1, deltaValues.get(2).longValue());
81 assertEquals(1, deltaValues.get(3).longValue());
87 assertEquals(0, deltaValues.get(0).longValue());
88 assertEquals(2, deltaValues.get(1).longValue());
89 assertEquals(2, deltaValues.get(2).longValue());
90 assertEquals(0, deltaValues.get(3).longValue());
96 assertEquals(1, deltaValues.get(0).longValue());
97 assertEquals(3, deltaValues.get(1).longValue());
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ConcurrentHashMap8Test.java 335 sp.forEachRemaining((Integer x) -> adder.add(x.longValue()));
337 sp2.forEachRemaining((Integer x) -> adder.add(x.longValue()));
579 (Long.valueOf(x.getKey().longValue() + y.getKey().longValue()),
590 m.forEachKey(Long.MAX_VALUE, (Long x) -> adder.add(x.longValue()));
600 m.forEachValue(Long.MAX_VALUE, (Long x) -> adder.add(x.longValue()));
610 m.forEach(Long.MAX_VALUE, (Long x, Long y) -> adder.add(x.longValue() + y.longValue()));
620 m.forEachEntry(Long.MAX_VALUE, (Map.Entry<Long,Long> e) -> adder.add(e.getKey().longValue() + e.getValue().longValue()));
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
FormatterTest.java 61 assertEquals("1.00 kB", Formatter.formatFileSize(context, bd.pow(1).longValue()));
62 assertEquals("1.50 kB", Formatter.formatFileSize(context, bd.pow(1).longValue() * 3 / 2));
63 assertEquals("12.50 kB", Formatter.formatFileSize(context, bd.pow(1).longValue() * 25 / 2));
65 assertEquals("1.00 MB", Formatter.formatFileSize(context, bd.pow(2).longValue()));
67 assertEquals("1.00 GB", Formatter.formatFileSize(context, bd.pow(3).longValue()));
69 assertEquals("1.00 TB", Formatter.formatFileSize(context, bd.pow(4).longValue()));
71 assertEquals("1.00 PB", Formatter.formatFileSize(context, bd.pow(5).longValue()));
73 assertEquals("1000 PB", Formatter.formatFileSize(context, bd.pow(6).longValue()));
101 assertEquals("1.0 kB", Formatter.formatShortFileSize(context, bd.pow(1).longValue()));
103 bd.pow(1).longValue() * 3 / 2))
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
LongTest.java 111 assertEquals(0, Long.decode("+0").longValue());
112 assertEquals(473, Long.decode("+473").longValue());
113 assertEquals(255, Long.decode("+0xFF").longValue());
114 assertEquals(16, Long.decode("+020").longValue());
115 assertEquals(Long.MAX_VALUE, Long.decode("+" + Long.MAX_VALUE).longValue());
116 assertEquals(-73, Long.decode("-73").longValue());
117 assertEquals(-255, Long.decode("-0xFF").longValue());
118 assertEquals(255, Long.decode("+#FF").longValue());
119 assertEquals(-255, Long.decode("-#FF").longValue());
191 long uq = Long.divideUnsigned(dividend.longValue(), divisor.longValue())
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_GetPutFields.java 42 public long longValue = 0;
82 longValue = 6700654321L;
99 longValue == other.longValue &&
113 longValue = getField.get("longValue", (long) 0);
127 putField.put("longValue", longValue);
Support_GetPutFieldsDeprecated.java 44 public long longValue = 0;
84 longValue = 1560732321L;
101 longValue == other.longValue &&
114 longValue = getField.get("longValue", (long) 0);
128 putField.put("longValue", longValue);
  /art/test/593-checker-long-2-float-regression/src/
Main.java 20 static long longValue;
39 longValue = $inline$returnConst();
40 return (float) longValue;
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
UnsignedLongTest.java 61 UnsignedLongs.toString(value), value, UnsignedLong.fromLongBits(value).longValue());
79 assertEquals(value, UnsignedLong.valueOf(value).longValue());
141 .longValue();
143 assertEquals(expected, unsignedSum.longValue());
156 .longValue();
158 assertEquals(expected, unsignedSub.longValue());
171 .longValue();
173 assertEquals(expected, unsignedMul.longValue());
187 .longValue();
189 assertEquals(expected, unsignedDiv.longValue());
    [all...]
  /art/test/406-fields/src/
Main.java 37 long longValue = -1122198787987987987L;
42 fields.iJ = longValue;
52 assertEquals(longValue, fields.iJ);
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedLongTest.java 65 UnsignedLongs.toString(value), value, UnsignedLong.fromLongBits(value).longValue());
83 assertEquals(value, UnsignedLong.valueOf(value).longValue());
155 .longValue();
157 assertEquals(expected, unsignedSum.longValue());
170 .longValue();
172 assertEquals(expected, unsignedSub.longValue());
185 .longValue();
187 assertEquals(expected, unsignedMul.longValue());
201 .longValue();
203 assertEquals(expected, unsignedDiv.longValue());
    [all...]
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyLongValue.java 35 import com.sun.jdi.LongValue;
38 public class LazyLongValue extends LazyComparablePrimitiveValue<LongValue> implements LongValue {
  /external/r8/src/test/java/com/android/tools/r8/debuginfo/
ExceptionLocalTest.java 11 long l = obj.longValue();
13 l = obj.longValue();
  /external/smali/examples/AnnotationValues/
AnnotationWithValues.smali 20 .method public abstract longValue()J
55 longValue = 5l
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /art/test/414-static-fields/src/
Main.java 66 long longValue = -1122198787987987987L;
72 sJ = longValue;
82 assertEquals(longValue, sJ);

Completed in 638 milliseconds

1 2 3 4 5 6 7 8 91011>>