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

1 2

  /external/proguard/src/proguard/evaluation/value/
NegatedIntegerValue.java 24 * This IntegerValue represents a integer value that is negated.
30 private final IntegerValue integerValue;
36 public NegatedIntegerValue(IntegerValue integerValue)
38 this.integerValue = integerValue;
42 // Implementations of unary methods of IntegerValue.
44 public IntegerValue negate()
46 return integerValue;
    [all...]
Value.java 61 * Returns this Value as an IntegerValue.
63 public IntegerValue integerValue()
DetailedArrayReferenceValue.java 46 IntegerValue arrayLength,
81 public IntegerValue integerArrayLoad(IntegerValue indexValue, ValueFactory valueFactory)
85 value.integerValue() :
90 public LongValue longArrayLoad(IntegerValue indexValue, ValueFactory valueFactory)
99 public FloatValue floatArrayLoad(IntegerValue indexValue, ValueFactory valueFactory)
108 public DoubleValue doubleArrayLoad(IntegerValue indexValue, ValueFactory valueFactory)
117 public ReferenceValue referenceArrayLoad(IntegerValue indexValue, ValueFactory valueFactory)
130 private Value arrayLoad(IntegerValue indexValue, ValueFactory valueFactory)
147 public void arrayStore(IntegerValue indexValue, Value value
    [all...]
IntegerValue.java 30 public abstract class IntegerValue extends Category1Value
44 * Returns the negated value of this IntegerValue.
46 public abstract IntegerValue negate();
49 * Converts this IntegerValue to a byte IntegerValue.
51 public abstract IntegerValue convertToByte();
54 * Converts this IntegerValue to a character IntegerValue.
56 public abstract IntegerValue convertToCharacter();
59 * Converts this IntegerValue to a short IntegerValue
    [all...]
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
RTCICECandidate+JSON.m 27 NSInteger mLineIndex = [num integerValue];
ARDStatsBuilder.m 190 NSInteger byteCount = value.integerValue;
194 NSInteger byteCount = value.integerValue;
220 NSInteger byteCount = value.integerValue;
248 NSInteger byteCount = value.integerValue;
272 NSInteger byteCount = value.integerValue;
300 NSInteger byteCount = value.integerValue;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRules.java 466 public final long integerValue;
540 return integerValue;
590 integerValue = n > MAX
593 hasIntegerValue = source == integerValue;
749 case i: return integerValue;
775 if (integerValue != other.integerValue) {
776 return integerValue < other.integerValue ? -1 : 1;
854 return (int)integerValue;
    [all...]
PluralSamples.java 196 result.add((int)base1.integerValue);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralRules.java 463 public final long integerValue;
529 return integerValue;
575 integerValue = n > MAX
578 hasIntegerValue = source == integerValue;
728 case i: return integerValue;
752 if (integerValue != other.integerValue) {
753 return integerValue < other.integerValue ? -1 : 1;
826 return (int)integerValue;
    [all...]
PluralSamples.java 194 result.add((int)base1.integerValue);
  /external/messageformat/java/com/ibm/icu/simple/
PluralRules.java 451 public final long integerValue;
517 return integerValue;
563 integerValue = n > MAX
566 hasIntegerValue = source == integerValue;
713 case i: return integerValue;
737 if (integerValue != other.integerValue) {
738 return integerValue < other.integerValue ? -1 : 1;
811 return (int)integerValue;
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.h 174 const APSInt &integerValue() const { return IntVal; }
MIParser.cpp 951 const APSInt &Int = Token.integerValue();
    [all...]
  /external/proguard/src/proguard/evaluation/
Variables.java 223 * Loads the IntegerValue from the variable with the given index.
225 public IntegerValue iload(int index)
227 return load(index).integerValue();
Stack.java 290 * Pops the top IntegerValue from the stack.
292 public IntegerValue ipop()
294 return pop().integerValue();
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DexWriterSleb128Test.java 228 private void performTest(int integerValue, byte[] encodedValue) throws IOException {
229 performTest(integerValue, encodedValue, encodedValue.length);
232 private void performTest(int integerValue, byte[] encodedValue, int encodedLength) throws IOException {
235 writer.writeSleb128(integerValue);
DexWriterUleb128Test.java 225 private void performTest(int integerValue, byte[] encodedValue) throws IOException {
226 performTest(integerValue, encodedValue, encodedValue.length);
229 private void performTest(int integerValue, byte[] encodedValue, int encodedLength) throws IOException {
232 writer.writeUleb128(integerValue);
DexDataWriterTest.java 209 private void testWriteEncodedIntHelper(int integerValue, int... encodedValue) throws IOException {
211 writer.writeEncodedInt(ValueType.INT, integerValue);
243 private void testWriteEncodedUintHelper(int integerValue, int... encodedValue) throws IOException {
245 writer.writeEncodedUint(ValueType.METHOD, integerValue);
  /external/sqlite/dist/orig/
shell.c     [all...]
  /external/sqlite/dist/
shell.c     [all...]
  /external/webrtc/talk/app/webrtc/objc/
avfoundationvideocapturer.mm 168 if ([version integerValue] >= 7) {
  /external/webrtc/webrtc/modules/video_capture/ios/
rtc_video_capture_ios_objc.mm 49 if ([version integerValue] >= 7) {
  /libcore/luni/src/main/native/
libcore_icu_ICU.cpp 324 ScopedLocalRef<jobject> integerValue(env, integerValueOf(env, value));
325 if (integerValue.get() == NULL) return false;
327 env->SetObjectField(obj, fid, integerValue.get());
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java 467 int value = pushedValue.integerValue().value();
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralRulesTest.java 84 assertEquals(testDouble[0] + " integerValue", (long) testDouble[3], fd.integerValue);
    [all...]

Completed in 1340 milliseconds

1 2