OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImmutableAnnotation
(Results
1 - 8
of
8
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableAnnotation.java
45
public class
ImmutableAnnotation
extends BaseAnnotation {
50
public
ImmutableAnnotation
(int visibility,
58
public
ImmutableAnnotation
(int visibility,
66
public static
ImmutableAnnotation
of(Annotation annotation) {
67
if (annotation instanceof
ImmutableAnnotation
) {
68
return (
ImmutableAnnotation
)annotation;
70
return new
ImmutableAnnotation
(
81
public static ImmutableSet<
ImmutableAnnotation
> immutableSetOf(@Nullable Iterable<? extends Annotation> list) {
85
private static final ImmutableConverter<
ImmutableAnnotation
, Annotation> CONVERTER =
86
new ImmutableConverter<
ImmutableAnnotation
, Annotation>()
[
all
...]
ImmutableMethodParameter.java
48
@Nonnull protected final ImmutableSet<? extends
ImmutableAnnotation
> annotations;
55
this.annotations =
ImmutableAnnotation
.immutableSetOf(annotations);
60
@Nullable ImmutableSet<? extends
ImmutableAnnotation
> annotations,
ImmutableField.java
56
@Nonnull protected final ImmutableSet<? extends
ImmutableAnnotation
> annotations;
69
this.annotations =
ImmutableAnnotation
.immutableSetOf(annotations);
77
@Nullable ImmutableSet<? extends
ImmutableAnnotation
> annotations) {
104
@Nonnull @Override public ImmutableSet<? extends
ImmutableAnnotation
> getAnnotations() { return annotations; }
ImmutableMethod.java
56
@Nonnull protected final ImmutableSet<? extends
ImmutableAnnotation
> annotations;
71
this.annotations =
ImmutableAnnotation
.immutableSetOf(annotations);
80
@Nullable ImmutableSet<? extends
ImmutableAnnotation
> annotations,
111
@Override @Nonnull public ImmutableSet<? extends
ImmutableAnnotation
> getAnnotations() { return annotations; }
ImmutableClassDef.java
57
@Nonnull protected final ImmutableSet<? extends
ImmutableAnnotation
> annotations;
83
this.annotations =
ImmutableAnnotation
.immutableSetOf(annotations);
105
this.annotations =
ImmutableAnnotation
.immutableSetOf(annotations);
117
@Nullable ImmutableSet<? extends
ImmutableAnnotation
> annotations,
156
@Nonnull @Override public ImmutableSet<? extends
ImmutableAnnotation
> getAnnotations() { return annotations; }
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DexWriterTest.java
44
import org.jf.dexlib2.immutable.
ImmutableAnnotation
;
64
ImmutableAnnotation
annotation = new
ImmutableAnnotation
(AnnotationVisibility.RUNTIME,
/external/smali/smali/src/main/antlr3/
smaliTreeWalker.g
61
import org.jf.dexlib2.immutable.
ImmutableAnnotation
;
[
all
...]
/external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java
27
import org.jf.dexlib2.immutable.
ImmutableAnnotation
;
[
all
...]
Completed in 408 milliseconds