Searched defs:anno (Results 1 - 25 of 32) sorted by relevance

12

/openjdk7/langtools/test/tools/javac/processing/model/type/MirroredTypeEx/
H A DOverEager.java56 IAm anno = t.getAnnotation(IAm.class);
57 if (anno != null)
58 checkAnno(anno);
62 private void checkAnno(IAm anno) { argument
64 anno.value();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/builder/
H A DDiv.java59 void endDiv(L loc, A anno) throws BuildException; argument
H A DGrammar.java62 P endGrammar(L loc, A anno) throws BuildException; argument
H A DInclude.java67 L loc, A anno) throws BuildException, IllegalSchemaException;
66 endInclude(Parseable current, String uri, String ns, L loc, A anno) argument
H A DIncludedGrammar.java76 P endIncludedGrammar(L loc, A anno) throws BuildException; argument
H A DScope.java58 P makeParentRef(String name, L loc, A anno) throws BuildException; argument
59 P makeRef(String name, L loc, A anno) throws BuildException; argument
H A DDataPatternBuilder.java61 void addParam(String name, String value, Context context, String ns, L loc, A anno) throws BuildException; argument
63 P makePattern(L loc, A anno) throws BuildException; argument
64 P makePattern(P except, L loc, A anno) throws BuildException; argument
H A DGrammarSection.java94 void define( String name, Combine combine, P pattern, L loc, A anno) throws BuildException; argument
H A DNameClassBuilder.java67 N annotate(N nc, A anno) throws BuildException; argument
70 N makeChoice(List<N> nameClasses, L loc, A anno); argument
77 N makeName(String ns, String localName, String prefix, L loc, A anno); argument
78 N makeNsName(String ns, L loc, A anno); argument
82 N makeNsName(String ns, N except, L loc, A anno); argument
83 N makeAnyName(L loc, A anno); argument
87 N makeAnyName(N except, L loc, A anno); argument
H A DSchemaBuilder.java78 P makeChoice(List<P> patterns, L loc, A anno) throws BuildException; argument
80 P makeInterleave(List<P> patterns, L loc, A anno) throws BuildException; argument
82 P makeGroup(List<P> patterns, L loc, A anno) throws BuildException; argument
84 P makeOneOrMore(P p, L loc, A anno) throws BuildException; argument
86 P makeZeroOrMore(P p, L loc, A anno) throws BuildException; argument
88 P makeOptional(P p, L loc, A anno) throws BuildException; argument
90 P makeList(P p, L loc, A anno) throws BuildException; argument
92 P makeMixed(P p, L loc, A anno) throws BuildException; argument
94 P makeEmpty(L loc, A anno); argument
96 P makeNotAllowed(L loc, A anno); argument
98 makeText(L loc, A anno) argument
100 makeAttribute(N nc, P p, L loc, A anno) argument
102 makeElement(N nc, P p, L loc, A anno) argument
106 makeValue(String datatypeLibrary, String type, String value, Context c, String ns, L loc, A anno) argument
136 annotate(P p, A anno) argument
164 makeExternalRef(Parseable current, String uri, String ns, Scope<P,E,L,A,CL> scope, L loc, A anno) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DAnnotationMirrorImpl.java49 protected final Attribute.Compound anno; field in class:AnnotationMirrorImpl
53 AnnotationMirrorImpl(AptEnv env, Attribute.Compound anno, Declaration decl) { argument
55 this.anno = anno;
72 fmtr.append(anno.type.tsym);
74 int len = anno.values.length();
78 for (Pair<MethodSymbol, Attribute> val : anno.values) {
100 return (AnnotationType) env.typeMaker.getType(anno.type);
111 for (Pair<MethodSymbol, Attribute> val : anno.values) {
H A DConstants.java229 void append(AnnotationMirrorImpl anno) { argument
230 appendUnquoted(anno.toString());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDataPatternBuilderImpl.java71 public void addParam(String name, String value, Context context, String ns, Location loc, Annotations anno) throws BuildException { argument
72 p.params.add(p.new Param(name,value,context.copy(),ns,loc,(Annotation)anno));
79 public ParsedPattern makePattern(Location loc, Annotations anno) throws BuildException { argument
80 return makePattern(null,loc,anno);
83 public ParsedPattern makePattern(ParsedPattern except, Location loc, Annotations anno) throws BuildException { argument
85 if(anno!=null)
86 p.annotation = ((Annotation)anno).getResult();
H A DGrammarBuilderImpl.java87 public ParsedPattern endGrammar(Location loc, Annotations anno) throws BuildException { argument
88 if(anno!=null)
89 grammar.annotation = ((Annotation)anno).getResult();
98 public void endDiv(Location loc, Annotations anno) throws BuildException { argument
101 public void define(String name, Combine combine, ParsedPattern pattern, Location loc, Annotations anno) throws BuildException { argument
108 if(anno!=null)
109 d.annotation = ((Annotation)anno).getResult();
130 public ParsedPattern makeParentRef(String name, Location loc, Annotations anno) throws BuildException { argument
131 return parent.makeRef(name,loc,anno);
134 public ParsedPattern makeRef(String name, Location loc, Annotations anno) throw argument
[all...]
H A DIncludeImpl.java74 public void define(String name, Combine combine, ParsedPattern pattern, Location loc, Annotations anno) throws BuildException { argument
75 super.define(name, combine, pattern, loc, anno);
82 public void endInclude(Parseable current, String uri, String ns, Location loc, Annotations anno) throws BuildException, IllegalSchemaException { argument
92 public void define(String name, Combine combine, ParsedPattern pattern, Location loc, Annotations anno) throws BuildException { argument
102 super.define(name, combine, pattern, loc, anno);
105 public ParsedPattern endIncludedGrammar(Location loc, Annotations anno) throws BuildException { argument
H A DDDataPattern.java74 Annotation anno; field in class:DDataPattern.Param
76 public Param(String name, String value, Context context, String ns, Location loc, Annotation anno) { argument
82 this.anno = anno;
106 return anno;
H A DDSchemaBuilderImpl.java98 static DPattern wrap( DPattern p, LocatorImpl loc, Annotation anno ) {
100 if(anno!=null)
101 p.annotation = anno.getResult();
116 public DPattern makeChoice(List<DPattern> patterns, LocatorImpl loc, Annotation anno) throws BuildException { argument
117 return wrap(addAll(new DChoicePattern(),patterns),loc,anno);
120 public DPattern makeInterleave(List<DPattern> patterns, LocatorImpl loc, Annotation anno) throws BuildException { argument
121 return wrap(addAll(new DInterleavePattern(),patterns),loc,anno);
124 public DPattern makeGroup(List<DPattern> patterns, LocatorImpl loc, Annotation anno) throws BuildException { argument
125 return wrap(addAll(new DGroupPattern(),patterns),loc,anno);
128 public DPattern makeOneOrMore(DPattern p, LocatorImpl loc, Annotation anno) throw argument
132 makeZeroOrMore(DPattern p, LocatorImpl loc, Annotation anno) argument
136 makeOptional(DPattern p, LocatorImpl loc, Annotation anno) argument
140 makeList(DPattern p, LocatorImpl loc, Annotation anno) argument
144 makeMixed(DPattern p, LocatorImpl loc, Annotation anno) argument
148 makeEmpty(LocatorImpl loc, Annotation anno) argument
152 makeNotAllowed(LocatorImpl loc, Annotation anno) argument
156 makeText(LocatorImpl loc, Annotation anno) argument
160 makeAttribute(NameClass nc, DPattern p, LocatorImpl loc, Annotation anno) argument
164 makeElement(NameClass nc, DPattern p, LocatorImpl loc, Annotation anno) argument
172 makeValue(String datatypeLibrary, String type, String value, Context c, String ns, LocatorImpl loc, Annotation anno) argument
180 annotate(DPattern p, Annotation anno) argument
195 makeExternalRef(Parseable current, String uri, String ns, Scope<DPattern, ElementWrapper, LocatorImpl, Annotation, CommentListImpl> scope, LocatorImpl loc, Annotation anno) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/nc/
H A DNameClassBuilderImpl.java68 public NameClass makeChoice(List<NameClass> nameClasses, L loc, A anno) { argument
75 public NameClass makeName(String ns, String localName, String prefix, L loc, A anno) { argument
79 public NameClass makeNsName(String ns, L loc, A anno) { argument
83 public NameClass makeNsName(String ns, NameClass except, L loc, A anno) { argument
87 public NameClass makeAnyName(L loc, A anno) { argument
91 public NameClass makeAnyName(NameClass except, L loc, A anno) { argument
99 public NameClass annotate(NameClass nc, A anno) throws BuildException { argument
/openjdk7/langtools/test/tools/javac/treeannotests/
H A DTestProcessor.java80 AnnotationMirror getAnnoMirror(Element e, TypeElement anno) { argument
83 if (types.isSameType(m.getAnnotationType(), anno.asType()))
190 JCAnnotation anno = l.head;
191 if (anno.annotationType.toString().equals(name) && (anno.args.size() == 1)) {
192 String expect = getStringValue(anno.args.head);
197 error(file, anno, "Unexpected result: expected: \"" + expect + "\", found: \"" + found + "\"");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotatedMemoryPanel.java222 Annotation anno = (Annotation) iter.next();
223 Interval interval = anno.getInterval();
248 g.setColor(anno.getColor());
251 g.drawLine(curLineX, lineStartY, curTextX - 10, anno.getY() - (lineHeight / 2));
253 anno.draw(g);
442 Annotation anno = (Annotation) iter.next();
443 anno.setY(anno.getY() + y);
496 Annotation anno = (Annotation) ((IntervalNode) iter.next()).getData();
504 if (el.getLowAddress().greaterThan(anno
558 layoutBefore(Annotation anno, Annotation constraintAnno, Graphics g, int x, Address startAddr, int lineHeight) argument
582 layoutAfter(Annotation anno, Annotation constraintAnno, Graphics g, int x, Address startAddr, int lineHeight) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DAnnotationProxyMaker.java61 private final Attribute.Compound anno; field in class:AnnotationProxyMaker
65 private AnnotationProxyMaker(Attribute.Compound anno, argument
67 this.anno = anno;
76 Attribute.Compound anno, Class<A> annoType) {
77 AnnotationProxyMaker apm = new AnnotationProxyMaker(anno, annoType);
121 ClassSymbol sym = (ClassSymbol) anno.type.tsym;
131 for (Pair<MethodSymbol, Attribute> p : anno.values)
75 generateAnnotation( Attribute.Compound anno, Class<A> annoType) argument
/openjdk7/langtools/test/tools/javac/varargs/warning/
H A DWarn4.java97 String anno; field in class:Warn4.TrustMe
99 TrustMe(String anno) { argument
100 this.anno = anno;
239 meth1 = trustMe.anno + "\n" + suppressLevelDecl.getSuppressAnno() + modKind.mod + meth1;
H A DWarn5.java64 String anno; field in class:Warn5.TrustMe
66 TrustMe(String anno) { argument
67 this.anno = anno;
288 source = template.replace("#T", trustMe.anno).
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DElementInfoImpl.java82 private final XmlElementDecl anno; field in class:ElementInfoImpl
158 String v = anno.defaultValue();
243 anno = reader().getMethodAnnotation( XmlElementDecl.class, m, this );
244 assert anno!=null; // the caller should check this
245 assert anno instanceof Locatable;
252 anno );
254 tagName = parseElementName(anno);
294 T s = reader().getClassValue(anno,"scope");
303 anno );
405 if(anno
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DSchema.java54 private AnnotationImpl anno; field in class:Schema
132 $runtime.currentSchema.setAnnotation(anno);
187 anno = (AnnotationImpl)$runtime.currentSchema.getAnnotation();
224 NGCCHandler h = new annotation(this, super._source, $runtime, 351, anno,AnnotationContext.SCHEMA);
338 NGCCHandler h = new annotation(this, super._source, $runtime, 362, anno,AnnotationContext.SCHEMA);
1171 anno = ((AnnotationImpl)$__result__);
1242 anno = ((AnnotationImpl)$__result__);

Completed in 54 milliseconds

12