| /external/turbine/java/com/google/turbine/bytecode/ |
| D | Attribute.java | 105 List<AnnotationInfo> annotations(); in annotations() method 110 List<AnnotationInfo> annotations; field in Attribute.RuntimeVisibleAnnotations 112 public RuntimeVisibleAnnotations(List<AnnotationInfo> annotations) { in RuntimeVisibleAnnotations() 117 public List<AnnotationInfo> annotations() { in annotations() method in Attribute.RuntimeVisibleAnnotations 129 List<AnnotationInfo> annotations; field in Attribute.RuntimeInvisibleAnnotations 131 public RuntimeInvisibleAnnotations(List<AnnotationInfo> annotations) { in RuntimeInvisibleAnnotations() 136 public List<AnnotationInfo> annotations() { in annotations() method in Attribute.RuntimeInvisibleAnnotations 181 List<List<AnnotationInfo>> annotations(); in annotations() method 188 public List<List<AnnotationInfo>> annotations() { in annotations() method in Attribute.RuntimeVisibleParameterAnnotations 192 final List<List<AnnotationInfo>> annotations; field in Attribute.RuntimeVisibleParameterAnnotations [all …]
|
| D | LowerAttributes.java | 86 static void addAllAnnotations(List<Attribute> attributes, List<AnnotationInfo> annotations) { in addAllAnnotations() 104 List<Attribute> attributes, ImmutableList<TypeAnnotationInfo> annotations) { in addAllTypeAnnotations() 120 List<Attribute> attributes, ImmutableList<ImmutableList<AnnotationInfo>> annotations) { in addParameterAnnotations()
|
| /external/turbine/java/com/google/turbine/binder/bound/ |
| D | TypeBoundClass.java | 56 ImmutableList<AnnoInfo> annotations(); in annotations() method 61 private final ImmutableList<AnnoInfo> annotations; field in TypeBoundClass.TyVarInfo 63 public TyVarInfo(IntersectionTy bound, ImmutableList<AnnoInfo> annotations) { in TyVarInfo() 74 public ImmutableList<AnnoInfo> annotations() { in annotations() method in TypeBoundClass.TyVarInfo 84 private final ImmutableList<AnnoInfo> annotations; field in TypeBoundClass.FieldInfo 93 ImmutableList<AnnoInfo> annotations, in FieldInfo() 135 public ImmutableList<AnnoInfo> annotations() { in annotations() method in TypeBoundClass.FieldInfo 150 private final ImmutableList<AnnoInfo> annotations; field in TypeBoundClass.MethodInfo 162 ImmutableList<AnnoInfo> annotations, in MethodInfo() 222 public ImmutableList<AnnoInfo> annotations() { in annotations() method in TypeBoundClass.MethodInfo [all …]
|
| /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/ |
| D | BodyDeclaration.java | 37 private List<AnnotationExpr> annotations; field in BodyDeclaration 42 public BodyDeclaration(List<AnnotationExpr> annotations) { in BodyDeclaration() 46 public BodyDeclaration(Range range, List<AnnotationExpr> annotations) { in BodyDeclaration() 64 public final T setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations()
|
| /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/ |
| D | BodyDeclaration.java | 35 private List<AnnotationExpr> annotations; field in BodyDeclaration 40 public BodyDeclaration(List<AnnotationExpr> annotations) { in BodyDeclaration() 44 …ion(int beginLine, int beginColumn, int endLine, int endColumn, List<AnnotationExpr> annotations) { in BodyDeclaration() 56 public final void setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations()
|
| D | BaseParameter.java | 32 private List<AnnotationExpr> annotations; field in BaseParameter 48 public BaseParameter(int modifiers, List<AnnotationExpr> annotations, VariableDeclaratorId id) { in BaseParameter() 54 …int beginColumn, int endLine, int endColumn, int modifiers, List<AnnotationExpr> annotations, Vari… in BaseParameter() 79 public void setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations()
|
| /external/proguard/src/proguard/classfile/attribute/annotation/ |
| D | TypeAnnotationsAttribute.java | 46 TypeAnnotation[] annotations) in TypeAnnotationsAttribute() 57 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations; in typeAnnotationsAccept() local 73 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations; in typeAnnotationsAccept() local 89 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations; in typeAnnotationsAccept() local
|
| /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/type/ |
| D | Type.java | 38 private List<AnnotationExpr> annotations; field in Type 51 public Type(Range range, List<AnnotationExpr> annotations) { in Type() 61 public T setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations()
|
| /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/ |
| D | PackageDeclaration.java | 49 private List<AnnotationExpr> annotations; field in PackageDeclaration 60 public PackageDeclaration(List<AnnotationExpr> annotations, NameExpr name) { in PackageDeclaration() 65 public PackageDeclaration(Range range, List<AnnotationExpr> annotations, NameExpr name) { in PackageDeclaration() 112 public PackageDeclaration setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations()
|
| D | ArrayBracketPair.java | 19 private List<AnnotationExpr> annotations; field in ArrayBracketPair 21 public ArrayBracketPair(Range range, List<AnnotationExpr> annotations) { in ArrayBracketPair() 39 public ArrayBracketPair setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations()
|
| D | ArrayCreationLevel.java | 21 private List<AnnotationExpr> annotations; field in ArrayCreationLevel 23 public ArrayCreationLevel(Range range, Expression dimension, List<AnnotationExpr> annotations) { in ArrayCreationLevel() 51 public ArrayCreationLevel setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations()
|
| /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/ |
| D | PackageDeclaration.java | 46 private List<AnnotationExpr> annotations; field in PackageDeclaration 57 public PackageDeclaration(List<AnnotationExpr> annotations, NameExpr name) { in PackageDeclaration() 62 …int beginLine, int beginColumn, int endLine, int endColumn, List<AnnotationExpr> annotations, Name… in PackageDeclaration() 101 public void setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations()
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/ |
| D | ArrayType.java | 76 public ArrayType(Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) { in ArrayType() 80 public ArrayType(Type type, AnnotationExpr... annotations) { in ArrayType() 88 …e(TokenRange tokenRange, Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) { in ArrayType() 175 private NodeList<AnnotationExpr> annotations = new NodeList<>(); field in ArrayType.ArrayBracketPair 179 …blic ArrayBracketPair(TokenRange tokenRange, Origin origin, NodeList<AnnotationExpr> annotations) { in ArrayBracketPair() 189 public ArrayBracketPair setAnnotations(NodeList<AnnotationExpr> annotations) { in setAnnotations() 214 public ArrayType setAnnotations(NodeList<AnnotationExpr> annotations) { in setAnnotations()
|
| /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/ |
| D | MethodDescriptor.java | 86 final Annotation annotations[][] = getParameterAnnotations(); in invoke() local 115 final Annotation annotations[][] = getParameterAnnotations(); in invoke() local 311 final Annotation[][] annotations = mMethod.getParameterAnnotations(); in getHelp() local 351 private static String getHelpForParameter(Type parameterType, Annotation[] annotations) { in getHelpForParameter() 461 private static String getName(Annotation[] annotations) { in getName() 476 private static String getDescription(Annotation[] annotations) { in getDescription() 491 public static Object getDefaultValue(Type parameterType, Annotation[] annotations) { in getDefaultValue() 529 public static boolean hasDefaultValue(Annotation[] annotations) { in hasDefaultValue() 544 static boolean hasExplicitDefaultValue(Annotation[] annotations) { in hasExplicitDefaultValue()
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/ |
| D | PackageDeclaration.java | 49 private NodeList<AnnotationExpr> annotations = new NodeList<>(); field in PackageDeclaration 62 public PackageDeclaration(NodeList<AnnotationExpr> annotations, Name name) { in PackageDeclaration() 70 …public PackageDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name) { in PackageDeclaration() 114 public PackageDeclaration setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations()
|
| D | ArrayCreationLevel.java | 52 private NodeList<AnnotationExpr> annotations = new NodeList<>(); field in ArrayCreationLevel 67 public ArrayCreationLevel(Expression dimension, NodeList<AnnotationExpr> annotations) { in ArrayCreationLevel() 75 …yCreationLevel(TokenRange tokenRange, Expression dimension, NodeList<AnnotationExpr> annotations) { in ArrayCreationLevel() 124 public ArrayCreationLevel setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations()
|
| /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/type/ |
| D | Type.java | 34 private List<AnnotationExpr> annotations; field in Type 47 …ype(int beginLine, int beginColumn, int endLine, int endColumn, List<AnnotationExpr> annotations) { in Type() 56 public void setAnnotations(List<AnnotationExpr> annotations) { in setAnnotations()
|
| /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
| D | ImmutableMethodParameter.java | 48 @Nonnull protected final ImmutableSet<? extends ImmutableAnnotation> annotations; field in ImmutableMethodParameter 52 @Nullable Set<? extends Annotation> annotations, in ImmutableMethodParameter() 60 … @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations, in ImmutableMethodParameter()
|
| /external/junit/src/main/java/org/junit/runner/ |
| D | Description.java | 44 public static Description createSuiteDescription(String name, Annotation... annotations) { in createSuiteDescription() 57 …Description createSuiteDescription(String name, Serializable uniqueId, Annotation... annotations) { in createSuiteDescription() 72 …tatic Description createTestDescription(String className, String name, Annotation... annotations) { in createTestDescription() 85 … static Description createTestDescription(Class<?> clazz, String name, Annotation... annotations) { in createTestDescription() 150 private Description(Class<?> clazz, String displayName, Annotation... annotations) { in Description() 154 …ription(Class<?> testClass, String displayName, Serializable uniqueId, Annotation... annotations) { in Description()
|
| /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/ |
| D | BuilderAnnotationSet.java | 46 @Nonnull final Set<BuilderAnnotation> annotations; field in BuilderAnnotationSet 49 public BuilderAnnotationSet(@Nonnull Set<BuilderAnnotation> annotations) { in BuilderAnnotationSet()
|
| D | BuilderMethodParameter.java | 42 @Nonnull final BuilderAnnotationSet annotations; field in BuilderMethodParameter 46 @Nonnull BuilderAnnotationSet annotations) { in BuilderMethodParameter()
|
| /external/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/ |
| D | ModifierHolder.java | 16 final NodeList<AnnotationExpr> annotations; field in ModifierHolder 19 …odifierHolder(JavaToken begin, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations) { in ModifierHolder()
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/ |
| D | ReceiverParameter.java | 61 private NodeList<AnnotationExpr> annotations; field in ReceiverParameter 84 public ReceiverParameter(NodeList<AnnotationExpr> annotations, Type type, Name name) { in ReceiverParameter() 92 …public ReceiverParameter(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Type type, N… in ReceiverParameter() 144 public ReceiverParameter setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations()
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/ |
| D | Name.java | 65 private NodeList<AnnotationExpr> annotations; field in Name 80 public Name(Name qualifier, final String identifier, NodeList<AnnotationExpr> annotations) { in Name() 88 …e(TokenRange tokenRange, Name qualifier, String identifier, NodeList<AnnotationExpr> annotations) { in Name() 197 public Name setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations()
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/modules/ |
| D | ModuleDeclaration.java | 29 private NodeList<AnnotationExpr> annotations; field in ModuleDeclaration 44 …public ModuleDeclaration(NodeList<AnnotationExpr> annotations, Name name, boolean isOpen, NodeList… in ModuleDeclaration() 52 …public ModuleDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name, b… in ModuleDeclaration() 98 public ModuleDeclaration setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations()
|