HomeSort by relevance Sort by last modified time
    Searched defs:annotations (Results 201 - 225 of 895) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ProducerModuleProcessingStep.java 69 public Set<Class<? extends Annotation>> annotations() { method in class:ProducerModuleProcessingStep
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetItem.java 19 import com.android.dx.rop.annotation.Annotations;
25 * Set of annotations, where no annotation type appears more than once.
34 /** {@code non-null;} the set of annotations */
35 private final Annotations annotations; field in class:AnnotationSetItem
38 * {@code non-null;} set of annotations as individual items in an array.
47 * @param annotations {@code non-null;} set of annotations
49 public AnnotationSetItem(Annotations annotations) {
    [all...]
ParameterAnnotationStruct.java 19 import com.android.dx.rop.annotation.Annotations;
29 * Association of a method and its parameter annotations.
36 /** {@code non-null;} the associated annotations list */
39 /** {@code non-null;} the associated annotations list, as an item */
46 * @param annotationsList {@code non-null;} the associated annotations list
62 * Construct an item for the annotations list. TODO: This
71 Annotations annotations = annotationsList.get(i); local
72 AnnotationSetItem item = new AnnotationSetItem(annotations);
154 * Gets the associated annotations list
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
Parameter.java 21 import com.google.common.annotations.Beta;
42 private final ImmutableList<Annotation> annotations; field in class:Parameter
48 Annotation[] annotations) {
52 this.annotations = ImmutableList.copyOf(annotations);
73 for (Annotation annotation : annotations) {
98 return annotations.toArray(new Annotation[annotations.size()]);
108 return FluentIterable.from(annotations)
120 return FluentIterable.from(annotations)
    [all...]
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
AssistedConstructor.java 54 Annotation[][] annotations = constructor.getParameterAnnotations(); local
61 Parameter parameter = new Parameter(parameterTypes.get(i).getType(), annotations[i]);
  /external/opencv3/apps/annotation/
opencv_annotation.cpp 3 ./opencv_annotation -images <folder location> -annotations <ouput file>
73 // annotations to a known stringstream
144 // If there are annotations AND the next image key is pressed
145 // Write the image annotations to the file
161 cout << " -annotations <ouput_file> [example - /data/annotations.txt]" << endl;
168 string annotations; local
175 else if( !strcmp( argv[i], "-annotations" ) )
177 annotations = argv[++i];
182 ofstream output(annotations.c_str())
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
FieldDefinition.java 80 Collection<? extends Annotation> annotations = field.getAnnotations(); local
81 if (annotations.size() > 0) {
89 AnnotationFormatter.writeTo(writer, annotations, containingClass);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableClassDef.java 58 @Nonnull protected final ImmutableSet<? extends ImmutableAnnotation> annotations; field in class:ImmutableClassDef
69 @Nullable Collection<? extends Annotation> annotations,
84 this.annotations = ImmutableAnnotation.immutableSetOf(annotations);
96 @Nullable Collection<? extends Annotation> annotations,
106 this.annotations = ImmutableAnnotation.immutableSetOf(annotations);
118 @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations,
128 this.annotations = ImmutableUtils.nullToEmptySet(annotations);
    [all...]
ImmutableMethod.java 56 @Nonnull protected final ImmutableSet<? extends ImmutableAnnotation> annotations; field in class:ImmutableMethod
64 @Nullable Set<? extends Annotation> annotations,
71 this.annotations = ImmutableAnnotation.immutableSetOf(annotations);
80 @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations,
87 this.annotations = ImmutableUtils.nullToEmptySet(annotations);
111 @Override @Nonnull public ImmutableSet<? extends ImmutableAnnotation> getAnnotations() { return annotations; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderMethod.java 47 @Nonnull final BuilderAnnotationSet annotations; field in class:BuilderMethod
56 @Nonnull BuilderAnnotationSet annotations,
61 this.annotations = annotations;
71 @Override @Nonnull public BuilderAnnotationSet getAnnotations() { return annotations; }
BuilderClassDef.java 53 @Nonnull final BuilderAnnotationSet annotations; field in class:BuilderClassDef
68 @Nonnull BuilderAnnotationSet annotations,
83 this.annotations = annotations;
98 @Nonnull @Override public BuilderAnnotationSet getAnnotations() { return annotations; }
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliClassModifierListTest.java 149 SmaliAnnotation[] annotations = modifierList.getAnnotations(); local
150 Assert.assertEquals(1, annotations.length);
152 Assert.assertEquals("my.pkg.anno", annotations[0].getQualifiedName());
156 Assert.assertEquals(annotations[0], applicableAnnotations[0]);
  /external/testng/src/main/java/org/testng/internal/annotations/
BaseBeforeAfter.java 1 package org.testng.internal.annotations;
TestOrConfiguration.java 1 package org.testng.internal.annotations;
3 import org.testng.annotations.ITestOrConfiguration;
  /external/v8/tools/
trace-maps-processor.py 24 annotations = {} variable
46 if raw_map in annotations:
47 annotations[raw_map] += 1
49 annotations[raw_map] = 0
54 return "%s_%d" % (raw_map, annotations[raw_map])
101 if from_map not in annotations:
  /cts/tools/dex-tools/src/dex/reader/
DexMethodImpl.java 47 private Set<DexAnnotation> annotations; field in class:DexMethodImpl
85 annotations = new HashSet<DexAnnotation>();
90 annotations.add(new DexAnnotationImpl(buffer.createCopy(),
132 return annotations;
  /dalvik/dx/src/com/android/dx/cf/direct/
AnnotationParser.java 23 import com.android.dx.rop.annotation.Annotations;
48 * Parser for annotations.
119 * @param visibility {@code non-null;} visibility of the parsed annotations
120 * @return {@code non-null;} the parsed list of lists of annotations
143 * @param visibility {@code non-null;} visibility of the parsed annotations
144 * @return {@code non-null;} the list of annotations read from the attribute
147 public Annotations parseAnnotationAttribute(
149 Annotations result;
168 * @param visibility {@code non-null;} visibility of the parsed annotations
188 Annotations annotations = parseAnnotations(visibility) local
215 Annotations annotations = new Annotations(); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ParameterAnnotationStruct.java 19 import com.android.dexgen.rop.annotation.Annotations;
29 * Association of a method and its parameter annotations.
36 /** {@code non-null;} the associated annotations list */
39 /** {@code non-null;} the associated annotations list, as an item */
46 * @param annotationsList {@code non-null;} the associated annotations list
62 * Construct an item for the annotations list. TODO: This
71 Annotations annotations = annotationsList.get(i); local
72 AnnotationSetItem item = new AnnotationSetItem(annotations);
154 * Gets the associated annotations list
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
ParameterAnnotationStruct.java 19 import com.android.dx.rop.annotation.Annotations;
29 * Association of a method and its parameter annotations.
36 /** {@code non-null;} the associated annotations list */
39 /** {@code non-null;} the associated annotations list, as an item */
46 * @param annotationsList {@code non-null;} the associated annotations list
63 * Construct an item for the annotations list. TODO: This
72 Annotations annotations = annotationsList.get(i); local
73 AnnotationSetItem item = new AnnotationSetItem(annotations, dexFile);
155 * Gets the associated annotations list
    [all...]
  /external/proguard/src/proguard/optimize/
DuplicateInitializerFixer.java 130 // signature, and the parameter annotations, if
197 Annotation[][] annotations = new Annotation[parameterAnnotationsAttribute.u1parametersCount][]; local
207 annotations,
212 parameterAnnotationsAttribute.parameterAnnotations = annotations;
MethodDescriptorShrinker.java 124 // Shrink the signature and parameter annotations.
175 Annotation[][] annotations = parameterAnnotationsAttribute.parameterAnnotations; local
197 annotations[newAnnotationIndex++] = annotations[annotationIndex];
212 annotations[newAnnotationIndex++] = null;
  /external/testng/src/main/java/org/testng/annotations/
ITestAnnotation.java 1 package org.testng.annotations;
4 import org.testng.internal.annotations.IDataProvidable;
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArrayAnnotatedOutput.java 47 /** whether annotations are to be verbose */
51 * {@code null-ok;} list of annotations, or {@code null} if this instance
54 private ArrayList<Annotation> annotations; field in class:ByteArrayAnnotatedOutput
61 * in annotations
70 * instance does not keep annotations by default.
80 * reallocated. The constructed instance does not keep annotations
102 this.annotations = null;
358 return (annotations != null);
368 if (annotations == null) {
373 annotations.add(new Annotation(cursor, msg))
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 50 /** whether annotations are to be verbose */
54 * {@code null-ok;} list of annotations, or {@code null} if this instance
57 private ArrayList<Annotation> annotations; field in class:ByteArrayAnnotatedOutput
64 * in annotations
73 * instance does not keep annotations by default.
83 * reallocated. The constructed instance does not keep annotations
93 * keep annotations by default.
114 this.annotations = null;
354 return (annotations != null);
364 if (annotations == null)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayAnnotatedOutput.java 47 /** whether annotations are to be verbose */
51 * {@code null-ok;} list of annotations, or {@code null} if this instance
54 private ArrayList<Annotation> annotations; field in class:ByteArrayAnnotatedOutput
61 * in annotations
70 * instance does not keep annotations by default.
80 * reallocated. The constructed instance does not keep annotations
90 * keep annotations by default.
111 this.annotations = null;
351 return (annotations != null);
361 if (annotations == null)
    [all...]

Completed in 5498 milliseconds

1 2 3 4 5 6 7 891011>>