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