Searched refs:annots (Results 1 - 10 of 10) sorted by relevance

/openjdk10/langtools/test/tools/javac/lambda/
H A DSE5AnnotationsOnLambdaParameters.java51 for (Annotation[] annots : m.getParameterAnnotations()) {
52 if (annots.length > 0) {
/openjdk10/jdk/src/java.management/share/classes/javax/management/
H A DMBeanOperationInfo.java315 final Annotation[][] annots = method.getParameterAnnotations();
316 return parameters(classes, annots);
320 Annotation[][] annots) {
323 assert(classes.length == annots.length);
326 Descriptor d = Introspector.descriptorForAnnotations(annots[i]);
319 parameters(Class<?>[] classes, Annotation[][] annots) argument
H A DMBeanConstructorInfo.java212 final Annotation[][] annots = cn.getParameterAnnotations();
213 return MBeanOperationInfo.parameters(classes, annots);
/openjdk10/jdk/src/java.management/share/classes/com/sun/jmx/mbeanserver/
H A DIntrospector.java392 final Annotation[] annots = elmt.getAnnotations();
393 return descriptorForAnnotations(annots);
396 public static Descriptor descriptorForAnnotations(Annotation[] annots) { argument
397 if (annots.length == 0)
400 for (Annotation a : annots) {
H A DMXBeanIntrospector.java216 Annotation[][] annots = method.getParameterAnnotations();
225 Introspector.descriptorForAnnotations(annots[i]));
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java491 List<? extends AnnotationMirror> annots = e.getAnnotationMirrors();
492 for(AnnotationMirror annotationMirror : annots) {
499 List<? extends AnnotationMirror> annots = e.getAnnotationMirrors();
500 for(AnnotationMirror annotationMirror : annots) {
/openjdk10/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java170 RuntimeInvisibleAnnotations_attribute annots =
172 if (annots != null) {
173 for (Annotation a: annots.annotations) {
/openjdk10/langtools/test/tools/javac/processing/
H A DT6920317.java357 public boolean process(Set<? extends TypeElement> annots, RoundEnvironment renv) { argument
359 System.err.println("Round " + round + " annots:" + annots + " rootElems:" + renv.getRootElements());
/openjdk10/langtools/make/src/classes/build/tools/symbolgenerator/
H A DCreateSymbols.java1063 List<AnnotationDescription> annots = headerDesc.classAnnotations;
1065 if (annots != null) {
1066 for (AnnotationDescription ad : annots) {
1068 annots.remove(ad);
1071 annots = headerDesc.classAnnotations;
1072 if (annots == null) {
1073 headerDesc.classAnnotations = annots = new ArrayList<>();
1075 annots.add(ad);
1078 annots.add(ad);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DLower.java2187 private void createInfoClass(List<JCAnnotation> annots, ClassSymbol c) { argument
2190 make.ClassDef(make.Modifiers(flags, annots),

Completed in 142 milliseconds