HomeSort by relevance Sort by last modified time
    Searched refs:integerValue (Results 1 - 25 of 50) 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...]
  /art/test/715-clinit-implicit-parameter-annotations/src/
Main.java 146 private final int integerValue;
148 LocalClass(@AnnotationA int integerValue) {
149 this.integerValue = integerValue;
  /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;
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 77 private String getInsertCommand(String textValue, int integerValue) {
80 + "VALUES ('" + textValue + "', " + integerValue + ");";
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRules.java 557 final long integerValue;
628 return integerValue;
678 integerValue = n > MAX
681 hasIntegerValue = source == integerValue;
839 case i: return integerValue;
867 if (integerValue != other.integerValue) {
868 return integerValue < other.integerValue ? -1 : 1;
946 return (int)integerValue;
    [all...]
PluralSamples.java 198 result.add((int)base1.integerValue);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralRules.java 542 final long integerValue;
601 return integerValue;
647 integerValue = n > MAX
650 hasIntegerValue = source == integerValue;
803 case i: return integerValue;
829 if (integerValue != other.integerValue) {
830 return integerValue < other.integerValue ? -1 : 1;
903 return (int)integerValue;
    [all...]
PluralSamples.java 196 result.add((int)base1.integerValue);
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.h 177 const APSInt &integerValue() const { return IntVal; }
MIParser.cpp     [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/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 329 ScopedLocalRef<jobject> integerValue(env, integerValueOf(env, value));
330 if (integerValue.get() == NULL) return false;
332 env->SetObjectField(obj, fid, integerValue.get());
    [all...]
  /external/sqlite/dist/orig/
shell.c 666 static sqlite3_int64 integerValue(const char *zArg){
    [all...]
  /external/sqlite/dist/
shell.c 672 static sqlite3_int64 integerValue(const char *zArg){
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java 467 int value = pushedValue.integerValue().value();
    [all...]

Completed in 1670 milliseconds

1 2