HomeSort by relevance Sort by last modified time
    Searched refs:URI (Results 76 - 100 of 2895) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/utils/
SystemIDResolver.java 27 import org.apache.xml.utils.URI.MalformedURIException;
42 * Get an absolute URI from a given relative URI (local path).
44 * <p>The relative URI is a local filesystem path. The path can be
49 * generate a good absolute URI.</p>
51 * @param localPath The relative URI to resolve
53 * @return Resolved absolute URI
102 * Return true if the systemId denotes an absolute URI .
105 * @return true if the systemId is an an absolute URI
111 * character cannot be used as the first segment of a relative URI pat
281 URI uri = null; local
    [all...]
URI.java 19 * $Id: URI.java 468655 2006-10-28 07:12:06Z minchau $
30 * A class to represent a Uniform Resource Identifier (URI). This class
33 * string and fragment) that may constitute a URI.
35 * Parsing of a URI specification is done according to the URI
37 * <http://www.ietf.org/rfc/rfc2396.txt?number=2396>. Every URI consists
39 * part. For URIs that follow the "generic URI" syntax, the scheme-
45 * "user:password" appears in a URI, the entire user/password string
48 * For URIs that do not follow the "generic URI" syntax (e.g. mailto),
50 * of the URI
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
CompilingClassLoader.java 20 import java.net.URI;
92 private static final URI EMPTY_URI;
97 EMPTY_URI = new URI("");
200 private static URI makeUri(String className) {
202 return new URI(className.replaceAll("\\.", "/") + Kind.SOURCE.extension);
  /libcore/luni/src/main/java/java/net/
URI.java 33 * <h3>Parts of a URI</h3>
34 * A URI is composed of many parts. This class can both parse URI strings into
35 * parts and compose URI strings from parts. For example, consider the parts of
36 * this URI:
59 * URL}, you can use {@link #toURL} to convert an absolute URI to a URL.
62 * have the absolute URI that a relative URI is relative to, you can use {@link
63 * #resolve} to compute the referenced absolute URI. Symmetrically, you can use
64 * {@link #relativize} to compute the relative URI from one URI to another
214 StringBuilder uri = new StringBuilder(); local
247 StringBuilder uri = new StringBuilder(); local
312 StringBuilder uri = new StringBuilder(); local
802 URI uri = (URI) o; local
    [all...]
ProxySelectorImpl.java 25 @Override public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {
26 if (uri == null || sa == null || ioe == null) {
31 @Override public List<Proxy> select(URI uri) {
32 return Collections.singletonList(selectOneProxy(uri));
35 private Proxy selectOneProxy(URI uri) {
36 if (uri == null) {
37 throw new IllegalArgumentException("uri == null")
    [all...]
  /external/libxslt/libxslt/
namespaces.c 45 #include <libxml/uri.h>
108 * "If a namespace URI is declared to be an alias for multiple
179 * Same target namespace URI for multiple different aliases:
652 const xmlChar *URI = NULL; /* the replacement URI */
660 URI = (const xmlChar *)
662 if (URI != NULL)
669 if (URI == UNDEFINED_DEFAULT_NS) {
680 URI = dflt->href;
684 } else if (URI == NULL
    [all...]
namespaces.h 48 const xmlChar *URI,
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 72 public static final String URI = ParameterNames.URI;
117 || name.equalsIgnoreCase(ParameterNames.URI)
247 * Sets the URI of the WWWAuthenicateHeader to the <var>uri</var> parameter
250 * @param uri -
251 * the new URI of this AuthenicationHeader.
257 public void setURI(javax.sip.address.URI uri) {
258 if (uri != null)
    [all...]
Challenge.java 57 private static String URI = ParameterNames.URI;
113 * get the URI field
117 return (String) authParams.getValue(URI);
RequestLine.java 31 import javax.sip.address.URI;
48 /** uri field. Note that this can be a SIP URI or a generic URI
49 * like tel URI.
51 protected GenericURI uri; field in class:RequestLine
81 if (uri != null) {
82 uri.encode(buffer);
94 return uri;
97 /** Constructor given the request URI and the method
    [all...]
  /frameworks/base/core/java/android/net/http/
HttpResponseCache.java 27 import java.net.URI;
187 @Override public CacheResponse get(URI uri, String requestMethod,
189 return delegate.get(uri, requestMethod, requestHeaders);
192 @Override public CacheRequest put(URI uri, URLConnection urlConnection) throws IOException {
193 return delegate.put(uri, urlConnection);
  /frameworks/base/core/tests/coretests/src/android/net/http/
HttpResponseCacheTest.java 23 import java.net.URI;
71 @Override public CacheResponse get(URI uri, String requestMethod,
75 @Override public CacheRequest put(URI uri, URLConnection connection) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 33 import java.net.URI;
410 public java.util.List<Proxy> select(URI uri) {
412 if (("localhost".equals(uri.getHost()))
413 && (server_port == uri.getPort())) {
423 public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/
HtmlParser.java 61 * {@code URI} is for attributes taking a URI such as "href" and "src".
71 URI,
226 * {@link #getAttributeType()} returning {@code .ATTR_TYPE#URI}.
  /sdk/common/src/com/android/io/
FolderWrapper.java 21 import java.net.URI;
65 * Creates a new File instance by converting the given <code>file:</code> URI into an
67 * @param uri An absolute, hierarchical URI with a scheme equal to "file", a non-empty path
70 * @see File#File(URI)
72 public FolderWrapper(URI uri) {
73 super(uri);
  /external/libxml2/
xinclude.c 19 #include <libxml/uri.h>
53 xmlChar *URI; /* the fully resolved resource URL */
54 xmlChar *fragment; /* the fragment in the URI */
200 xmlGenericError(xmlGenericErrorContext, "Freeing doc %s\n", ref->URI);
204 if (ref->URI != NULL)
205 xmlFree(ref->URI);
216 * @URI: the resource URI
223 xmlXIncludeNewRef(xmlXIncludeCtxtPtr ctxt, const xmlChar *URI,
228 xmlGenericError(xmlGenericErrorContext, "New ref %s\n", URI);
489 xmlURIPtr uri; local
1394 xmlURIPtr uri; local
1788 xmlURIPtr uri; local
    [all...]
  /external/libvpx/examples/includes/geshi/geshi/
rails.php 101 'ThreadsWait', 'Time', 'TrueClass', 'TypeError', 'URI',
102 'URI::BadURIError', 'URI::Error', 'URI::Escape', 'URI::FTP',
103 'URI::Generic', 'URI::HTTP', 'URI::HTTPS',
104 'URI::InvalidComponentError', 'URI::InvalidURIError'
    [all...]
  /development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/
NativeAudio.java 43 static String URI;
64 // initialize URI spinner
73 URI = parent.getItemAtPosition(pos).toString();
77 URI = null;
131 if (!created && URI != null) {
132 created = createUriAudioPlayer(URI);
295 public static native boolean createUriAudioPlayer(String uri);
  /external/apache-http/src/org/apache/http/client/protocol/
RequestAddCookies.java 35 import java.net.URI;
122 URI requestURI;
127 requestURI = new URI(request.getRequestLine().getUri());
129 throw new ProtocolException("Invalid request URI: " +
  /external/apache-http/src/org/apache/http/impl/conn/
ProxySelectorRoutePlanner.java 39 import java.net.URI;
196 URI targetURI = null;
198 targetURI = new URI(target.toURI());
201 ("Cannot convert host to URI: " + target, usx);
  /external/libxml2/include/libxml/
catalog.h 97 const xmlChar *URI);
131 xmlCatalogResolveURI (const xmlChar *URI);
158 const xmlChar *URI);
HTMLtree.h 63 htmlNewDoc (const xmlChar *URI,
66 htmlNewDocNoDtD (const xmlChar *URI,
xmlIO.h 27 * @filename: the filename or URI
37 * @filename: the filename or URI
73 * @filename: the filename or URI
83 * @filename: the filename or URI
170 xmlParserInputBufferCreateFilename (const char *URI,
211 __xmlParserInputBufferCreateFilename(const char *URI,
226 xmlOutputBufferCreateFilename (const char *URI,
272 __xmlOutputBufferCreateFilename(const char *URI,
298 * Check xmlCanonicPath in uri.h for a better alternative.
  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressImpl.java 37 * Address structure. Imbeds a URI and adds a display name.
106 SipUri uri = (SipUri) address; local
107 return uri.getHostPort();
110 /** Get the port from the imbedded URI. This assumes that a SIP URL
119 SipUri uri = (SipUri) address; local
120 return uri.getHostPort().getPort();
131 SipUri uri = (SipUri) address; local
132 return uri.getUserAtHostPort();
144 SipUri uri = (SipUri) address; local
145 return uri.getHostPort().getHost().getHostname()
155 SipUri uri = (SipUri) address; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
URI.java 19 * $Id: URI.java 468654 2006-10-28 07:09:23Z minchau $
28 * A class to represent a Uniform Resource Identifier (URI). This class
31 * string and fragment) that may constitute a URI.
33 * Parsing of a URI specification is done according to the URI
35 * <http://www.ietf.org/rfc/rfc2396.txt?number=2396>. Every URI consists
37 * part. For URIs that follow the "generic URI" syntax, the scheme-
43 * "user:password" appears in a URI, the entire user/password string
46 * For URIs that do not follow the "generic URI" syntax (e.g. mailto),
48 * of the URI
    [all...]

Completed in 1896 milliseconds

1 2 34 5 6 7 8 91011>>