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

1234

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/gbind/
H A DElementSets.java39 * This method performs better if lhs is bigger than rhs
41 public static ElementSet union(ElementSet lhs, ElementSet rhs) { argument
42 if(lhs.contains(rhs))
43 return lhs;
44 if(lhs==ElementSet.EMPTY_SET)
47 return lhs;
48 return new MultiValueSet(lhs,rhs);
57 public MultiValueSet(ElementSet lhs, ElementSet rhs) { argument
58 addAll(lhs);
65 private void addAll(ElementSet lhs) { argument
[all...]
H A DChoice.java37 private final Expression lhs; field in class:Choice
47 public Choice(Expression lhs, Expression rhs) { argument
48 this.lhs = lhs;
50 this.isNullable = lhs.isNullable() || rhs.isNullable();
58 return ElementSets.union(lhs.lastSet(),rhs.lastSet());
62 lhs.buildDAG(incoming);
67 return '('+lhs.toString()+'|'+rhs.toString()+')';
H A DSequence.java38 private final Expression lhs; field in class:Sequence
54 public Sequence(Expression lhs, Expression rhs) { argument
55 this.lhs = lhs;
57 isNullable = lhs.isNullable() && rhs.isNullable();
63 lastSet = ElementSets.union(lhs.lastSet(),rhs.lastSet());
75 lhs.buildDAG(incoming);
76 if(lhs.isNullable())
77 rhs.buildDAG(ElementSets.union(incoming,lhs.lastSet()));
79 rhs.buildDAG(lhs
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJAssignment.java34 JAssignmentTarget lhs; field in class:JAssignment
38 JAssignment(JAssignmentTarget lhs, JExpression rhs) { argument
39 this.lhs = lhs;
43 JAssignment(JAssignmentTarget lhs, JExpression rhs, String op) { argument
44 this.lhs = lhs;
50 f.g(lhs).p(op + '=').g(rhs);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/host/
H A DLocationHost.java56 final Location lhs; field in class:LocationHost
59 LocationHost( Location lhs, Location rhs ) { argument
60 this.lhs = lhs;
H A DParsedElementAnnotationHost.java56 final ParsedElementAnnotation lhs; field in class:ParsedElementAnnotationHost
59 ParsedElementAnnotationHost( ParsedElementAnnotation lhs, ParsedElementAnnotation rhs ) { argument
60 this.lhs = lhs;
H A DParsedNameClassHost.java56 final ParsedNameClass lhs; field in class:ParsedNameClassHost
59 ParsedNameClassHost( ParsedNameClass lhs, ParsedNameClass rhs ) { argument
60 this.lhs = lhs;
H A DParsedPatternHost.java56 public final ParsedPattern lhs; field in class:ParsedPatternHost
59 ParsedPatternHost( ParsedPattern lhs, ParsedPattern rhs ) { argument
60 this.lhs = lhs;
H A DCommentListHost.java59 final CommentList lhs; field in class:CommentListHost
62 CommentListHost(CommentList lhs, CommentList rhs) { argument
63 this.lhs = lhs;
69 if(lhs!=null)
70 lhs.addComment(value,loc.lhs);
H A DAnnotationsHost.java60 final Annotations lhs; field in class:AnnotationsHost
63 AnnotationsHost( Annotations lhs, Annotations rhs ) { argument
64 this.lhs = lhs;
71 lhs.addAttribute(ns, localName, prefix, value, loc.lhs);
77 lhs.addComment(comments==null?null:comments.lhs);
83 lhs.addElement(ea.lhs);
[all...]
H A DDataPatternBuilderHost.java62 final DataPatternBuilder lhs; field in class:DataPatternBuilderHost
65 DataPatternBuilderHost( DataPatternBuilder lhs, DataPatternBuilder rhs ) { argument
66 this.lhs = lhs;
74 lhs.addParam( name, value, context, ns, loc.lhs, anno.lhs );
81 lhs.annotation(ea.lhs);
90 lhs
[all...]
H A DElementAnnotationBuilderHost.java60 final ElementAnnotationBuilder lhs; field in class:ElementAnnotationBuilderHost
63 ElementAnnotationBuilderHost( ElementAnnotationBuilder lhs, ElementAnnotationBuilder rhs ) { argument
64 super(lhs,rhs);
65 this.lhs = lhs;
73 lhs.addText( value, loc.lhs, comments==null?null:comments.lhs );
79 lhs.makeElementAnnotation(),
H A DNameClassBuilderHost.java65 final NameClassBuilder lhs; field in class:NameClassBuilderHost
68 NameClassBuilderHost( NameClassBuilder lhs, NameClassBuilder rhs ) { argument
69 this.lhs = lhs;
78 lhs.annotate(nc.lhs, anno.lhs),
87 lhs.annotateAfter(nc.lhs, e.lhs),
[all...]
H A DSchemaBuilderHost.java74 final SchemaBuilder lhs; field in class:SchemaBuilderHost
77 public SchemaBuilderHost( SchemaBuilder lhs, SchemaBuilder rhs ) { argument
78 this.lhs = lhs;
89 lhs.annotate(p.lhs, a.lhs),
90 rhs.annotate(p.lhs, a.lhs) );
99 lhs
[all...]
H A DGrammarSectionHost.java64 private final GrammarSection lhs; field in class:GrammarSectionHost
67 GrammarSectionHost( GrammarSection lhs, GrammarSection rhs ) { argument
68 this.lhs = lhs;
70 if(lhs==null || rhs==null)
80 lhs.define(name, combine, pattern.lhs, loc.lhs, anno.lhs);
85 return new DivHost( lhs
[all...]
H A DScopeHost.java60 protected final Scope lhs; field in class:ScopeHost
63 protected ScopeHost( Scope lhs, Scope rhs ) { argument
64 super(lhs,rhs);
65 this.lhs = lhs;
74 lhs.makeParentRef(name, loc.lhs, anno.lhs),
83 lhs.makeRef(name, loc.lhs, ann
[all...]
H A DDivHost.java59 private final Div lhs; field in class:DivHost
62 DivHost(Div lhs, Div rhs) { argument
63 super(lhs, rhs);
64 this.lhs = lhs;
72 lhs.endDiv( loc.lhs, anno.lhs );
H A DGrammarHost.java68 final Grammar lhs; field in class:GrammarHost
71 public GrammarHost(Grammar lhs,Grammar rhs) { argument
72 super(lhs,rhs);
73 this.lhs = lhs;
82 lhs.endGrammar(loc.lhs, anno.lhs),
H A DIncludeHost.java62 private final Include lhs; field in class:IncludeHost
65 IncludeHost(Include lhs, Include rhs) { argument
66 super(lhs, rhs);
67 this.lhs = lhs;
75 lhs.endInclude( current, uri, ns, loc.lhs, anno.lhs );
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DUtil.java56 public static boolean equals(Locator lhs, Locator rhs) { argument
57 return lhs.getLineNumber()==rhs.getLineNumber()
58 && lhs.getColumnNumber()==rhs.getColumnNumber()
59 && equals(lhs.getSystemId(),rhs.getSystemId())
60 && equals(lhs.getPublicId(),rhs.getPublicId());
63 private static boolean equals(String lhs, String rhs) { argument
64 if(lhs==null && rhs==null) return true;
65 if(lhs==null || rhs==null) return false;
66 return lhs.equals(rhs);
H A DForkEntityResolver.java40 private final EntityResolver lhs; field in class:ForkEntityResolver
43 public ForkEntityResolver(EntityResolver lhs, EntityResolver rhs) { argument
44 this.lhs = lhs;
49 InputSource is = lhs.resolveEntity(publicId, systemId);
H A DForkContentHandler.java52 lhs = first;
71 private final ContentHandler lhs,rhs; field in class:ForkContentHandler
74 lhs.setDocumentLocator(locator);
79 lhs.startDocument();
84 lhs.endDocument();
89 lhs.startPrefixMapping(prefix,uri);
94 lhs.endPrefixMapping(prefix);
99 lhs.startElement(uri,localName,qName,attributes);
104 lhs.endElement(uri,localName,qName);
109 lhs
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/util/
H A DComparer.java45 * @return a number <, == or > 0 depending on lhs compared to rhs
48 abstract public int compare(Object lhs, Object rhs); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DForkXmlOutput.java42 private final XmlOutput lhs; field in class:ForkXmlOutput
45 public ForkXmlOutput(XmlOutput lhs, XmlOutput rhs) { argument
46 this.lhs = lhs;
52 lhs.startDocument(serializer, fragment, nsUriIndex2prefixIndex, nsContext);
58 lhs.endDocument(fragment);
64 lhs.beginStartTag(name);
70 lhs.attribute(name, value);
76 lhs.endTag(name);
81 lhs
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/util/
H A DForkEntityResolver.java40 private final EntityResolver lhs; field in class:ForkEntityResolver
43 public ForkEntityResolver(EntityResolver lhs, EntityResolver rhs) { argument
44 this.lhs = lhs;
49 InputSource is = lhs.resolveEntity(publicId, systemId);

Completed in 41 milliseconds

1234