Home
last modified time | relevance | path

Searched refs:URI (Results 1 – 25 of 68) sorted by relevance

123

/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
Dregress-82306.js31 var URI = ''; variable
45 URI += '<?xml version="1.0"?>';
46 URI += '<zcti application="xxxx_demo">';
47 URI += '<pstn_data>';
48 URI += '<ani>650-930-xxxx</ani>';
49 URI += '<dnis>877-485-xxxx</dnis>';
50 URI += '</pstn_data>';
51 URI += '<keyvalue key="name" value="xxx"/>';
52 URI += '<keyvalue key="phone" value="6509309000"/>';
53 URI += '</zcti>';
[all …]
/external/apache-http/src/org/apache/http/client/utils/
DURIUtils.java32 import java.net.URI;
73 public static URI createURI( in createURI()
107 return new URI(buffer.toString()); in createURI()
126 public static URI rewriteURI( in rewriteURI()
127 final URI uri, in rewriteURI()
157 public static URI rewriteURI( in rewriteURI()
158 final URI uri, in rewriteURI()
171 public static URI resolve(final URI baseURI, final String reference) { in resolve()
172 return URIUtils.resolve(baseURI, URI.create(reference)); in resolve()
183 public static URI resolve(final URI baseURI, URI reference){ in resolve()
[all …]
/external/apache-http/src/org/apache/http/impl/client/
DRedirectLocations.java34 import java.net.URI;
43 private final Set<URI> uris;
47 this.uris = new HashSet<URI>(); in RedirectLocations()
53 public boolean contains(final URI uri) { in contains()
60 public void add(final URI uri) { in add()
67 public boolean remove(final URI uri) { in remove()
DDefaultRedirectHandler.java34 import java.net.URI;
93 public URI getLocationURI( in getLocationURI()
112 URI uri; in getLocationURI()
114 uri = new URI(location); in getLocationURI()
139 URI requestURI = new URI(request.getRequestLine().getUri()); in getLocationURI()
140 URI absoluteRequestURI = URIUtils.rewriteURI(requestURI, target, true); in getLocationURI()
157 URI redirectURI; in getLocationURI()
DRequestWrapper.java34 import java.net.URI;
64 private URI uri;
84 this.uri = new URI(requestLine.getUri()); in RequestWrapper()
125 public URI getURI() { in getURI()
129 public void setURI(final URI uri) { in setURI()
/external/libxml2/
Dxinclude.c53 xmlChar *URI; /* the fully resolved resource URL */ member
200 xmlGenericError(xmlGenericErrorContext, "Freeing doc %s\n", ref->URI); in xmlXIncludeFreeRef()
204 if (ref->URI != NULL) in xmlXIncludeFreeRef()
205 xmlFree(ref->URI); in xmlXIncludeFreeRef()
223 xmlXIncludeNewRef(xmlXIncludeCtxtPtr ctxt, const xmlChar *URI, in xmlXIncludeNewRef() argument
228 xmlGenericError(xmlGenericErrorContext, "New ref %s\n", URI); in xmlXIncludeNewRef()
236 if (URI == NULL) in xmlXIncludeNewRef()
237 ret->URI = NULL; in xmlXIncludeNewRef()
239 ret->URI = xmlStrdup(URI); in xmlXIncludeNewRef()
498 xmlChar *URI; in xmlXIncludeAddNode() local
[all …]
DSAX2.c490 xmlChar *URI; in xmlSAX2ResolveEntity() local
499 URI = xmlBuildURI(systemId, (const xmlChar *) base); in xmlSAX2ResolveEntity()
506 ret = xmlLoadExternalEntity((const char *) URI, in xmlSAX2ResolveEntity()
508 if (URI != NULL) in xmlSAX2ResolveEntity()
509 xmlFree(URI); in xmlSAX2ResolveEntity()
572 val = xmlParseCtxtExternalEntity(ctxt, ret->URI, in xmlSAX2GetEntity()
645 if ((ent != NULL) && (ent->URI == NULL) && (systemId != NULL)) { in xmlSAX2EntityDecl()
646 xmlChar *URI; in xmlSAX2EntityDecl() local
654 URI = xmlBuildURI(systemId, (const xmlChar *) base); in xmlSAX2EntityDecl()
655 ent->URI = URI; in xmlSAX2EntityDecl()
[all …]
Dentities.c117 if ((entity->URI != NULL) && (!xmlDictOwns(dict, entity->URI))) in xmlFreeEntity()
118 xmlFree((char *) entity->URI); in xmlFreeEntity()
131 if (entity->URI != NULL) in xmlFreeEntity()
132 xmlFree((char *) entity->URI); in xmlFreeEntity()
215 ret->URI = NULL; /* to be computed by the layer knowing in xmlAddEntity()
793 if (ent->URI != NULL) in xmlCopyEntity()
794 cur->URI = xmlStrdup(ent->URI); in xmlCopyEntity()
Dcatalog.c1087 xmlCatalogListXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI);
1859 xmlCatalogXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI) { in xmlCatalogXMLResolveURI() argument
1870 if (URI == NULL) in xmlCatalogXMLResolveURI()
1888 if (xmlStrEqual(URI, cur->name)) { in xmlCatalogXMLResolveURI()
1898 (!xmlStrncmp(URI, cur->name, len))) { in xmlCatalogXMLResolveURI()
1904 if (!xmlStrncmp(URI, cur->name, xmlStrlen(cur->name))) in xmlCatalogXMLResolveURI()
1921 ret = xmlStrcat(ret, &URI[lenrewrite]); in xmlCatalogXMLResolveURI()
1936 (!xmlStrncmp(URI, cur->name, xmlStrlen(cur->name)))) { in xmlCatalogXMLResolveURI()
1955 cur->children, URI); in xmlCatalogXMLResolveURI()
1975 ret = xmlCatalogListXMLResolveURI(cur->children, URI); in xmlCatalogXMLResolveURI()
[all …]
/external/apache-http/src/org/apache/http/client/methods/
DHttpRequestBase.java35 import java.net.URI;
66 private URI uri;
81 public URI getURI() { in getURI()
88 URI uri = getURI(); in getRequestLine()
99 public void setURI(final URI uri) { in setURI()
DHttpTrace.java34 import java.net.URI;
64 public HttpTrace(final URI uri) { in HttpTrace()
74 setURI(URI.create(uri)); in HttpTrace()
DHttpPut.java34 import java.net.URI;
61 public HttpPut(final URI uri) { in HttpPut()
71 setURI(URI.create(uri)); in HttpPut()
DHttpGet.java34 import java.net.URI;
65 public HttpGet(final URI uri) { in HttpGet()
75 setURI(URI.create(uri)); in HttpGet()
DHttpDelete.java34 import java.net.URI;
58 public HttpDelete(final URI uri) { in HttpDelete()
68 setURI(URI.create(uri)); in HttpDelete()
DHttpHead.java34 import java.net.URI;
65 public HttpHead(final URI uri) { in HttpHead()
75 setURI(URI.create(uri)); in HttpHead()
DHttpPost.java34 import java.net.URI;
69 public HttpPost(final URI uri) { in HttpPost()
79 setURI(URI.create(uri)); in HttpPost()
DHttpOptions.java34 import java.net.URI;
70 public HttpOptions(final URI uri) { in HttpOptions()
80 setURI(URI.create(uri)); in HttpOptions()
DHttpUriRequest.java34 import java.net.URI;
62 URI getURI(); in getURI()
/external/apache-http/src/org/apache/http/client/
DRedirectHandler.java34 import java.net.URI;
76 URI getLocationURI(HttpResponse response, HttpContext context) in getLocationURI()
/external/libxml2/include/libxml/
DxmlIO.h170 xmlParserInputBufferCreateFilename (const char *URI,
211 __xmlParserInputBufferCreateFilename(const char *URI,
226 xmlOutputBufferCreateFilename (const char *URI,
272 __xmlOutputBufferCreateFilename(const char *URI,
Dcatalog.h97 const xmlChar *URI);
131 xmlCatalogResolveURI (const xmlChar *URI);
158 const xmlChar *URI);
Duri.h55 xmlBuildURI (const xmlChar *URI,
58 xmlBuildRelativeURI (const xmlChar *URI,
/external/webkit/WebCore/xml/
DXSLTExtensions.cpp44 …ontextPtr ctxt, const xmlChar *name, const xmlChar *URI, xmlXPathFunction function), (ctxt, name,
/external/apache-http/src/org/apache/http/client/protocol/
DRequestAddCookies.java35 import java.net.URI;
122 URI requestURI; in process()
127 requestURI = new URI(request.getRequestLine().getUri()); in process()
/external/apache-http/src/org/apache/http/impl/conn/
DProxySelectorRoutePlanner.java39 import java.net.URI;
184 URI targetURI = null; in determineProxy()
186 targetURI = new URI(target.toURI()); in determineProxy()

123