Searched refs:Compound (Results 1 - 25 of 25) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DLint.java64 public Lint augment(Attribute.Compound attr) {
73 public Lint augment(List<Attribute.Compound> attrs) {
81 public Lint augment(List<Attribute.Compound> attrs, long flags) {
278 Lint augment(Lint parent, Attribute.Compound attr) {
286 Lint augment(Lint parent, List<Attribute.Compound> attrs) {
290 for (Attribute.Compound a: attrs) {
322 public void visitCompound(Attribute.Compound compound) {
H A DAttribute.java134 public static class Compound extends Attribute implements AnnotationMirror { class in class:Attribute
141 public Compound(Type type, method in class:Attribute.Compound
186 public Attribute.Compound getValue() {
277 void visitCompound(Attribute.Compound compound);
H A DSymbol.java77 public List<Attribute.Compound> attributes_field;
83 public List<Attribute.Compound> getAnnotationMirrors() {
88 public Attribute.Compound attribute(Symbol anno) {
89 for (Attribute.Compound a : getAnnotationMirrors())
666 public List<Attribute.Compound> getAnnotationMirrors() {
773 public List<Attribute.Compound> getAnnotationMirrors() {
H A DTypes.java3819 public RetentionPolicy getRetention(Attribute.Compound a) {
3821 Attribute.Compound c = a.type.tsym.attribute(syms.retentionType.tsym);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacElements.java106 for (Attribute.Compound anno : annotated.getAnnotationMirrors())
238 return matchAnnoToTree(cast(Attribute.Compound.class, findme),
248 private JCTree matchAnnoToTree(Attribute.Compound findme,
249 List<Attribute.Compound> annos,
251 for (Attribute.Compound anno : annos) {
266 private JCTree matchAnnoToTree(final Attribute.Compound findme,
278 public void visitCompound(Attribute.Compound anno) {
381 Attribute.Compound anno = cast(Attribute.Compound.class, a);
440 public List<Attribute.Compound> getAllAnnotationMirror
[all...]
H A DAnnotationProxyMaker.java61 private final Attribute.Compound anno;
65 private AnnotationProxyMaker(Attribute.Compound anno,
76 Attribute.Compound anno, Class<A> annoType) {
235 public void visitCompound(Attribute.Compound c) {
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DAnnotationMirrorImpl.java49 protected final Attribute.Compound anno;
53 AnnotationMirrorImpl(AptEnv env, Attribute.Compound anno, Declaration decl) {
H A DAnnotationProxyMaker.java56 private final Attribute.Compound attrs;
61 Attribute.Compound attrs,
73 AptEnv env, Attribute.Compound attrs, Class<A> annoType) {
235 public void visitCompound(Attribute.Compound c) {
H A DAnnotationValueImpl.java101 public void visitCompound(Attribute.Compound c) {
H A DDeclarationImpl.java116 for (Attribute.Compound a : sym.getAnnotationMirrors()) {
137 for (Attribute.Compound attr : annotated.getAnnotationMirrors()) {
H A DDeclarationMaker.java236 AnnotationMirror getAnnotationMirror(Attribute.Compound a, Declaration decl) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAnnotationDescImpl.java50 private final Attribute.Compound annotation;
53 AnnotationDescImpl(DocEnv env, Attribute.Compound annotation) {
H A DParameterImpl.java100 for (Attribute.Compound a : sym.getAnnotationMirrors()) {
H A DAnnotationValueImpl.java93 public void visitCompound(Attribute.Compound c) {
148 public void visitCompound(Attribute.Compound c) {
H A DProgramElementDocImpl.java162 for (Attribute.Compound a : sym.getAnnotationMirrors()) {
H A DPackageDocImpl.java288 for (Attribute.Compound a : sym.getAnnotationMirrors()) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAnnotate.java134 Attribute.Compound enterAnnotation(JCAnnotation a,
144 return new Attribute.Compound(a.type, List.<Pair<MethodSymbol,Attribute>>nil());
148 return new Attribute.Compound(a.type, List.<Pair<MethodSymbol,Attribute>>nil());
187 return new Attribute.Compound(a.type, buf.toList());
H A DMemberEnter.java777 ListBuffer<Attribute.Compound> buf =
778 new ListBuffer<Attribute.Compound>();
783 Attribute.Compound c = annotate.enterAnnotation(a,
H A DCheck.java2346 Attribute.Compound atTarget =
H A DLower.java2235 for (Attribute.Compound a: tree.packge.attributes_field) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassWriter.java688 for (Attribute.Compound a : s.getAnnotationMirrors()) {
703 ListBuffer<Attribute.Compound> buf = new ListBuffer<Attribute.Compound>();
704 for (Attribute.Compound a : s.getAnnotationMirrors())
708 for (Attribute.Compound a : buf)
718 ListBuffer<Attribute.Compound> buf = new ListBuffer<Attribute.Compound>();
719 for (Attribute.Compound a : s.getAnnotationMirrors())
723 for (Attribute.Compound a : buf)
739 int writeJavaAnnotations(List<Attribute.Compound> attr
[all...]
H A DClassReader.java1505 List<Attribute.Compound> deproxyCompoundList(List<CompoundAnnotationProxy> pl) {
1507 ListBuffer<Attribute.Compound> buf =
1508 new ListBuffer<Attribute.Compound>();
1515 Attribute.Compound deproxyCompound(CompoundAnnotationProxy a) {
1525 return new Attribute.Compound(a.type, buf.toList());
1596 public void visitCompound(Attribute.Compound compound) {
1700 List<Attribute.Compound> newList = deproxyCompoundList(l);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/sym/
H A DCreateSymbols.java171 Attribute.Compound proprietary =
172 new Attribute.Compound(syms.proprietaryType,
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java675 public List<JCAnnotation> Annotations(List<Attribute.Compound> attributes) {
678 for (List<Attribute.Compound> i = attributes; i.nonEmpty(); i=i.tail) {
736 public void visitCompound(Attribute.Compound compound) {
739 public JCAnnotation visitCompoundInternal(Attribute.Compound compound) {
758 JCAnnotation translate(Attribute.Compound a) {
767 return annotationBuilder.translate((Attribute.Compound)a);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DApt.java196 for(Attribute.Compound compound: symbol.getAnnotationMirrors())

Completed in 100 milliseconds