HomeSort by relevance Sort by last modified time
    Searched refs:ImmutableArrayEncodedValue (Results 1 - 4 of 4) sorted by null

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableArrayEncodedValue.java 42 public class ImmutableArrayEncodedValue extends BaseArrayEncodedValue implements ImmutableEncodedValue {
45 public ImmutableArrayEncodedValue(@Nonnull Collection<? extends EncodedValue> value) {
49 public ImmutableArrayEncodedValue(@Nonnull ImmutableList<ImmutableEncodedValue> value) {
53 public static ImmutableArrayEncodedValue of(@Nonnull ArrayEncodedValue arrayEncodedValue) {
54 if (arrayEncodedValue instanceof ImmutableArrayEncodedValue) {
55 return (ImmutableArrayEncodedValue)arrayEncodedValue;
57 return new ImmutableArrayEncodedValue(arrayEncodedValue.getValue());
ImmutableEncodedValueFactory.java 73 return ImmutableArrayEncodedValue.of((ArrayEncodedValue)encodedValue);
  /external/smali/smali/src/main/antlr3/
smaliTreeWalker.g 283 | array_literal { $encodedValue = new ImmutableArrayEncodedValue($array_literal.elements); }
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java     [all...]

Completed in 321 milliseconds