Home
last modified time | relevance | path

Searched refs:annotations (Results 1 – 25 of 3035) sorted by relevance

12345678910>>...122

/external/annotation-tools/annotation-file-utilities/tests/system-test/
Dexpected-annos-better-UNUSED.jaif1 package annotations.tests:
4 package annotations.tests:
7 package annotations.tests:
10 package annotations.tests:
13 package annotations.tests:
16 package annotations.tests:
19 package annotations.tests:
22 package annotations.tests:
25 package annotations.tests:
28 package annotations.tests:
[all …]
Dexpected-annos.jaif1 package annotations.tests:
4 package annotations.tests:
7 package annotations.tests:
10 package annotations.tests:
13 package annotations.tests:
16 package annotations.tests:
19 package annotations.tests:
22 package annotations.tests:
25 package annotations.tests:
28 package annotations.tests:
[all …]
/external/turbine/java/com/google/turbine/bytecode/
DAttribute.java103 List<AnnotationInfo> annotations(); in annotations() method
108 List<AnnotationInfo> annotations; field in Attribute.RuntimeVisibleAnnotations
110 public RuntimeVisibleAnnotations(List<AnnotationInfo> annotations) { in RuntimeVisibleAnnotations() argument
111 this.annotations = annotations; in RuntimeVisibleAnnotations()
115 public List<AnnotationInfo> annotations() { in annotations() method in Attribute.RuntimeVisibleAnnotations
116 return annotations; in annotations()
127 List<AnnotationInfo> annotations; field in Attribute.RuntimeInvisibleAnnotations
129 public RuntimeInvisibleAnnotations(List<AnnotationInfo> annotations) { in RuntimeInvisibleAnnotations() argument
130 this.annotations = annotations; in RuntimeInvisibleAnnotations()
134 public List<AnnotationInfo> annotations() { in annotations() method in Attribute.RuntimeInvisibleAnnotations
[all …]
/external/testng/src/main/java/org/testng/internal/annotations/
DJDK15AnnotationFinder.java1 package org.testng.internal.annotations;
13 import org.testng.annotations.AfterClass;
14 import org.testng.annotations.AfterGroups;
15 import org.testng.annotations.AfterMethod;
16 import org.testng.annotations.AfterSuite;
17 import org.testng.annotations.AfterTest;
18 import org.testng.annotations.BeforeClass;
19 import org.testng.annotations.BeforeGroups;
20 import org.testng.annotations.BeforeMethod;
21 import org.testng.annotations.BeforeSuite;
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
DPackageDeclaration.java49 private NodeList<AnnotationExpr> annotations = new NodeList<>(); field in PackageDeclaration
62 public PackageDeclaration(NodeList<AnnotationExpr> annotations, Name name) { in PackageDeclaration() argument
63 this(null, annotations, name); in PackageDeclaration()
70 …public PackageDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name) { in PackageDeclaration() argument
72 setAnnotations(annotations); in PackageDeclaration()
97 return annotations; in getAnnotations()
114 public PackageDeclaration setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations() argument
115 assertNotNull(annotations); in setAnnotations()
116 if (annotations == this.annotations) { in setAnnotations()
119 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations); in setAnnotations()
[all …]
DArrayCreationLevel.java52 private NodeList<AnnotationExpr> annotations = new NodeList<>(); field in ArrayCreationLevel
67 public ArrayCreationLevel(Expression dimension, NodeList<AnnotationExpr> annotations) { in ArrayCreationLevel() argument
68 this(null, dimension, annotations); in ArrayCreationLevel()
75 …yCreationLevel(TokenRange tokenRange, Expression dimension, NodeList<AnnotationExpr> annotations) { in ArrayCreationLevel() argument
78 setAnnotations(annotations); in ArrayCreationLevel()
120 return annotations; in getAnnotations()
124 public ArrayCreationLevel setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations() argument
125 assertNotNull(annotations); in setAnnotations()
126 if (annotations == this.annotations) { in setAnnotations()
129 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations); in setAnnotations()
[all …]
/external/annotation-tools/scene-lib/test/annotations/tests/classfile/cases/
DTestLocalVariableGenericArray.jaif1 package annotations.tests.classfile.foo:
12 package annotations.tests.classfile.cases:
16 local 2 # 37 + 55 : @annotations.tests.classfile.foo.B(value="good")
18 inner-type 3, 0 : @annotations.tests.classfile.foo.B(value="first param")
19 inner-type 3, 1 : @annotations.tests.classfile.foo.B(value="second param")
22 local 1 # 8 + 26 : @annotations.tests.classfile.foo.B(value="bad")
24 inner-type 3, 0 : @annotations.tests.classfile.foo.C(fieldA=0,fieldB="String")
27 local 2 # 8 + 66 : @annotations.tests.classfile.foo.C(fieldA=0, fieldB="Boolean")
29 inner-type 3, 0 : @annotations.tests.classfile.foo.A
30 local 3 # 16 + 58 : @annotations.tests.classfile.foo.A
[all …]
DTestTypecastGenericArray.jaif1 package annotations.tests.classfile.foo:
12 package annotations.tests.classfile.cases:
16 typecast # 21 : @annotations.tests.classfile.foo.A
17 typecast # 32 : @annotations.tests.classfile.foo.B(value="second")
21 inner-type 3, 0 : @annotations.tests.classfile.foo.A
22 typecast # 16 : @annotations.tests.classfile.foo.B(value="B")
23 inner-type 3, 0 : @annotations.tests.classfile.foo.C(fieldA=2,fieldB="")
27 inner-type 3, 0 : @annotations.tests.classfile.foo.A
29 inner-type 3, 0 : @annotations.tests.classfile.foo.B(value="v")
33 inner-type 3, 0 : @annotations.tests.classfile.foo.A
[all …]
DTestObjectCreationGenericArray.jaif1 package annotations.tests.classfile.foo:
12 package annotations.tests.classfile.cases:
16 new # 3 : @annotations.tests.classfile.foo.B(value="first new")
17 inner-type 0, 0 : @annotations.tests.classfile.foo.A
20 new # 23 : @annotations.tests.classfile.foo.A
21 inner-type 3, 0 : @annotations.tests.classfile.foo.B(value="str")
24 new # 1 : @annotations.tests.classfile.foo.B(value="new")
25 inner-type 3, 0 : @annotations.tests.classfile.foo.B(value="map")
26 inner-type 3, 0, 3, 0 : @annotations.tests.classfile.foo.A
27 inner-type 3, 0, 3, 1 : @annotations.tests.classfile.foo.B(value="map key string")
[all …]
DTestMethodReturnTypeGenericArray.jaif1 package annotations.tests.classfile.foo:
12 package annotations.tests.classfile.cases:
15 return: @annotations.tests.classfile.foo.A
18 return: @annotations.tests.classfile.foo.B(value="single-depth")
19 inner-type 3, 0 : @annotations.tests.classfile.foo.A
22 return: @annotations.tests.classfile.foo.A
23 inner-type 0, 0 : @annotations.tests.classfile.foo.B(value="on array element")
26 return: @annotations.tests.classfile.foo.A
27 inner-type 0, 0 : @annotations.tests.classfile.foo.B(value="on")
28 inner-type 0, 0, 0, 0 : @annotations.tests.classfile.foo.B(value="in")
[all …]
DTestTypecast.jaif1 package annotations.tests.classfile.foo:
12 package annotations.tests.classfile.cases:
16 typecast # 21 : @annotations.tests.classfile.foo.A
17 typecast # 32 : @annotations.tests.classfile.foo.B(value="second cast")
18 typecast # 59 : @annotations.tests.classfile.foo.C(fieldA=3, fieldB="cast")
19 typecast # 70 : @annotations.tests.classfile.foo.C(fieldA=4, fieldB="cast")
20 typecast # 99, 0 : @annotations.tests.classfile.foo.A
21 typecast # 99, 1 : @annotations.tests.classfile.foo.B(value="99")
22 inner-type 3, 0: @annotations.tests.classfile.foo.C(fieldA=0, fieldB="99")
23 typecast # 110, 0 : @annotations.tests.classfile.foo.A
[all …]
DTestFieldGeneric.jaif1 package annotations.tests.classfile.foo:
32 package annotations.tests.classfile.cases:
33 class TestFieldGeneric: @annotations.tests.classfile.foo.A
34 field s: @annotations.tests.classfile.foo.F(fieldA=1, fieldB="fi")
35 …field list: @annotations.tests.classfile.foo.G(fieldA=3, fieldB="three", fieldC={true, false}, fie…
36 field set: @annotations.tests.classfile.foo.E(fieldA=2, fieldB = "rh")
37 @annotations.tests.classfile.foo.F(fieldA = 1, fieldB = "if")
40 inner-type 3, 0 : @annotations.tests.classfile.foo.A
45 field nestedSet: @annotations.tests.classfile.foo.B(value="nested")
47 inner-type 3, 0 : @annotations.tests.classfile.foo.F(fieldA=1, fieldB="n")
[all …]
DTestTypeTest.jaif1 package annotations.tests.classfile.foo:
12 package annotations.tests.classfile.cases:
16 instanceof # 4 : @annotations.tests.classfile.foo.B(value="ismap")
17 instanceof # 14 : @annotations.tests.classfile.foo.A
18 instanceof # 24 : @annotations.tests.classfile.foo.B(value="islist")
21 instanceof # 4 : @annotations.tests.classfile.foo.A
22 instanceof # 14 : @annotations.tests.classfile.foo.A
25 instanceof # 4 : @annotations.tests.classfile.foo.B(value="instanceof object")
28 instanceof # 12 : @annotations.tests.classfile.foo.A
29 instanceof # 28 : @annotations.tests.classfile.foo.B(value="second")
[all …]
/external/turbine/java/com/google/turbine/binder/bound/
DTypeBoundClass.java55 private final ImmutableList<AnnoInfo> annotations; field in TypeBoundClass.TyVarInfo
60 ImmutableList<AnnoInfo> annotations) { in TyVarInfo() argument
63 this.annotations = annotations; in TyVarInfo()
77 public ImmutableList<AnnoInfo> annotations() { in annotations() method in TypeBoundClass.TyVarInfo
78 return annotations; in annotations()
87 private final ImmutableList<AnnoInfo> annotations; field in TypeBoundClass.FieldInfo
96 ImmutableList<AnnoInfo> annotations, in FieldInfo() argument
102 this.annotations = annotations; in FieldInfo()
138 public ImmutableList<AnnoInfo> annotations() { in annotations() method in TypeBoundClass.FieldInfo
139 return annotations; in annotations()
[all …]
/external/testng/src/test/java/test/mannotation/
DMTest1.java3 import org.testng.annotations.AfterClass;
4 import org.testng.annotations.AfterGroups;
5 import org.testng.annotations.AfterMethod;
6 import org.testng.annotations.AfterSuite;
7 import org.testng.annotations.AfterTest;
8 import org.testng.annotations.BeforeClass;
9 import org.testng.annotations.BeforeGroups;
10 import org.testng.annotations.BeforeMethod;
11 import org.testng.annotations.BeforeSuite;
12 import org.testng.annotations.BeforeTest;
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
DBodyDeclaration.java46 private NodeList<AnnotationExpr> annotations; field in BodyDeclaration
53 public BodyDeclaration(NodeList<AnnotationExpr> annotations) { in BodyDeclaration() argument
54 this(null, annotations); in BodyDeclaration()
61 public BodyDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations) { in BodyDeclaration() argument
63 setAnnotations(annotations); in BodyDeclaration()
73 return annotations; in getAnnotations()
78 public T setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations() argument
79 assertNotNull(annotations); in setAnnotations()
80 if (annotations == this.annotations) { in setAnnotations()
83 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations); in setAnnotations()
[all …]
DReceiverParameter.java61 private NodeList<AnnotationExpr> annotations; field in ReceiverParameter
84 public ReceiverParameter(NodeList<AnnotationExpr> annotations, Type type, Name name) { in ReceiverParameter() argument
85 this(null, annotations, type, name); in ReceiverParameter()
92 …public ReceiverParameter(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Type type, N… in ReceiverParameter() argument
94 setAnnotations(annotations); in ReceiverParameter()
136 return annotations; in getAnnotations()
144 public ReceiverParameter setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations() argument
145 assertNotNull(annotations); in setAnnotations()
146 if (annotations == this.annotations) { in setAnnotations()
149 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations); in setAnnotations()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/modules/
DModuleDeclaration.java29 private NodeList<AnnotationExpr> annotations; field in ModuleDeclaration
44 …public ModuleDeclaration(NodeList<AnnotationExpr> annotations, Name name, boolean isOpen, NodeList… in ModuleDeclaration() argument
45 this(null, annotations, name, isOpen, moduleStmts); in ModuleDeclaration()
52 …public ModuleDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name, b… in ModuleDeclaration() argument
54 setAnnotations(annotations); in ModuleDeclaration()
94 return annotations; in getAnnotations()
98 public ModuleDeclaration setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations() argument
99 assertNotNull(annotations); in setAnnotations()
100 if (annotations == this.annotations) { in setAnnotations()
103 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations); in setAnnotations()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
DName.java65 private NodeList<AnnotationExpr> annotations; field in Name
80 public Name(Name qualifier, final String identifier, NodeList<AnnotationExpr> annotations) { in Name() argument
81 this(null, qualifier, identifier, annotations); in Name()
88 …e(TokenRange tokenRange, Name qualifier, String identifier, NodeList<AnnotationExpr> annotations) { in Name() argument
92 setAnnotations(annotations); in Name()
171 for (int i = 0; i < annotations.size(); i++) { in remove()
172 if (annotations.get(i) == node) { in remove()
173 annotations.remove(i); in remove()
193 return annotations; in getAnnotations()
197 public Name setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations() argument
[all …]
DVariableDeclarationExpr.java65 private NodeList<AnnotationExpr> annotations; field in VariableDeclarationExpr
99 …Expr(final EnumSet<Modifier> modifiers, final NodeList<AnnotationExpr> annotations, final NodeList… in VariableDeclarationExpr() argument
100 this(null, modifiers, annotations, variables); in VariableDeclarationExpr()
107 …ange tokenRange, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<Varia… in VariableDeclarationExpr() argument
110 setAnnotations(annotations); in VariableDeclarationExpr()
129 return annotations; in getAnnotations()
149 public VariableDeclarationExpr setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations() argument
150 assertNotNull(annotations); in setAnnotations()
151 if (annotations == this.annotations) { in setAnnotations()
154 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations); in setAnnotations()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/
DBodyDeclaration.java35 private List<AnnotationExpr> annotations; field in BodyDeclaration
40 public BodyDeclaration(List<AnnotationExpr> annotations) { in BodyDeclaration() argument
41 setAnnotations(annotations); in BodyDeclaration()
44 …ion(int beginLine, int beginColumn, int endLine, int endColumn, List<AnnotationExpr> annotations) { in BodyDeclaration() argument
46 setAnnotations(annotations); in BodyDeclaration()
50 if (annotations==null){ in getAnnotations()
51 annotations = new ArrayList<AnnotationExpr>(); in getAnnotations()
53 return annotations; in getAnnotations()
56 public final void setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations() argument
57 this.annotations = annotations; in setAnnotations()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/
DBodyDeclaration.java37 private List<AnnotationExpr> annotations; field in BodyDeclaration
42 public BodyDeclaration(List<AnnotationExpr> annotations) { in BodyDeclaration() argument
43 setAnnotations(annotations); in BodyDeclaration()
46 public BodyDeclaration(Range range, List<AnnotationExpr> annotations) { in BodyDeclaration() argument
48 setAnnotations(annotations); in BodyDeclaration()
53 annotations = Utils.ensureNotNull(annotations); in getAnnotations()
54 return annotations; in getAnnotations()
64 public final T setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations() argument
65 this.annotations = annotations; in setAnnotations()
66 setAsParentNodeOf(this.annotations); in setAnnotations()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
DType.java50 private NodeList<AnnotationExpr> annotations; field in Type
61 public Type(NodeList<AnnotationExpr> annotations) { in Type() argument
62 this(null, annotations); in Type()
69 public Type(TokenRange tokenRange, NodeList<AnnotationExpr> annotations) { in Type() argument
71 setAnnotations(annotations); in Type()
77 return annotations; in getAnnotations()
85 public Type setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations() argument
86 assertNotNull(annotations); in setAnnotations()
87 if (annotations == this.annotations) { in setAnnotations()
90 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations); in setAnnotations()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/type/
DType.java38 private List<AnnotationExpr> annotations; field in Type
44 this.annotations = annotation; in Type()
51 public Type(Range range, List<AnnotationExpr> annotations) { in Type() argument
53 setAnnotations(annotations); in Type()
57 annotations = ensureNotNull(annotations); in getAnnotations()
58 return annotations; in getAnnotations()
61 public T setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations() argument
62 setAsParentNodeOf(annotations); in setAnnotations()
63 this.annotations = annotations; in setAnnotations()
/external/proguard/src/proguard/classfile/attribute/annotation/
DTypeAnnotationsAttribute.java46 TypeAnnotation[] annotations) in TypeAnnotationsAttribute() argument
48 super(u2attributeNameIndex, u2annotationsCount, annotations); in TypeAnnotationsAttribute()
57 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations; in typeAnnotationsAccept() local
63 typeAnnotationVisitor.visitTypeAnnotation(clazz, annotations[index]); in typeAnnotationsAccept()
73 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations; in typeAnnotationsAccept() local
79 typeAnnotationVisitor.visitTypeAnnotation(clazz, field, annotations[index]); in typeAnnotationsAccept()
89 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations; in typeAnnotationsAccept() local
95 typeAnnotationVisitor.visitTypeAnnotation(clazz, method, annotations[index]); in typeAnnotationsAccept()

12345678910>>...122