OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImmutableCharEncodedValue
(Results
1 - 6
of
6
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableCharEncodedValue.java
37
public class
ImmutableCharEncodedValue
extends BaseCharEncodedValue implements ImmutableEncodedValue {
40
public
ImmutableCharEncodedValue
(char value) {
44
public static
ImmutableCharEncodedValue
of(CharEncodedValue charEncodedValue) {
45
if (charEncodedValue instanceof
ImmutableCharEncodedValue
) {
46
return (
ImmutableCharEncodedValue
)charEncodedValue;
48
return new
ImmutableCharEncodedValue
(charEncodedValue.getValue());
ImmutableEncodedValueFactory.java
53
return
ImmutableCharEncodedValue
.of((CharEncodedValue)encodedValue);
96
return new
ImmutableCharEncodedValue
((char)0);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
DexBackedEncodedValue.java
62
return new
ImmutableCharEncodedValue
((char)reader.readSizedSmallUint(valueArg + 1));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderEncodedValues.java
129
public static class BuilderCharEncodedValue extends
ImmutableCharEncodedValue
/external/smali/smali/src/main/antlr/
smaliTreeWalker.g
279
| char_literal { $encodedValue = new
ImmutableCharEncodedValue
($char_literal.value); }
[
all
...]
/external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java
[
all
...]
Completed in 249 milliseconds