HomeSort by relevance Sort by last modified time
    Searched refs:annotations (Results 176 - 200 of 265) sorted by null

1 2 3 4 5 6 78 91011

  /build/tools/droiddoc/src/
DroidDoc.java 1247 AnnotationInstanceInfo[] annotations = field.annotations(); local
1277 AnnotationInstanceInfo[] annotations = clazz.annotations(); local
    [all...]
Converter.java 93 Converter.convertAnnotationInstances(c.annotations())
395 Converter.convertAnnotationInstances(m.annotations())
420 Converter.convertAnnotationInstances(m.annotations())
445 Converter.convertAnnotationInstances(m.annotations())
493 Converter.convertAnnotationInstances(f.annotations())
Stubs.java 94 // annotations are handled like methods
167 // cant strip annotations
168 /*if (cl.annotations() != null){
169 for (AnnotationInstanceInfo ai : cl.annotations()){
225 null, null, cl.annotations());
352 writeAnnotations(stream, cl.annotations());
396 // can java annotations extend other ones?
758 static void writeAnnotations(PrintStream stream, AnnotationInstanceInfo[] annotations) {
759 for (AnnotationInstanceInfo ann: annotations) {
    [all...]
  /external/guava/src/com/google/common/collect/
LinkedHashMultimap.java 19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.VisibleForTesting;
Lists.java 19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.VisibleForTesting;
Iterables.java 19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.GwtIncompatible;
AbstractMultiset.java 19 import com.google.common.annotations.GwtCompatible;
Collections2.java 19 import com.google.common.annotations.GwtCompatible;
ConstrainedMap.java 19 import com.google.common.annotations.GwtCompatible;
ImmutableBiMap.java 19 import com.google.common.annotations.GwtCompatible;
RegularImmutableList.java 19 import com.google.common.annotations.GwtCompatible;
RegularImmutableMap.java 19 import com.google.common.annotations.GwtCompatible;
RegularImmutableSortedSet.java 19 import com.google.common.annotations.GwtCompatible;
  /external/guava/src/com/google/common/primitives/
Chars.java 19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.GwtIncompatible;
Ints.java 19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.GwtIncompatible;
Longs.java 19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.GwtIncompatible;
Shorts.java 19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.GwtIncompatible;
  /cts/tools/signature-tools/test/signature/converter/
ConvertAnnotationTest.java 70 Set<IAnnotation> annotations = field.getAnnotations(); local
71 assertEquals(1, annotations.size());
72 IAnnotation annotation = annotations.iterator().next();
94 Set<IAnnotation> annotations = sigClass.getAnnotations(); local
95 assertEquals(1, annotations.size());
96 IAnnotation annotation = annotations.iterator().next();
    [all...]
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java 469 // Read the annotations.
472 annotationsAttribute.annotations = new Annotation[annotationsAttribute.u2annotationsCount];
477 annotationsAttribute.annotations[index] = annotation;
484 // Read the parameter annotations.
503 // Read the parameter annotations of the given parameter.
506 Annotation[] annotations = new Annotation[u2annotationsCount]; local
512 annotations[index] = annotation;
516 parameterAnnotationsAttribute.parameterAnnotations[parameterIndex] = annotations;
    [all...]
  /cts/tools/utils/
DescriptionGenerator.java 536 AnnotationDesc[] annotations = method.annotations(); local
541 for (AnnotationDesc cAnnot : annotations) {
CollectAllTests.java 335 Annotation[] annotations = testMethod.getAnnotations(); local
336 for (Annotation annot : annotations) {
  /external/guava/src/com/google/common/base/
Predicates.java 19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.GwtIncompatible;
Functions.java 19 import com.google.common.annotations.GwtCompatible;
Joiner.java 19 import com.google.common.annotations.GwtCompatible;
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 47 import com.android.dx.rop.annotation.Annotations;
617 Annotations annotations = local
620 return new AttRuntimeInvisibleAnnotations(annotations, length);
634 Annotations annotations = local
637 return new AttRuntimeVisibleAnnotations(annotations, length);

Completed in 2286 milliseconds

1 2 3 4 5 6 78 91011