HomeSort by relevance Sort by last modified time
    Searched full:longvalue (Results 1 - 25 of 829) 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)
CompositeLongValue.java 24 * This LongValue represents the result of a binary operation on two long
44 private final LongValue longValue1;
53 public CompositeLongValue(LongValue longValue1,
IntegerValue.java 64 * Converts this IntegerValue to a LongValue.
66 public abstract LongValue convertToLong();
167 * Returns the given LongValue, shifted left by this IntegerValue.
169 public abstract LongValue shiftLeftOf(LongValue other);
172 * Returns the given LongValue, shifted right by this IntegerValue.
174 public abstract LongValue shiftRightOf(LongValue other);
177 * Returns the given unsigned LongValue, shifted right by this IntegerValue.
179 public abstract LongValue unsignedShiftRightOf(LongValue other)
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
FormatterTest.java 39 assertEquals("1.00 KB", Formatter.formatFileSize(mContext, bd.pow(1).longValue()));
41 assertEquals("1.00 MB", Formatter.formatFileSize(mContext, bd.pow(2).longValue()));
43 assertEquals("1.00 GB", Formatter.formatFileSize(mContext, bd.pow(3).longValue()));
45 assertEquals("1.00 TB", Formatter.formatFileSize(mContext, bd.pow(4).longValue()));
47 assertEquals("1.00 PB", Formatter.formatFileSize(mContext, bd.pow(5).longValue()));
49 assertEquals("1024 PB", Formatter.formatFileSize(mContext, bd.pow(6).longValue()));
  /libcore/luni/src/test/java/libcore/java/lang/
LongTest.java 108 assertEquals(0, Long.decode("+0").longValue());
109 assertEquals(473, Long.decode("+473").longValue());
110 assertEquals(255, Long.decode("+0xFF").longValue());
111 assertEquals(16, Long.decode("+020").longValue());
112 assertEquals(Long.MAX_VALUE, Long.decode("+" + Long.MAX_VALUE).longValue());
113 assertEquals(-73, Long.decode("-73").longValue());
114 assertEquals(-255, Long.decode("-0xFF").longValue());
115 assertEquals(255, Long.decode("+#FF").longValue());
116 assertEquals(-255, Long.decode("-#FF").longValue());
  /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);
  /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/examples/AnnotationValues/
AnnotationWithValues.smali 20 .method public abstract longValue()J
55 longValue = 5l
Main.smali 5 #@AnnotationWithValues(booleanValue=false, byteValue=1, charValue=2, doubleValue=7.0, enumValue=12, floatValue=6.0, intValue=4, longValue=5, methodValue=public static void 10.11(), shortValue=3, stringValue=8, subAnnotationValue=@SubAnnotation(stringValue=9), typeValue=class 10)
  /frameworks/base/media/jni/
android_mtp_MtpDatabase.cpp 385 jlong longValue = (longValues ? longValues[0] : 0);
391 formatDateTime(longValue, date, sizeof(date));
398 snprintf(date, sizeof(date), "%04" PRId64 "0101T000000", longValue);
405 packet.putInt8(longValue);
408 packet.putUInt8(longValue);
411 packet.putInt16(longValue);
414 packet.putUInt16(longValue);
417 packet.putInt32(longValue);
420 packet.putUInt32(longValue);
423 packet.putInt64(longValue);
    [all...]