Searched defs:uri (Results 226 - 250 of 394) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/
H A DOASISXMLCatalogReader.java254 if (checkAttributes(atts, "systemIdSuffix", "uri")) {
257 entryArgs.add(atts.getValue("uri"));
261 atts.getValue("uri"));
274 if (checkAttributes(atts, "uriSuffix", "uri")) {
277 entryArgs.add(atts.getValue("uri"));
281 atts.getValue("uri"));
291 if (checkAttributes(atts, "publicId", "uri")) {
294 entryArgs.add(atts.getValue("uri"));
298 atts.getValue("uri"));
301 if (checkAttributes(atts, "systemId", "uri")) {
530 startPrefixMapping(String prefix, String uri) argument
[all...]
H A DSAXCatalogReader.java484 public void startPrefixMapping (String prefix, String uri) argument
487 saxParser.startPrefixMapping (prefix, uri);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DXMLSerializer.java646 String uri;
735 uri = attr.getNamespaceURI();
737 if (uri != null && uri.equals(NamespaceContext.XMLNS_URI)) {
785 // get element uri/prefix
787 uri = elem.getNamespaceURI();
795 if ((uri !=null && prefix !=null ) && uri.length() == 0 && prefix.length()!=0) {
796 // uri is an empty string and element has some prefix
837 if (uri !
1107 printNamespaceAttr(String prefix, String uri) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DExtendedContentHandler.java53 * @param uri the namespace URI of the attribute name
62 String uri,
118 * startElement(uri,localName,qname,atts)
121 * @param uri the namespace URI of the element
127 public void startElement(String uri, String localName, String qName) argument
140 * startPrefixMapping(prefix,uri)
150 * @param uri the namespace URI being declared
154 public void namespaceAfterStartElement(String uri, String prefix) argument
161 * @param uri the namespace URI of the given prefix
163 * startPrefixMapping(prefix,uri) cal
61 addAttribute( String uri, String localName, String rawName, String type, String value, boolean XSLAttribute) argument
170 startPrefixMapping( String prefix, String uri, boolean shouldFlush) argument
196 getPrefix(String uri) argument
254 addXSLAttribute(String qName, final String value, final String uri) argument
266 addAttribute( String uri, String localName, String rawName, String type, String value) argument
[all...]
H A DToSAXHandler.java309 * @param uri the URI of the namespace of the element (optional)
315 public void startElement(String uri, String localName, String qName) argument
H A DToTextStream.java521 String uri,
604 String uri,
613 public void startPrefixMapping(String prefix, String uri) argument
622 final String uri)
520 addAttribute( String uri, String localName, String rawName, String type, String value, boolean XSLAttribute) argument
602 startPrefixMapping( String prefix, String uri, boolean shouldFlush) argument
620 namespaceAfterStartElement( final String prefix, final String uri) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DNamespaceSupport2.java191 * @param uri The Namespace URI to associate with the prefix.
197 public boolean declarePrefix (String prefix, String uri) argument
202 currentContext.declarePrefix(prefix, uri);
309 * @param uri The Namespace URI.
315 public String getPrefix (String uri) argument
317 return currentContext.getPrefix(uri);
335 * @param uri The Namespace URI.
341 public Enumeration getPrefixes (String uri) argument
353 return new PrefixForUriEnumerator(this,uri,getPrefixes());
393 private String uri; field in class:PrefixForUriEnumerator
399 PrefixForUriEnumerator(NamespaceSupport2 nsup,String uri, Enumeration allPrefixes) argument
537 declarePrefix(String prefix, String uri) argument
670 getPrefix(String uri) argument
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLDOMWriterImpl.java155 * @param uri {@inheritDoc}
158 public void setDefaultNamespace(String uri) throws XMLStreamException { argument
159 namespaceContext.declarePrefix(XMLConstants.DEFAULT_NS_PREFIX, uri);
177 * @param uri {@inheritDoc}
180 public void setPrefix(String prefix, String uri) throws XMLStreamException { argument
184 namespaceContext.declarePrefix(prefix, uri);
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLStreamWriter.java220 * @param namespaceURI the uri to bind the prefix to, may not be null
230 * @param namespaceURI the uri to bind the tag to, may not be null
242 * @param namespaceURI the uri to bind the tag to, may not be null
314 * @param namespaceURI the uri of the prefix for this attribute
330 * @param namespaceURI the uri of the prefix for this attribute
348 * @param namespaceURI the uri to bind the prefix to
357 * @param namespaceURI the uri to bind the default namespace to
464 * Gets the prefix the uri is bound to
468 public String getPrefix(String uri) argument
472 * Sets the prefix the uri i
480 setPrefix(String prefix, String uri) argument
493 setDefaultNamespace(String uri) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DXMLSignatureFactory.java375 * @param uri the reference URI (may be <code>null</code>)
378 * @throws IllegalArgumentException if <code>uri</code> is not RFC 2396
382 public abstract Reference newReference(String uri, DigestMethod dm); argument
387 * @param uri the reference URI (may be <code>null</code>)
397 * @throws IllegalArgumentException if <code>uri</code> is not RFC 2396
401 public abstract Reference newReference(String uri, DigestMethod dm, argument
414 * @param uri the reference URI (may be <code>null</code>)
426 * @throws IllegalArgumentException if <code>uri</code> is not RFC 2396
431 public abstract Reference newReference(String uri, DigestMethod dm, argument
450 * @param uri th
473 newReference(String uri, DigestMethod dm, List appliedTransforms, Data result, List transforms, String type, String id) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMReference.java98 private final String uri; field in class:DOMReference
114 * @param uri the URI (may be null)
126 public DOMReference(String uri, String type, DigestMethod dm, argument
128 this(uri, type, dm, null, null, transforms, id, null, provider);
131 public DOMReference(String uri, String type, DigestMethod dm, argument
134 this(uri, type, dm, appliedTransforms,
138 public DOMReference(String uri, String type, DigestMethod dm, argument
169 this.uri = uri;
170 if ((uri !
[all...]
H A DDOMXMLSignatureFactory.java64 public Reference newReference(String uri, DigestMethod dm) { argument
65 return newReference(uri, dm, null, null, null);
68 public Reference newReference(String uri, DigestMethod dm, List transforms, argument
70 return new DOMReference(uri, type, dm, transforms, id, getProvider());
73 public Reference newReference(String uri, DigestMethod dm, argument
86 (uri, type, dm, appliedTransforms, result, transforms, id, getProvider());
89 public Reference newReference(String uri, DigestMethod dm, List transforms, argument
95 (uri, type, dm, null, null, transforms, id, digestValue, getProvider());
/openjdk7/jdk/src/share/classes/java/nio/file/spi/
H A DFileSystemProvider.java194 * <p> The {@code uri} parameter is an absolute, hierarchical URI, with a
207 * @param uri
216 * If the pre-conditions for the {@code uri} parameter aren't met,
227 public abstract FileSystem newFileSystem(URI uri, Map<String,?> env) argument
256 * @param uri
262 * If the pre-conditions for the {@code uri} parameter aren't met
269 public abstract FileSystem getFileSystem(URI uri); argument
287 * @param uri
292 * preconditions on the uri parameter do not hold
300 public abstract Path getPath(URI uri); argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DNameSpaceSymbTable.java80 n.lastrendered=n.uri;
167 entry.lastrendered=entry.uri;
192 * @param uri the Uri of the definition
196 public boolean addMapping(String prefix, String uri,Attr n) { argument
198 if ((ob!=null) && uri.equals(ob.uri)) {
203 NameSpaceSymbEntry ne=new NameSpaceSymbEntry(uri,n,false,prefix);
210 if ((ob.lastrendered!=null)&& (ob.lastrendered.equals(uri))) {
222 * @param uri the Uri of the definition
226 public Node addMappingAndRender(String prefix, String uri,Att argument
311 String uri; field in class:NameSpaceSymbEntry
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DElementProxy.java230 * @return the base uri of the namespace of this element
434 * @param uri
437 public void setXPathNamespaceContext(String prefix, String uri) argument
454 if (!a.getNodeValue().equals(uri)) {
462 this._constructionElement.setAttributeNS(Constants.NamespaceSpecNS, ns, uri);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLParser.java206 public void startPrefixMapping(String prefix, String uri) throws SAXException { argument
212 public void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException { argument
228 public void endElement(String uri, String localName, String qName) throws SAXException { argument
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogParser.java263 public void startElement(String uri, argument
424 public void endElement(String uri, argument
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DDocumentHandler.java261 * @param uri the namespace URI, or the empty string
271 public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { argument
298 * @param uri the namespace URI, or the empty string
307 public void endElement(String uri, String localName, String qName) { argument
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DNamespaceSupport.java304 * @param uri The Namespace URI to associate with the prefix.
311 public boolean declarePrefix (String prefix, String uri) argument
316 currentContext.declarePrefix(prefix, uri);
427 * @param uri the namespace URI
434 public String getPrefix (String uri) argument
436 return currentContext.getPrefix(uri);
457 * @param uri The Namespace URI.
463 public Enumeration getPrefixes (String uri) argument
469 if (uri.equals(getURI(prefix))) {
608 * @param uri Th
611 declarePrefix(String prefix, String uri) argument
750 getPrefix(String uri) argument
[all...]
H A DXMLFilterImpl.java506 * @param uri The Namespace URI.
510 public void startPrefixMapping (String prefix, String uri) argument
514 contentHandler.startPrefixMapping(prefix, uri);
538 * @param uri The element's Namespace URI, or the empty string.
546 public void startElement (String uri, String localName, String qName, argument
551 contentHandler.startElement(uri, localName, qName, atts);
559 * @param uri The element's Namespace URI, or the empty string.
566 public void endElement (String uri, String localName, String qName) argument
570 contentHandler.endElement(uri, localName, qName);
H A DXMLReaderAdapter.java323 * @param uri The Namespace URI being mapped to.
326 public void startPrefixMapping (String prefix, String uri) argument
345 * @param uri The Namespace URI.
353 public void startElement (String uri, String localName, argument
367 * @param uri The Namespace URI.
374 public void endElement (String uri, String localName, argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DClasses.java43 protected String $uri;
77 $uri = $__uri;
136 $uri = $__uri;
200 $uri = $__uri;
231 $uri = $__uri;
H A DConfig.java45 protected String $uri;
73 $uri = $__uri;
148 $uri = $__uri;
195 $uri = $__uri;
230 $uri = $__uri;
H A DNGCCInterleaveFilter.java92 String uri, String localName, String qname,Attributes atts) throws SAXException {
97 lockedReceiver = findReceiverOfElement(uri,localName);
100 joinByEnterElement(null,uri,localName,qname,atts);
105 _receivers[lockedReceiver].enterElement(uri,localName,qname,atts);
107 public void leaveElement(String uri, String localName, String qname) throws SAXException { argument
111 joinByLeaveElement(null,uri,localName,qname);
113 _receivers[lockedReceiver].leaveElement(uri,localName,qname);
115 public void enterAttribute(String uri, String localName, String qname) throws SAXException { argument
119 lockedReceiver = findReceiverOfAttribute(uri,localName);
122 joinByEnterAttribute(null,uri,localNam
91 enterElement( String uri, String localName, String qname,Attributes atts) argument
129 leaveAttribute(String uri, String localName, String qname) argument
159 findReceiverOfElement( String uri, String local ) argument
164 findReceiverOfAttribute( String uri, String local ) argument
204 joinByEnterElement( NGCCEventReceiver source, String uri, String local, String qname, Attributes atts ) argument
226 joinByLeaveElement( NGCCEventReceiver source, String uri, String local, String qname ) argument
248 joinByEnterAttribute( NGCCEventReceiver source, String uri, String local, String qname ) argument
270 joinByLeaveAttribute( NGCCEventReceiver source, String uri, String local, String qname ) argument
322 sendEnterAttribute( int threadId, String uri, String local, String qname) argument
328 sendEnterElement( int threadId, String uri, String local, String qname, Attributes atts) argument
334 sendLeaveAttribute( int threadId, String uri, String local, String qname) argument
340 sendLeaveElement( int threadId, String uri, String local, String qname) argument
[all...]
H A DSchema.java41 protected String $uri;
66 $uri = $__uri;
120 $uri = $__uri;
174 $uri = $__uri;
215 $uri = $__uri;

Completed in 88 milliseconds

1234567891011>>