/external/guava/guava/src/com/google/common/annotations/ |
package-info.java | 21 package com.google.common.annotations;
|
VisibleForTesting.java | 17 package com.google.common.annotations;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/annotations/ |
ExternallyReferenced.java | 17 package com.android.inputmethod.annotations;
|
UsedForTesting.java | 17 package com.android.inputmethod.annotations;
|
/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...] |
ParameterAnnotationsAttributeEditor.java | 26 * This class can add annotations to a given parameter annotations attribute. 27 * Annotations to be added must have been filled out beforehand. 38 * annotations in the given parameter annotations attribute. 47 * Adds a given annotation to the annotations attribute. 52 Annotation[] annotations = targetParameterAnnotationsAttribute.parameterAnnotations[parameterIndex]; local 55 if (annotations == null || 56 annotations.length <= annotationsCount) 59 if (annotations != null [all...] |
/sdk/build/ |
product_sdk.mk | 31 annotations \
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
AnnotationSetRefItem.java | 33 private AnnotationSetItem annotations; field in class:AnnotationSetRefItem 38 * @param annotations {@code non-null;} the annotation set to refer to 40 public AnnotationSetRefItem(AnnotationSetItem annotations) { 43 if (annotations == null) { 44 throw new NullPointerException("annotations == null"); 47 this.annotations = annotations; 60 annotations = wordData.intern(annotations); 66 return annotations.toHuman() [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
AnnotationSetRefItem.java | 33 private AnnotationSetItem annotations; field in class:AnnotationSetRefItem 38 * @param annotations {@code non-null;} the annotation set to refer to 40 public AnnotationSetRefItem(AnnotationSetItem annotations) { 43 if (annotations == null) { 44 throw new NullPointerException("annotations == null"); 47 this.annotations = annotations; 60 annotations = wordData.intern(annotations); 66 return annotations.toHuman() [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
AnnotationSetRefItem.java | 33 private AnnotationSetItem annotations; field in class:AnnotationSetRefItem 38 * @param annotations {@code non-null;} the annotation set to refer to 40 public AnnotationSetRefItem(AnnotationSetItem annotations) { 43 if (annotations == null) { 44 throw new NullPointerException("annotations == null"); 47 this.annotations = annotations; 60 annotations = wordData.intern(annotations); 66 return annotations.toHuman() [all...] |
/cts/tools/signature-tools/src/signature/model/impl/ |
SigAnnotatableElement.java | 29 private Set<IAnnotation> annotations; field in class:SigAnnotatableElement 32 annotations = Collections.emptySet(); 36 return annotations; 39 public void setAnnotations(Set<IAnnotation> annotations) { 40 this.annotations = annotations;
|
/dalvik/dx/src/com/android/dx/cf/attrib/ |
BaseAnnotations.java | 19 import com.android.dx.rop.annotation.Annotations; 23 * Base class for annotations attributes. 26 /** {@code non-null;} list of annotations */ 27 private final Annotations annotations; field in class:BaseAnnotations 37 * @param annotations {@code non-null;} the list of annotations 41 public BaseAnnotations(String attributeName, Annotations annotations, 46 if (annotations.isMutable()) [all...] |
/external/guava/guava-testlib/src/com/google/common/testing/ |
TearDown.java | 19 import com.google.common.annotations.Beta; 20 import com.google.common.annotations.GwtCompatible;
|
TearDownAccepter.java | 19 import com.google.common.annotations.Beta; 20 import com.google.common.annotations.GwtCompatible;
|
/external/proguard/src/proguard/classfile/attribute/annotation/ |
AnnotationsAttribute.java | 28 * This Attribute represents an annotations attribute. 35 public Annotation[] annotations; field in class:AnnotationsAttribute 51 Annotation[] annotations) 56 this.annotations = annotations; 61 * Applies the given visitor to all class annotations. 69 annotationVisitor.visitAnnotation(clazz, annotations[index]); 75 * Applies the given visitor to all field annotations. 83 annotationVisitor.visitAnnotation(clazz, field, annotations[index]); 89 * Applies the given visitor to all method annotations [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
AnnotationSetItem.java | 41 private AnnotationItem[] annotations; field in class:AnnotationSetItem 52 * Creates a new <code>AnnotationSetItem</code> for the given annotations 54 * @param annotations The annotations for this <code>AnnotationSetItem</code> 56 private AnnotationSetItem(DexFile dexFile, AnnotationItem[] annotations) { 58 this.annotations = annotations; 62 * Returns an <code>AnnotationSetItem</code> for the given annotations, and that has been interned into the given 65 * @param annotations The annotations for this <code>AnnotationSetItem</code [all...] |
/external/guava/guava/src/com/google/common/base/ |
Supplier.java | 19 import com.google.common.annotations.GwtCompatible;
|
/external/guava/guava-gwt/src/com/google/common/base/ |
GwtSerializationDependencies.java | 19 import com.google.common.annotations.GwtCompatible;
|
/external/guava/guava-gwt/test/com/google/common/net/ |
TestPlatform.java | 19 import com.google.common.annotations.GwtCompatible;
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
Choreographer_Delegate.java | 18 import com.android.tools.layoutlib.annotations.LayoutlibDelegate;
|
Display_Delegate.java | 19 import com.android.tools.layoutlib.annotations.LayoutlibDelegate;
|
ViewRootImpl_Delegate.java | 19 import com.android.tools.layoutlib.annotations.LayoutlibDelegate;
|
View_Delegate.java | 19 import com.android.tools.layoutlib.annotations.LayoutlibDelegate;
|
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/ |
Annotations.java | 30 public final class Annotations extends MutabilityControl 31 implements Comparable<Annotations> { 33 public static final Annotations EMPTY = new Annotations(); 39 /** {@code non-null;} map from types to annotations */ 40 private final TreeMap<CstType, Annotation> annotations; field in class:Annotations 52 public static Annotations combine(Annotations a1, Annotations a2) { 53 Annotations result = new Annotations() [all...] |
/dalvik/dx/src/com/android/dx/rop/annotation/ |
Annotations.java | 29 public final class Annotations extends MutabilityControl 30 implements Comparable<Annotations> { 32 public static final Annotations EMPTY = new Annotations(); 38 /** {@code non-null;} map from types to annotations */ 39 private final TreeMap<CstType, Annotation> annotations; field in class:Annotations 51 public static Annotations combine(Annotations a1, Annotations a2) { 52 Annotations result = new Annotations() [all...] |