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

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DURISyntax.java48 private URI uri; field in class:URISyntax
53 * @param uri URI.
56 * (unchecked exception) Thrown if <CODE>uri</CODE> is null.
58 protected URISyntax(URI uri) { argument
59 this.uri = verify (uri);
62 private static URI verify(URI uri) { argument
63 if (uri == null) {
64 throw new NullPointerException(" uri is null");
66 return uri;
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DURIParameter.java38 private java.net.URI uri; field in class:URIParameter
44 * @param uri the URI pointing to the data.
48 public URIParameter(java.net.URI uri) { argument
49 if (uri == null) {
52 this.uri = uri;
58 * @return uri the URI.
61 return uri;
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DUri.java108 protected String uri; field in class:Uri
120 public Uri(String uri) throws MalformedURLException { argument
121 init(uri);
136 protected void init(String uri) throws MalformedURLException { argument
137 this.uri = uri;
138 parse(uri);
188 return uri;
194 private void parse(String uri) throws MalformedURLException { argument
197 i = uri
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DCookiePolicy.java43 public boolean shouldAccept(URI uri, HttpCookie cookie) {
52 public boolean shouldAccept(URI uri, HttpCookie cookie) {
61 public boolean shouldAccept(URI uri, HttpCookie cookie) {
62 return HttpCookie.domainMatches(cookie.getDomain(), uri.getHost());
70 * @param uri the URI to consult accept policy with
75 public boolean shouldAccept(URI uri, HttpCookie cookie); argument
H A DCookieStore.java57 * @param uri the uri this cookie associated with.
67 public void add(URI uri, HttpCookie cookie); argument
78 * @throws NullPointerException if <tt>uri</tt> is <tt>null</tt>
83 public List<HttpCookie> get(URI uri); argument
108 * @param uri the uri this cookie associated with.
118 public boolean remove(URI uri, HttpCookie cookie); argument
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DAbstractCallback.java42 URI uri; field in class:AbstractCallback.Request
46 uri = u;
61 URI uri = msg.getRequestURI();
62 Request req = (Request) requests.get (uri);
64 req = new Request (uri);
65 requests.put (uri, req);
/openjdk7/jdk/test/sun/net/www/httptest/
H A DAbstractCallback.java42 URI uri; field in class:AbstractCallback.Request
46 uri = u;
61 URI uri = msg.getRequestURI();
62 Request req = (Request) requests.get (uri);
64 req = new Request (uri);
65 requests.put (uri, req);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DQName.java108 public String uri; field in class:QName
120 public QName(String prefix, String localpart, String rawname, String uri) { argument
121 setValues(prefix, localpart, rawname, uri);
142 uri = qname.uri;
151 * @param uri The URI binding. (e.g. "http://foo.com/mybinding")
154 String uri) {
158 this.uri = uri;
166 uri
153 setValues(String prefix, String localpart, String rawname, String uri) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DVmIdentifier.java129 private URI uri; field in class:VmIdentifier
155 * make the uri absolute, if possible. A relative URI doesn't
176 // file:// uri, which is a special case where the lvmid is not required.
182 throw new URISyntaxException(uri.toString(), "Local vmid required");
210 uri = u;
219 * @param uri a well formed, absolute URI indicating the
224 public VmIdentifier(URI uri) throws URISyntaxException { argument
225 this.uri = uri;
279 return uri
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DNamespaceDecl.java34 final String uri; field in class:NamespaceDecl
61 NamespaceDecl(char uniqueId, String uri, String prefix, boolean requirePrefix ) { argument
63 this.uri = uri;
/openjdk7/jdk/test/java/net/URL/
H A DB5086147.java37 URI uri = file.toURI();
39 if (!(uri.toURL().toURI().equals(uri))) {
40 throw new RuntimeException("Test failed : (uri.toURL().toURI().equals(uri)) isn't hold");
/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DOctetStreamData.java40 private String uri; field in class:OctetStreamData
61 * @param uri the URI String identifying the data object (may be
68 public OctetStreamData(InputStream octetStream, String uri, argument
74 this.uri = uri;
94 return uri;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DMutableAttrListImpl.java68 * @param uri The Namespace URI, or the empty string if
78 public void addAttribute(String uri, String localName, String qName, argument
82 if (null == uri)
83 uri = "";
85 // getIndex(qName) seems to be more reliable than getIndex(uri, localName),
88 // int index = this.getIndex(uri, localName);
90 // System.out.println("MutableAttrListImpl#addAttribute: "+uri+":"+localName+", "+index+", "+qName+", "+this);
93 this.setAttribute(index, uri, localName, qName, type, value);
95 super.addAttribute(uri, localName, qName, type, value);
110 String uri
[all...]
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPathFactory.java32 *<p>See {@link #newInstance(String uri)} for lookup mechanism.</p>
69 * <p>Protected constructor as {@link #newInstance()} or {@link #newInstance(String uri)}
70 * or {@link #newInstance(String uri, String factoryClassName, ClassLoader classLoader)}
114 * If the system property {@link #DEFAULT_PROPERTY_NAME} + ":uri" is present,
115 * where uri is the parameter to this method, then its value is read as a class name.
148 * @param uri Identifies the underlying object model.
156 * @throws NullPointerException If <code>uri</code> is <code>null</code>.
157 * @throws IllegalArgumentException If <code>uri</code> is <code>null</code>
158 * or <code>uri.length() == 0</code>.
160 public static final XPathFactory newInstance(final String uri) argument
240 newInstance(String uri, String factoryClassName, ClassLoader classLoader) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DDTDExtensionBindingChecker.java56 private boolean needsToBePruned( String uri ) {
57 if( uri.equals(schemaLanguage) )
59 if( uri.equals(Const.JAXB_NSURI) )
61 if( uri.equals(Const.XJC_EXTENSION_URI) )
67 return enabledExtensions.contains(uri);
72 public void startElement(String uri, String localName, String qName, Attributes atts) argument
76 if(!uri.equals("")) {
78 checkAndEnable(uri);
80 verifyTagName(uri, localName, qName);
82 if(needsToBePruned(uri))
[all...]
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DJarFileSystemProvider.java64 protected Path uriToPath(URI uri) { argument
65 String scheme = uri.getScheme();
70 String uristr = uri.toString();
73 uri = new URI(uristr);
74 return Paths.get(new URI("file", uri.getHost(), uri.getPath(), null))
82 public Path getPath(URI uri) { argument
83 FileSystem fs = getFileSystem(uri);
84 String path = uri.getFragment();
86 String uristr = uri
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/resolver/
H A DResourceResolverException.java45 * @param uri
48 public ResourceResolverException(String _msgID, Attr uri, String BaseURI) { argument
52 this._uri = uri;
61 * @param uri
64 public ResourceResolverException(String _msgID, Object exArgs[], Attr uri, argument
69 this._uri = uri;
78 * @param uri
82 Attr uri, String BaseURI) {
86 this._uri = uri;
96 * @param uri
81 ResourceResolverException(String _msgID, Exception _originalException, Attr uri, String BaseURI) argument
99 ResourceResolverException(String _msgID, Object exArgs[], Exception _originalException, Attr uri, String BaseURI) argument
115 setURI(Attr uri) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DMixedContentModel.java184 String uri = fChildren[inIndex].uri;
185 if (uri != null && uri != children[outIndex].uri) {
190 if (children[outIndex].uri != null) {
195 if (fChildren[inIndex].uri == children[outIndex].uri) {
227 String uri = fChildren[inIndex].uri;
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPaths.java115 * @param uri
121 * if preconditions on the {@code uri} parameter do not hold. The
131 public static Path get(URI uri) { argument
132 String scheme = uri.getScheme();
138 return FileSystems.getDefault().provider().getPath(uri);
143 return provider.getPath(uri);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DNGCCEventReceiver.java37 void enterElement(String uri, String localName, String qname,Attributes atts) throws SAXException; argument
38 void leaveElement(String uri, String localName, String qname) throws SAXException; argument
40 void enterAttribute(String uri, String localName, String qname) throws SAXException; argument
41 void leaveAttribute(String uri, String localName, String qname) throws SAXException; argument
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...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DXmlSerializer.java69 * @param uri
75 void beginStartTag(String uri,String localName,String prefix); argument
84 * @param uri
90 void writeAttribute(String uri,String localName,String prefix,StringBuilder value); argument
95 * @param uri
100 void writeXmlns(String prefix,String uri); argument
105 * @param uri
111 void endStartTag(String uri,String localName,String prefix); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DPrefixFactory.java41 public String getPrefix(String uri); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCEventReceiver.java37 void enterElement(String uri, String localName, String qname,Attributes atts) throws SAXException; argument
38 void leaveElement(String uri, String localName, String qname) throws SAXException; argument
40 void enterAttribute(String uri, String localName, String qname) throws SAXException; argument
41 void leaveAttribute(String uri, String localName, String qname) throws SAXException; argument
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...]

Completed in 98 milliseconds

1234567891011>>