OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImmutableTypeEncodedValue
(Results
1 - 4
of
4
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableTypeEncodedValue.java
39
public class
ImmutableTypeEncodedValue
extends BaseTypeEncodedValue implements ImmutableEncodedValue {
42
public
ImmutableTypeEncodedValue
(@Nonnull String value) {
46
public static
ImmutableTypeEncodedValue
of(@Nonnull TypeEncodedValue typeEncodedValue) {
47
if (typeEncodedValue instanceof
ImmutableTypeEncodedValue
) {
48
return (
ImmutableTypeEncodedValue
)typeEncodedValue;
50
return new
ImmutableTypeEncodedValue
(typeEncodedValue.getValue());
ImmutableEncodedValueFactory.java
65
return
ImmutableTypeEncodedValue
.of((TypeEncodedValue)encodedValue);
/external/smali/smali/src/main/antlr3/
smaliTreeWalker.g
282
| type_descriptor { $encodedValue = new
ImmutableTypeEncodedValue
($type_descriptor.type); }
[
all
...]
/external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java
[
all
...]
Completed in 300 milliseconds