/external/testng/src/main/java/org/testng/internal/annotations/ |
D | JDK15AnnotationFinder.java | 1 package org.testng.internal.annotations; 13 import org.testng.annotations.AfterClass; 14 import org.testng.annotations.AfterGroups; 15 import org.testng.annotations.AfterMethod; 16 import org.testng.annotations.AfterSuite; 17 import org.testng.annotations.AfterTest; 18 import org.testng.annotations.BeforeClass; 19 import org.testng.annotations.BeforeGroups; 20 import org.testng.annotations.BeforeMethod; 21 import org.testng.annotations.BeforeSuite; [all …]
|
D | JDK15TagFactory.java | 1 package org.testng.internal.annotations; 11 import org.testng.annotations.AfterClass; 12 import org.testng.annotations.AfterGroups; 13 import org.testng.annotations.AfterMethod; 14 import org.testng.annotations.AfterSuite; 15 import org.testng.annotations.AfterTest; 16 import org.testng.annotations.BeforeClass; 17 import org.testng.annotations.BeforeGroups; 18 import org.testng.annotations.BeforeMethod; 19 import org.testng.annotations.BeforeSuite; [all …]
|
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | annotations.jar | ... findbugs/
edu/umd/cs/findbugs/annotations/
edu/umd/cs/findbugs/annotations ... |
D | jcip-annotations.jar | ... /annotations/NotThreadSafe.java
net/jcip/annotations/package.html
net/jcip/annotations/ |
/external/testng/src/test/java/test/mannotation/ |
D | MTest1.java | 3 import org.testng.annotations.AfterClass; 4 import org.testng.annotations.AfterGroups; 5 import org.testng.annotations.AfterMethod; 6 import org.testng.annotations.AfterSuite; 7 import org.testng.annotations.AfterTest; 8 import org.testng.annotations.BeforeClass; 9 import org.testng.annotations.BeforeGroups; 10 import org.testng.annotations.BeforeMethod; 11 import org.testng.annotations.BeforeSuite; 12 import org.testng.annotations.BeforeTest; [all …]
|
/external/proguard/src/proguard/classfile/attribute/annotation/ |
D | TypeAnnotationsAttribute.java | 46 TypeAnnotation[] annotations) in TypeAnnotationsAttribute() argument 48 super(u2attributeNameIndex, u2annotationsCount, annotations); in TypeAnnotationsAttribute() 57 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations; in typeAnnotationsAccept() local 63 typeAnnotationVisitor.visitTypeAnnotation(clazz, annotations[index]); in typeAnnotationsAccept() 73 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations; in typeAnnotationsAccept() local 79 typeAnnotationVisitor.visitTypeAnnotation(clazz, field, annotations[index]); in typeAnnotationsAccept() 89 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations; in typeAnnotationsAccept() local 95 typeAnnotationVisitor.visitTypeAnnotation(clazz, method, annotations[index]); in typeAnnotationsAccept()
|
D | AnnotationsAttribute.java | 35 public Annotation[] annotations; field in AnnotationsAttribute 51 Annotation[] annotations) in AnnotationsAttribute() argument 56 this.annotations = annotations; in AnnotationsAttribute() 69 annotationVisitor.visitAnnotation(clazz, annotations[index]); in annotationsAccept() 83 annotationVisitor.visitAnnotation(clazz, field, annotations[index]); in annotationsAccept() 97 annotationVisitor.visitAnnotation(clazz, method, annotations[index]); in annotationsAccept() 111 annotationVisitor.visitAnnotation(clazz, method, codeAttribute, annotations[index]); in annotationsAccept()
|
/external/proguard/src/proguard/classfile/editor/ |
D | AnnotationsAttributeEditor.java | 52 Annotation[] annotations = targetAnnotationsAttribute.annotations; in addAnnotation() local 55 if (annotations.length <= annotationsCount) in addAnnotation() 57 targetAnnotationsAttribute.annotations = new Annotation[annotationsCount+1]; in addAnnotation() 58 System.arraycopy(annotations, 0, in addAnnotation() 59 targetAnnotationsAttribute.annotations, 0, in addAnnotation() 61 annotations = targetAnnotationsAttribute.annotations; in addAnnotation() 65 annotations[targetAnnotationsAttribute.u2annotationsCount++] = annotation; in addAnnotation()
|
/external/testng/src/test/java/test/v6/ |
D | A.java | 3 import org.testng.annotations.AfterClass; 4 import org.testng.annotations.AfterGroups; 5 import org.testng.annotations.AfterMethod; 6 import org.testng.annotations.AfterSuite; 7 import org.testng.annotations.BeforeClass; 8 import org.testng.annotations.BeforeGroups; 9 import org.testng.annotations.BeforeMethod; 10 import org.testng.annotations.BeforeSuite; 11 import org.testng.annotations.Test;
|
D | B.java | 3 import org.testng.annotations.AfterClass; 4 import org.testng.annotations.AfterMethod; 5 import org.testng.annotations.BeforeClass; 6 import org.testng.annotations.BeforeMethod; 7 import org.testng.annotations.BeforeSuite; 8 import org.testng.annotations.Test;
|
D | C.java | 3 import org.testng.annotations.AfterSuite; 4 import org.testng.annotations.AfterTest; 5 import org.testng.annotations.BeforeSuite; 6 import org.testng.annotations.BeforeTest; 7 import org.testng.annotations.Test;
|
/external/testng/src/test/java/test/invokedmethodlistener/ |
D | Base.java | 3 import org.testng.annotations.AfterClass; 4 import org.testng.annotations.AfterMethod; 5 import org.testng.annotations.AfterSuite; 6 import org.testng.annotations.AfterTest; 7 import org.testng.annotations.BeforeClass; 8 import org.testng.annotations.BeforeMethod; 9 import org.testng.annotations.BeforeSuite; 10 import org.testng.annotations.BeforeTest; 11 import org.testng.annotations.Test;
|
/external/guava/guava/src/com/google/common/reflect/ |
D | Parameter.java | 21 import com.google.common.annotations.Beta; 42 private final ImmutableList<Annotation> annotations; field in Parameter 48 Annotation[] annotations) { in Parameter() argument 52 this.annotations = ImmutableList.copyOf(annotations); in Parameter() 73 for (Annotation annotation : annotations) { in getAnnotation() 98 return annotations.toArray(new Annotation[annotations.size()]); in getDeclaredAnnotations() 108 return FluentIterable.from(annotations) in getDeclaredAnnotation() 120 return FluentIterable.from(annotations) in getDeclaredAnnotationsByType()
|
/external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/ |
D | BufferPerformanceBench.java | 26 import org.openjdk.jmh.annotations.Benchmark; 27 import org.openjdk.jmh.annotations.BenchmarkMode; 28 import org.openjdk.jmh.annotations.Fork; 29 import org.openjdk.jmh.annotations.Group; 30 import org.openjdk.jmh.annotations.GroupThreads; 31 import org.openjdk.jmh.annotations.Level; 32 import org.openjdk.jmh.annotations.Measurement; 33 import org.openjdk.jmh.annotations.Mode; 34 import org.openjdk.jmh.annotations.OutputTimeUnit; 35 import org.openjdk.jmh.annotations.Param; [all …]
|
/external/junit/src/main/java/org/junit/runner/ |
D | Description.java | 44 public static Description createSuiteDescription(String name, Annotation... annotations) { in createSuiteDescription() argument 45 return new Description(null, name, annotations); in createSuiteDescription() 57 …Description createSuiteDescription(String name, Serializable uniqueId, Annotation... annotations) { in createSuiteDescription() argument 58 return new Description(null, name, uniqueId, annotations); in createSuiteDescription() 72 …tatic Description createTestDescription(String className, String name, Annotation... annotations) { in createTestDescription() argument 73 return new Description(null, formatDisplayName(name, className), annotations); in createTestDescription() 85 … static Description createTestDescription(Class<?> clazz, String name, Annotation... annotations) { in createTestDescription() argument 86 return new Description(clazz, formatDisplayName(name, clazz.getName()), annotations); in createTestDescription() 150 private Description(Class<?> clazz, String displayName, Annotation... annotations) { in Description() argument 151 this(clazz, displayName, displayName, annotations); in Description() [all …]
|
/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() argument 55 this.annotations = ImmutableAnnotation.immutableSetOf(annotations); in ImmutableMethodParameter() 60 … @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations, in ImmutableMethodParameter() argument 63 this.annotations = ImmutableUtils.nullToEmptySet(annotations); in ImmutableMethodParameter() 78 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { return annotations; } in getAnnotations()
|
/external/guice/extensions/persist/lib/ |
D | hibernate-annotations.jar | ... hibernate.annotations
public abstract annotation org.hibernate.annotations.AccessType extends java.lang.Object implements java |
/external/sl4a/Common/src/com/googlecode/android_scripting/rpc/ |
D | MethodDescriptor.java | 88 final Annotation annotations[][] = getParameterAnnotations(); in invoke() local 98 } else if (MethodDescriptor.hasDefaultValue(annotations[i])) { in invoke() 99 args[i] = MethodDescriptor.getDefaultValue(parameterType, annotations[i]); in invoke() 117 final Annotation annotations[][] = getParameterAnnotations(); in invoke() local 123 String parameterName = getName(annotations[i]); in invoke() 126 } else if (MethodDescriptor.hasDefaultValue(annotations[i])) { in invoke() 127 args[i] = MethodDescriptor.getDefaultValue(parameterType, annotations[i]); in invoke() 312 final Annotation[][] annotations = mMethod.getParameterAnnotations(); in getHelp() local 320 helpBuilder.append(getHelpForParameter(genericParameterTypes[i], annotations[i])); in getHelp() 354 private static String getHelpForParameter(Type parameterType, Annotation[] annotations) { in getHelpForParameter() argument [all …]
|
/external/testng/src/test/java/test/configuration/ |
D | ConfigurationTest.java | 3 import org.testng.annotations.AfterClass; 4 import org.testng.annotations.AfterMethod; 5 import org.testng.annotations.AfterSuite; 6 import org.testng.annotations.BeforeClass; 7 import org.testng.annotations.BeforeMethod; 8 import org.testng.annotations.BeforeSuite; 9 import org.testng.annotations.Test;
|
D | MethodCallOrderTest.java | 6 import org.testng.annotations.AfterClass; 7 import org.testng.annotations.AfterMethod; 8 import org.testng.annotations.AfterSuite; 9 import org.testng.annotations.BeforeClass; 10 import org.testng.annotations.BeforeMethod; 11 import org.testng.annotations.Test;
|
D | SingleConfigurationTest.java | 4 import org.testng.annotations.AfterTest; 5 import org.testng.annotations.BeforeTest; 6 import org.testng.annotations.DataProvider; 7 import org.testng.annotations.Factory; 8 import org.testng.annotations.Test;
|
/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() argument 50 this.annotations = annotations; in BuilderAnnotationSet() 54 return annotations.iterator(); in iterator() 58 return annotations.size(); in size()
|
/external/testng/src/test/java/test/dataprovider/ |
D | ConfigurationAndDataProvidersTest.java | 4 import org.testng.annotations.BeforeClass; 5 import org.testng.annotations.BeforeMethod; 6 import org.testng.annotations.BeforeSuite; 7 import org.testng.annotations.BeforeTest; 8 import org.testng.annotations.DataProvider; 9 import org.testng.annotations.Test;
|
/external/testng/src/main/java/org/testng/internal/ |
D | ConfigurationMethod.java | 9 import org.testng.annotations.IAnnotation; 10 import org.testng.annotations.IConfigurationAnnotation; 11 import org.testng.annotations.ITestAnnotation; 14 import org.testng.internal.annotations.AnnotationHelper; 15 import org.testng.internal.annotations.ConfigurationAnnotation; 16 import org.testng.internal.annotations.IAfterClass; 17 import org.testng.internal.annotations.IAfterGroups; 18 import org.testng.internal.annotations.IAfterMethod; 19 import org.testng.internal.annotations.IAfterSuite; 20 import org.testng.internal.annotations.IAfterTest; [all …]
|
/external/testng/src/test/java/test/inheritance/testng471/ |
D | Class3.java | 3 import org.testng.annotations.AfterClass; 4 import org.testng.annotations.AfterMethod; 5 import org.testng.annotations.BeforeClass; 6 import org.testng.annotations.BeforeMethod; 7 import org.testng.annotations.Test;
|