OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:immutableSetOf
(Results
1 - 8
of
8
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableClassDef.java
84
this.annotations = ImmutableAnnotation.
immutableSetOf
(annotations);
85
this.staticFields = ImmutableField.
immutableSetOf
(Iterables.filter(fields, FieldUtil.FIELD_IS_STATIC));
86
this.instanceFields = ImmutableField.
immutableSetOf
(Iterables.filter(fields, FieldUtil.FIELD_IS_INSTANCE));
87
this.directMethods = ImmutableMethod.
immutableSetOf
(Iterables.filter(methods, MethodUtil.METHOD_IS_DIRECT));
88
this.virtualMethods = ImmutableMethod.
immutableSetOf
(Iterables.filter(methods, MethodUtil.METHOD_IS_VIRTUAL));
106
this.annotations = ImmutableAnnotation.
immutableSetOf
(annotations);
107
this.staticFields = ImmutableField.
immutableSetOf
(staticFields);
108
this.instanceFields = ImmutableField.
immutableSetOf
(instanceFields);
109
this.directMethods = ImmutableMethod.
immutableSetOf
(directMethods);
110
this.virtualMethods = ImmutableMethod.
immutableSetOf
(virtualMethods)
[
all
...]
ImmutableDexFile.java
50
this.classes = ImmutableClassDef.
immutableSetOf
(classes);
61
this.classes = ImmutableClassDef.
immutableSetOf
(classes);
ImmutableAnnotation.java
55
this.elements = ImmutableAnnotationElement.
immutableSetOf
(elements);
81
public static ImmutableSet<ImmutableAnnotation>
immutableSetOf
(@Nullable Iterable<? extends Annotation> list) {
ImmutableField.java
69
this.annotations = ImmutableAnnotation.
immutableSetOf
(annotations);
107
public static ImmutableSortedSet<ImmutableField>
immutableSetOf
(@Nullable Iterable<? extends Field> list) {
ImmutableMethod.java
71
this.annotations = ImmutableAnnotation.
immutableSetOf
(annotations);
115
public static ImmutableSortedSet<ImmutableMethod>
immutableSetOf
(@Nullable Iterable<? extends Method> list) {
ImmutableAnnotationElement.java
74
public static ImmutableSet<ImmutableAnnotationElement>
immutableSetOf
(
ImmutableMethodParameter.java
55
this.annotations = ImmutableAnnotation.
immutableSetOf
(annotations);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableAnnotationEncodedValue.java
52
this.elements = ImmutableAnnotationElement.
immutableSetOf
(elements);
Completed in 353 milliseconds