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

1 2 3 4 5 6

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
EncodedValue.java 39 public interface EncodedValue extends Comparable<EncodedValue> {
ArrayEncodedValue.java 41 public interface ArrayEncodedValue extends EncodedValue {
45 * @return A list of EncodedValue instances
47 @Nonnull List<? extends EncodedValue> getValue();
74 * Compare this ArrayEncodedValue to another EncodedValue.
78 * org.jf.util.ComparisonUtils.compareAsList(), using the natural ordering for EncodedValue.
80 * @param o The EncodedValue to compare with this ArrayEncodedValue
83 @Override int compareTo(@Nonnull EncodedValue o);
BooleanEncodedValue.java 40 public interface BooleanEncodedValue extends EncodedValue {
73 * Compare this BooleanEncodedValue to another EncodedValue.
79 * @param o The EncodedValue to compare with this BooleanEncodedValue
82 @Override int compareTo(@Nonnull EncodedValue o);
ByteEncodedValue.java 40 public interface ByteEncodedValue extends EncodedValue {
73 * Compare this ByteEncodedValue to another EncodedValue.
78 * @param o The EncodedValue to compare with this ByteEncodedValue
81 @Override int compareTo(@Nonnull EncodedValue o);
CharEncodedValue.java 40 public interface CharEncodedValue extends EncodedValue {
73 * Compare this CharEncodedValue to another EncodedValue.
78 * @param o The EncodedValue to compare with this CharEncodedValue
81 @Override int compareTo(@Nonnull EncodedValue o);
DoubleEncodedValue.java 40 public interface DoubleEncodedValue extends EncodedValue {
80 * Compare this DoubleEncodedValue to another EncodedValue.
85 * @param o The EncodedValue to compare with this DoubleEncodedValue
88 @Override int compareTo(@Nonnull EncodedValue o);
FloatEncodedValue.java 40 public interface FloatEncodedValue extends EncodedValue {
79 * Compare this FloatEncodedValue to another EncodedValue.
84 * @param o The EncodedValue to compare with this FloatEncodedValue
87 @Override int compareTo(@Nonnull EncodedValue o);
IntEncodedValue.java 40 public interface IntEncodedValue extends EncodedValue {
73 * Compare this IntEncodedValue to another EncodedValue.
78 * @param o The EncodedValue to compare with this IntEncodedValue
81 @Override int compareTo(@Nonnull EncodedValue o);
LongEncodedValue.java 40 public interface LongEncodedValue extends EncodedValue {
74 * Compare this LongEncodedValue to another EncodedValue.
79 * @param o The EncodedValue to compare with this LongEncodedValue
82 @Override int compareTo(@Nonnull EncodedValue o);
NullEncodedValue.java 40 public interface NullEncodedValue extends EncodedValue {
66 * Compare this NullEncodedValue to another EncodedValue.
71 * @param o The EncodedValue to compare with this NullEncodedValue
74 @Override int compareTo(@Nonnull EncodedValue o);
ShortEncodedValue.java 40 public interface ShortEncodedValue extends EncodedValue {
73 * Compare this ShortEncodedValue to another EncodedValue.
78 * @param o The EncodedValue to compare with this ShortEncodedValue
81 @Override int compareTo(@Nonnull EncodedValue o);
StringEncodedValue.java 40 public interface StringEncodedValue extends EncodedValue {
73 * Compare this StringEncodedValue to another EncodedValue.
78 * @param o The EncodedValue to compare with this StringEncodedValue
81 @Override int compareTo(@Nonnull EncodedValue o);
TypeEncodedValue.java 40 public interface TypeEncodedValue extends EncodedValue {
73 * Compare this TypeEncodedValue to another EncodedValue.
78 * @param o The EncodedValue to compare with this TypeEncodedValue
81 @Override int compareTo(@Nonnull EncodedValue o);
EnumEncodedValue.java 44 public interface EnumEncodedValue extends EncodedValue {
77 * Compare this EnumEncodedValue to another EncodedValue.
82 * @param o The EncodedValue to compare with this EnumEncodedValue
85 @Override int compareTo(@Nonnull EncodedValue o);
FieldEncodedValue.java 42 public interface FieldEncodedValue extends EncodedValue {
75 * Compare this FieldEncodedValue to another EncodedValue.
80 * @param o The EncodedValue to compare with this FieldEncodedValue
83 @Override int compareTo(@Nonnull EncodedValue o);
MethodEncodedValue.java 42 public interface MethodEncodedValue extends EncodedValue {
75 * Compare this MethodEncodedValue to another EncodedValue.
80 * @param o The EncodedValue to compare with this MethodEncodedValue
83 @Override int compareTo(@Nonnull EncodedValue o);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableEncodedValue.java 34 import org.jf.dexlib2.iface.value.EncodedValue;
36 public interface ImmutableEncodedValue extends EncodedValue {
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedArray.java 23 public EncodedValue[] values;
29 values = new EncodedValue[size];
31 (values[i] = new EncodedValue()).read(file);
40 for (EncodedValue encodedValue : values) {
41 encodedValue.write(file);
49 for (EncodedValue value : values) {
AnnotationElement.java 23 public EncodedValue value;
28 (value = new EncodedValue()).read(file);
  /dalvik/dx/src/com/android/dex/
EncodedValue.java 25 public final class EncodedValue implements Comparable<EncodedValue> {
28 public EncodedValue(byte[] data) {
44 @Override public int compareTo(EncodedValue other) {
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
ArrayEncodedValueAdaptor.java 29 package org.jf.baksmali.Adaptors.EncodedValue;
32 import org.jf.dexlib2.iface.value.EncodedValue;
45 Collection<? extends EncodedValue> values = arrayEncodedValue.getValue();
54 for (EncodedValue encodedValue: values) {
60 EncodedValueAdaptor.writeTo(writer, encodedValue, containingClass);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
AnnotationElement.java 34 import org.jf.dexlib2.iface.value.EncodedValue;
55 @Nonnull EncodedValue getValue();
Field.java 35 import org.jf.dexlib2.iface.value.EncodedValue;
86 @Nullable EncodedValue getInitialValue();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedAnnotationElement.java 36 import org.jf.dexlib2.iface.value.EncodedValue;
43 @Nonnull public final EncodedValue value;
52 @Nonnull @Override public EncodedValue getValue() { return value; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseNullEncodedValue.java 36 import org.jf.dexlib2.iface.value.EncodedValue;
54 public int compareTo(@Nonnull EncodedValue o) {

Completed in 521 milliseconds

1 2 3 4 5 6