/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
D | regress-82306.js | 31 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/ |
D | URIUtils.java | 32 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/ |
D | RedirectLocations.java | 34 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()
|
D | DefaultRedirectHandler.java | 34 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()
|
D | RequestWrapper.java | 34 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/ |
D | xinclude.c | 53 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 …]
|
D | SAX2.c | 490 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 …]
|
D | entities.c | 117 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()
|
D | catalog.c | 1087 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/ |
D | HttpRequestBase.java | 35 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()
|
D | HttpTrace.java | 34 import java.net.URI; 64 public HttpTrace(final URI uri) { in HttpTrace() 74 setURI(URI.create(uri)); in HttpTrace()
|
D | HttpPut.java | 34 import java.net.URI; 61 public HttpPut(final URI uri) { in HttpPut() 71 setURI(URI.create(uri)); in HttpPut()
|
D | HttpGet.java | 34 import java.net.URI; 65 public HttpGet(final URI uri) { in HttpGet() 75 setURI(URI.create(uri)); in HttpGet()
|
D | HttpDelete.java | 34 import java.net.URI; 58 public HttpDelete(final URI uri) { in HttpDelete() 68 setURI(URI.create(uri)); in HttpDelete()
|
D | HttpHead.java | 34 import java.net.URI; 65 public HttpHead(final URI uri) { in HttpHead() 75 setURI(URI.create(uri)); in HttpHead()
|
D | HttpPost.java | 34 import java.net.URI; 69 public HttpPost(final URI uri) { in HttpPost() 79 setURI(URI.create(uri)); in HttpPost()
|
D | HttpOptions.java | 34 import java.net.URI; 70 public HttpOptions(final URI uri) { in HttpOptions() 80 setURI(URI.create(uri)); in HttpOptions()
|
D | HttpUriRequest.java | 34 import java.net.URI; 62 URI getURI(); in getURI()
|
/external/apache-http/src/org/apache/http/client/ |
D | RedirectHandler.java | 34 import java.net.URI; 76 URI getLocationURI(HttpResponse response, HttpContext context) in getLocationURI()
|
/external/libxml2/include/libxml/ |
D | xmlIO.h | 170 xmlParserInputBufferCreateFilename (const char *URI, 211 __xmlParserInputBufferCreateFilename(const char *URI, 226 xmlOutputBufferCreateFilename (const char *URI, 272 __xmlOutputBufferCreateFilename(const char *URI,
|
D | catalog.h | 97 const xmlChar *URI); 131 xmlCatalogResolveURI (const xmlChar *URI); 158 const xmlChar *URI);
|
D | uri.h | 55 xmlBuildURI (const xmlChar *URI, 58 xmlBuildRelativeURI (const xmlChar *URI,
|
/external/webkit/WebCore/xml/ |
D | XSLTExtensions.cpp | 44 …ontextPtr ctxt, const xmlChar *name, const xmlChar *URI, xmlXPathFunction function), (ctxt, name, …
|
/external/apache-http/src/org/apache/http/client/protocol/ |
D | RequestAddCookies.java | 35 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/ |
D | ProxySelectorRoutePlanner.java | 39 import java.net.URI; 184 URI targetURI = null; in determineProxy() 186 targetURI = new URI(target.toURI()); in determineProxy()
|