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

1 2 3

  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
EncodedValueAdaptor.java 29 package org.jf.baksmali.Adaptors.EncodedValue;
34 import org.jf.dexlib.EncodedValue.*;
39 public static void writeTo(IndentingWriter writer, EncodedValue encodedValue) throws IOException {
40 switch (encodedValue.getValueType()) {
42 AnnotationEncodedValueAdaptor.writeTo(writer, (AnnotationEncodedValue)encodedValue);
45 ArrayEncodedValueAdaptor.writeTo(writer, (ArrayEncodedValue)encodedValue);
48 BooleanRenderer.writeTo(writer, ((BooleanEncodedValue)encodedValue).value);
51 ByteRenderer.writeTo(writer, ((ByteEncodedValue)encodedValue).value);
54 CharRenderer.writeTo(writer, ((CharEncodedValue)encodedValue).value)
    [all...]
ArrayEncodedValueAdaptor.java 29 package org.jf.baksmali.Adaptors.EncodedValue;
32 import org.jf.dexlib.EncodedValue.ArrayEncodedValue;
33 import org.jf.dexlib.EncodedValue.EncodedValue;
40 EncodedValue[] values = encodedArray.values;
49 for (EncodedValue encodedValue: encodedArray.values) {
55 EncodedValueAdaptor.writeTo(writer, encodedValue);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
EncodedValue.java 29 package org.jf.dexlib.EncodedValue;
35 public abstract class EncodedValue implements Comparable<EncodedValue> {
37 * Writes this <code>EncodedValue</code> to the given <code>AnnotatedOutput</code> object
50 public static EncodedValue readEncodedValue(DexFile dexFile, Input in) {
93 public int compareTo(EncodedValue o) {
102 * Compare the value of this <code>EncodedValue</code> against the value of the given <EncodedValue>, which
103 * is guaranteed to be of the same type as this <code>EncodedValue</code>
104 * @param o The <code>EncodedValue</code> to compare agains
    [all...]
ArrayEncodedSubValue.java 29 package org.jf.dexlib.EncodedValue;
40 public class ArrayEncodedSubValue extends EncodedValue {
43 public final EncodedValue[] values;
52 values = new EncodedValue[in.readUnsignedLeb128()];
55 values[i] = EncodedValue.readEncodedValue(dexFile, in);
63 public ArrayEncodedSubValue(EncodedValue[] values) {
74 for (EncodedValue encodedValue: values) {
77 encodedValue.writeValue(out);
82 for (EncodedValue encodedValue: values)
    [all...]
AnnotationEncodedSubValue.java 29 package org.jf.dexlib.EncodedValue;
42 public class AnnotationEncodedSubValue extends EncodedValue {
47 public final EncodedValue[] values;
58 values = new EncodedValue[names.length];
62 values[i] = EncodedValue.readEncodedValue(dexFile, in);
73 public AnnotationEncodedSubValue(TypeIdItem annotationType, StringIdItem[] names, EncodedValue[] values) {
116 protected int compareValue(EncodedValue o) {
NullEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
33 public class NullEncodedValue extends EncodedValue {
59 protected int compareValue(EncodedValue o) {
BooleanEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
33 public class BooleanEncodedValue extends EncodedValue {
91 protected int compareValue(EncodedValue o) {
ByteEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
35 public class ByteEncodedValue extends EncodedValue {
71 protected int compareValue(EncodedValue o) {
CharEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
35 public class CharEncodedValue extends EncodedValue {
78 protected int compareValue(EncodedValue o) {
DoubleEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
35 public class DoubleEncodedValue extends EncodedValue {
78 protected int compareValue(EncodedValue o) {
EnumEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
37 public class EnumEncodedValue extends EncodedValue {
80 protected int compareValue(EncodedValue o) {
FieldEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
37 public class FieldEncodedValue extends EncodedValue {
80 protected int compareValue(EncodedValue o) {
FloatEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
35 public class FloatEncodedValue extends EncodedValue {
78 protected int compareValue(EncodedValue o) {
IntEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
35 public class IntEncodedValue extends EncodedValue {
76 protected int compareValue(EncodedValue o) {
LongEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
35 public class LongEncodedValue extends EncodedValue {
76 protected int compareValue(EncodedValue o) {
MethodEncodedValue.java 29 package org.jf.dexlib.EncodedValue;
37 public class MethodEncodedValue extends EncodedValue {
80 protected int compareValue(EncodedValue o) {
  /libcore/dex/src/main/java/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) {
Annotation.java 27 private final EncodedValue encodedAnnotation;
29 public Annotation(Dex dex, byte visibility, EncodedValue encodedAnnotation) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
SubjectKeyIdentifierStructure.java 21 * @param encodedValue a DER octet encoded string with the extension structure in it.
25 byte[] encodedValue)
28 super((ASN1OctetString)X509ExtensionUtil.fromExtensionValue(encodedValue));
AuthorityKeyIdentifierStructure.java 31 * @param encodedValue a DER octet encoded string with the extension structure in it.
35 byte[] encodedValue)
38 super((ASN1Sequence)X509ExtensionUtil.fromExtensionValue(encodedValue));
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
FieldDefinition.java 31 import org.jf.baksmali.Adaptors.EncodedValue.EncodedValueAdaptor;
35 import org.jf.dexlib.EncodedValue.EncodedValue;
36 import org.jf.dexlib.EncodedValue.NullEncodedValue;
43 EncodedValue initialValue, AnnotationSetItem annotationSet,
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TypeUtils.java 31 import org.jf.dexlib.EncodedValue.*;
36 public static EncodedValue makeDefaultValueForType(String type) {
61 public static EncodedValue makeDefaultValueForType(TypeIdItem type) {
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 24 import com.android.dex.EncodedValue;
226 public EncodedValue adjustEncodedValue(EncodedValue encodedValue) {
228 new EncodedValueTransformer(out).transform(new EncodedValueReader(encodedValue));
229 return new EncodedValue(out.toByteArray());
232 public EncodedValue adjustEncodedArray(EncodedValue encodedArray) {
236 return new EncodedValue(out.toByteArray());
244 new EncodedValue(out.toByteArray()))
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCCodeEmitter.cpp 110 fixLoadStoreExclusive(const MCInst &MI, unsigned EncodedValue) const;
112 unsigned fixMOVZ(const MCInst &MI, unsigned EncodedValue) const;
114 unsigned fixMulHigh(const MCInst &MI, unsigned EncodedValue) const;
434 unsigned EncodedValue) const {
435 if (!hasRs) EncodedValue |= 0x001F0000;
436 if (!hasRt2) EncodedValue |= 0x00007C00;
438 return EncodedValue;
442 AArch64MCCodeEmitter::fixMOVZ(const MCInst &MI, unsigned EncodedValue) const {
451 return EncodedValue;
465 return EncodedValue & ~(1u << 30)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDefItem.java 31 import org.jf.dexlib.EncodedValue.ArrayEncodedSubValue;
32 import org.jf.dexlib.EncodedValue.EncodedValue;
311 public final EncodedValue value;
313 public StaticFieldInitializer(EncodedValue value, ClassDataItem.EncodedField field) {
359 EncodedValue[] values = new EncodedValue[lastIndex+1];
363 EncodedValue encodedValue = staticFieldInitializer.value;
364 if (encodedValue == null)
    [all...]

Completed in 1087 milliseconds

1 2 3