HomeSort by relevance Sort by last modified time
    Searched refs:annotations (Results 1 - 25 of 6489) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/annotation-tools/scene-lib/src/annotations/
package-info.java 2 * <code>annotations</code> provides classes that represent annotations,
5 package annotations; package
  /external/annotation-tools/scene-lib/src/annotations/el/
package-info.java 2 * <code>annotations.el</code> provides classes that associate annotations with
3 * Java elements. {@link annotations.el.AElement}s represent Java elements
4 * of the scene that can carry annotations. There is a multi-level class
6 * and only {@link annotations.el.ADeclaration declarations} contain an
7 * {@link annotations.el.ADeclaration#insertTypecasts insertTypecasts} field.
8 * A &ldquo;scene&rdquo; ({@link annotations.el.AScene}) contains many elements
9 * and represents all the annotations on a set of classes and packages.
12 * {@link annotations.util.coll.VivifyingMap}, a Map implementation that allows
14 * {@link annotations.util.coll.VivifyingMap#isEmpty() empty}) and provides
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/field/
package-info.java 2 * <code>annotations.field</code> provides classes that store the types of
5 package annotations.field;
ScalarAFT.java 1 package annotations.field;
  /external/annotation-tools/scene-lib/src/annotations/io/
package-info.java 2 * <code>annotations.io</code> provides classes for the input and output
3 * of {@link annotations.el.AScene}s to/from various formats.
5 package annotations.io;
  /external/annotation-tools/scene-lib/src/annotations/io/classfile/
package-info.java 2 * <code> annotations.io.classfile </code> provides methods for writing
3 * {@link annotations.el.AScene}s to Java class files and reading in annotations
4 * from a Java class file into an {@link annotations.el.AScene}.
8 * {@link annotations.io.classfile.ClassFileWriter#insert} for
9 * writing annotations to a class file, and
10 * {@link annotations.io.classfile.ClassFileReader#read} for
11 * reading annotations from a class file.
13 package annotations.io.classfile;
  /external/annotation-tools/asmx/test/conform/annotations/
ValuesEnum.java 2 package annotations; package
  /external/annotation-tools/scene-lib/src/annotations/toys/
ClassTokenAnnotation.java 1 package annotations.toys;
FancierAnnotation.java 1 package annotations.toys;
SubAnnotation.java 1 package annotations.toys;
  /external/annotation-tools/scene-lib/test/annotations/tests/classfile/cases/
TestClassEmpty.java 1 package annotations.tests.classfile.cases;
package-info.java 2 package annotations.tests.classfile.cases;
  /external/guava/guava/src/com/google/common/annotations/
package-info.java 21 package com.google.common.annotations;
  /external/testng/src/main/java/org/testng/annotations/
IAnnotation.java 1 package org.testng.annotations;
4 * The parent interface for all the annotations.
IObjectFactoryAnnotation.java 1 package org.testng.annotations;
IFactoryAnnotation.java 1 package org.testng.annotations;
3 import org.testng.internal.annotations.IDataProvidable;
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/annotations/
ExternallyReferenced.java 17 package com.android.inputmethod.annotations;
UsedForTesting.java 17 package com.android.inputmethod.annotations;
  /external/testng/src/main/java/org/testng/internal/annotations/
IListeners.java 1 package org.testng.internal.annotations;
3 import org.testng.annotations.IListenersAnnotation;
ITest.java 1 package org.testng.internal.annotations;
3 import org.testng.annotations.ITestAnnotation;
  /external/annotation-tools/scene-lib/src/type/
Type.java 22 * The annotations on the outer type. Empty if there are none.
24 private List<String> annotations; field in class:Type
27 * Constructs a new type with no outer annotations.
30 annotations = new ArrayList<String>();
38 annotations.add(annotation);
42 * Replaces the annotations on this type with the given annotations.
43 * @param annotations the new annotations to be placed on this type
45 public void setAnnotations(List<String> annotations) {
    [all...]
  /external/proguard/src/proguard/classfile/editor/
AnnotationsAttributeEditor.java 26 * This class can add annotations to a given annotations attribute.
27 * Annotations to be added must have been filled out beforehand.
37 * Creates a new AnnotationsAttributeEditor that will edit annotations in
38 * the given annotations attribute.
47 * Adds a given annotation to the annotations attribute.
52 Annotation[] annotations = targetAnnotationsAttribute.annotations; local
55 if (annotations.length <= annotationsCount)
57 targetAnnotationsAttribute.annotations = new Annotation[annotationsCount+1]
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/
BodyDeclaration.java 37 private List<AnnotationExpr> annotations; field in class:BodyDeclaration
42 public BodyDeclaration(List<AnnotationExpr> annotations) {
43 setAnnotations(annotations);
46 public BodyDeclaration(Range range, List<AnnotationExpr> annotations) {
48 setAnnotations(annotations);
53 annotations = Utils.ensureNotNull(annotations);
54 return annotations;
59 * @param annotations a null value is currently treated as an empty list. This behavior could change
64 public final T setAnnotations(List<AnnotationExpr> annotations) {
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/
BodyDeclaration.java 35 private List<AnnotationExpr> annotations; field in class:BodyDeclaration
40 public BodyDeclaration(List<AnnotationExpr> annotations) {
41 setAnnotations(annotations);
44 public BodyDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, List<AnnotationExpr> annotations) {
46 setAnnotations(annotations);
50 if (annotations==null){
51 annotations = new ArrayList<AnnotationExpr>();
53 return annotations;
56 public final void setAnnotations(List<AnnotationExpr> annotations) {
57 this.annotations = annotations
    [all...]
  /art/test/715-clinit-implicit-parameter-annotations/
build 24 ./default-build "$@" --experimental parameter-annotations

Completed in 251 milliseconds

1 2 3 4 5 6 7 8 91011>>