/cts/tools/signature-tools/src/signature/model/ |
Kind.java | 23 CLASS("class"), INTERFACE("interface"), ANNOTATION("@interface"), ENUM(
|
/external/javassist/src/main/javassist/ |
Modifier.java | 44 public static final int ANNOTATION = AccessFlag.ANNOTATION; 136 * Returns true if the modifiers include the <tt>annotation</tt> 142 return (mod & ANNOTATION) != 0;
|
/cts/tools/dasm/src/dasm/ |
sym.java | 67 static final int ANNOTATION = 51;
|
ReservedWords.java | 38 reserved_words.put(".annotation", new token(sym.DANNOTATION)); 104 reserved_words.put("annotation", new token(sym.ANNOTATION));
|
parser.cup | 75 ANNOTATION, ENUM, BRIDGE, VARARGS, STRICT, SYNTHETIC, 113 // used for Annotation attributes : 225 ANNOTATION {: access_val |= com.android.dx.rop.code.AccessFlags.ACC_ANNOTATION; :} 300 /* ========== Annotation specification ========== */ 311 endannotation ::= DEND ANNOTATION
|
/cts/tools/signature-tools/test/signature/converter/ |
ConvertAnnotationTest.java | 47 // Tests whether an annotation declaration element may be annotated with
48 // the declared annotation.
60 assertTrue(sigClass.getKind() == Kind.ANNOTATION);
72 IAnnotation annotation = annotations.iterator().next();
local 73 assertSame(sigClass, annotation.getType().getClassDefinition());
74 // TODO TEST add additional assert for annotation.getElements()
77 // Tests whether an annotation declaration may be annotated with
78 // the declared annotation.
90 assertTrue(sigClass.getKind() == Kind.ANNOTATION);
96 IAnnotation annotation = annotations.iterator().next(); local [all...] |
ConvertClassTest.java | 106 assertEquals(Kind.ANNOTATION, sigClass.getKind()); 120 IAnnotation annotation = sigClass.getAnnotations().iterator().next(); local 121 assertEquals("java.lang.Deprecated", annotation.getType().getClassDefinition().getQualifiedName()); 142 IAnnotation annotation = field.getAnnotations().iterator().next(); local 143 assertEquals("java.lang.Deprecated", annotation.getType().getClassDefinition().getQualifiedName()); [all...] |
/external/clang/include/clang/Basic/ |
TokenKinds.h | 60 /// '!' or '%', and returns NULL for literal and annotation tokens. 96 #define ANNOTATION(NAME) \
|
/external/javassist/src/main/javassist/bytecode/ |
AccessFlag.java | 38 public static final int ANNOTATION = 0x2000;
|
/development/tools/rmtypedefs/src/com/android/tools/rmtypedefs/ |
RmTypeDefs.java | 38 * Finds and deletes typedef annotation classes (and also warns if their 43 private static final String ANNOTATION = "java/lang/annotation/Annotation"; 44 private static final String STRING_DEF = "android/annotation/StringDef"; 45 private static final String INT_DEF = "android/annotation/IntDef"; 48 private static final String RETENTION_DESC = "Ljava/lang/annotation/Retention;"; 49 private static final String RETENTION_POLICY_DESC = "Ljava/lang/annotation/RetentionPolicy;"; 101 System.out.println("Deleting @IntDef and @StringDef annotation class files"); 104 // Record typedef annotation names and file [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/type/ |
Type.java | 142 * {@code java.lang.annotation.Annotation} 144 public static final Type ANNOTATION = 145 intern("Ljava/lang/annotation/Annotation;");
|
/dalvik/dx/src/com/android/dx/rop/type/ |
Type.java | 126 * {@code java.lang.annotation.Annotation} 128 public static final Type ANNOTATION = 129 intern("Ljava/lang/annotation/Annotation;");
|
/external/dexmaker/src/dx/java/com/android/dx/rop/type/ |
Type.java | 127 * {@code java.lang.annotation.Annotation} 129 public static final Type ANNOTATION = 130 intern("Ljava/lang/annotation/Annotation;");
|
/cts/tools/signature-tools/src/signature/converter/dex/ |
DexUtil.java | 48 "Ldalvik/annotation/Throws;"; 50 "Ldalvik/annotation/Signature;"; 52 "Ldalvik/annotation/AnnotationDefault;"; 54 "Ldalvik/annotation/EnclosingClass;"; 56 "Ldalvik/annotation/EnclosingMethod;"; 58 "Ldalvik/annotation/InnerClass;"; 60 "Ldalvik/annotation/MemberClasses;"; 204 * Returns true if the given class is an annotation, false otherwise. 208 * @return true if the given class is an annotation, false otherwise 226 // order of branches is crucial since a annotation is also an interfac 264 DexAnnotation annotation = getAnnotation(annotatedElement, local 320 DexAnnotation annotation = getAnnotation(annotatedElement, local 489 DexAnnotation annotation = getAnnotation(dexClass, local 503 DexAnnotation annotation = getAnnotation(dexClass, local [all...] |
DexToSigConverter.java | 336 || Kind.ANNOTATION.equals(sigClass.getKind())) { 429 // read mapping to defaults from annotation 430 DexAnnotation annotation = getDefaultMappingsAnnotation(dexClass); local 431 DexAnnotationAttribute dexAnnotationAttribute = annotation 887 DexEncodedAnnotation annotation = local [all...] |
/cts/tools/signature-tools/src/signature/converter/doclet/ |
DocletToSigConverter.java | 136 else if (classDoc.isAnnotationType()) c.setKind(Kind.ANNOTATION);
146 || Kind.ANNOTATION.equals(c.getKind())) {
245 // set annotation field annotations
251 } else { // no annotation type
553 if ("java.lang.annotation.Retention".equals(d.annotationType()
557 return "java.lang.annotation.RetentionPolicy.SOURCE"
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
statetracker.py | 87 ANNOTATION = frozenset(['preserveTry', 'suppress']) 89 LEGAL_DOC = STANDARD_DOC | ANNOTATION
|
/external/chromium_org/third_party/closure_linter/closure_linter/ |
statetracker.py | 75 'ngInject', # This annotation is specific to AngularJS. 99 ANNOTATION = frozenset(['preserveTry', 'suppress']) 101 LEGAL_DOC = STANDARD_DOC | ANNOTATION [all...] |
/external/doclava/src/com/google/doclava/ |
InfoBuilder.java | 540 ENUM, INTERFACE, ANNOTATION, ORDINARY 574 case ANNOTATION: 1414 ClassInfo annotation = buildClassName(child, containingClass, modifiers, local [all...] |
/cts/tools/signature-tools/src/signature/compare/ |
ApiComparator.java | 268 } else if (from.getKind() == Kind.ANNOTATION) { 598 * Returns the annotation elements for the given annotation. The returned 601 * @param annotation 602 * the annotation to return the elements for 603 * @return the default enriched annotation elements 606 IAnnotation annotation) { 608 annotation.getElements()); 615 for (IAnnotationField field : annotation.getType().getClassDefinition() [all...] |
/dalvik/dx/etc/ |
jasmin.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar | |
/external/owasp/sanitizer/lib/htmlparser-1.3/ |
htmlparser-1.3-with-transitions.jar | |
htmlparser-1.3.jar | |
/external/owasp/sanitizer/tools/findbugs/lib/ |
bcel.jar | |