Searched defs:URI (Results 1 - 25 of 41) sorted by relevance

12

/external/nist-sip/java/javax/sip/address/
H A DURI.java5 public interface URI extends Cloneable, Serializable { interface in inherits:Cloneable,Serializable
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfURIActionDictionary_autogen.cpp23 SkString SkPdfURIActionDictionary::URI(SkPdfNativeDoc* doc) { function in class:SkPdfURIActionDictionary
24 SkPdfNativeObject* ret = get("URI", "");
32 return get("URI", "") != NULL;
H A DSkPdfCatalogDictionary_autogen.cpp207 SkPdfDictionary* SkPdfCatalogDictionary::URI(SkPdfNativeDoc* doc) { function in class:SkPdfCatalogDictionary
208 SkPdfNativeObject* ret = get("URI", "");
216 return get("URI", "") != NULL;
/external/libxml2/doc/examples/
H A Dio1.c28 * @URI: an URI to test
35 sqlMatch(const char * URI) { argument
36 if ((URI != NULL) && (!strncmp(URI, "sql:", 4)))
43 * @URI: an URI to test
51 sqlOpen(const char * URI) { argument
52 if ((URI == NULL) || (strncmp(URI, "sq
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContentUrisTest.java15 Uri URI; field in class:ContentUrisTest
19 URI = Uri.parse("content://foo.com");
23 assertThat(ContentUris.withAppendedId(URI, 1),
33 assertThat(ContentUris.parseId(Uri.withAppendedPath(URI, "1")), is(1L));
34 assertThat(ContentUris.parseId(URI), is(-1L));
39 ContentUris.parseId(Uri.withAppendedPath(URI, "bar"));
H A DUriMatcherTest.java24 Uri URI; field in class:UriMatcherTest
27 URI = Uri.parse("content://" + AUTH);
67 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(1));
70 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar/1")), is(2));
73 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(1));
74 assertThat(matcher.match(Uri.withAppendedPath(URI, "cat")), is(3));
77 assertThat(matcher.match(Uri.withAppendedPath(URI, "transport/land/45/type")), is(4));
82 assertThat(matcher.match(Uri.withAppendedPath(URI, "cat")), is(NO_MATCH));
83 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(NO_MATCH));
84 assertThat(matcher.match(Uri.withAppendedPath(URI, "ba
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCredentials.java49 private static String URI = ParameterNames.URI; field in class:Credentials
110 if (nameValue.getName().compareToIgnoreCase(URI) == 0)
H A DChallenge.java57 private static String URI = ParameterNames.URI; field in class:Challenge
113 * get the URI field
117 return (String) authParams.getValue(URI);
H A DAuthenticationHeader.java72 public static final String URI = ParameterNames.URI; field in class:AuthenticationHeader
117 || name.equalsIgnoreCase(ParameterNames.URI)
247 * Sets the URI of the WWWAuthenicateHeader to the <var>uri</var> parameter
251 * the new URI of this AuthenicationHeader.
257 public void setURI(javax.sip.address.URI uri) {
259 NameValue nv = new NameValue(ParameterNames.URI, uri);
263 throw new NullPointerException("Null URI");
268 * Returns the URI value of this WWWAuthenicateHeader, for example
271 * @return the URI representin
[all...]
H A DParameterNames.java46 public static final String URI = "uri"; field in interface:ParameterNames
/external/jsilver/src/com/google/streamhtmlparser/
H A DHtmlParser.java61 * {@code URI} is for attributes taking a URI such as "href" and "src".
71 URI, enum constant in enum:HtmlParser.ATTR_TYPE
226 * {@link #getAttributeType()} returning {@code .ATTR_TYPE#URI}.
/external/libxml2/include/libxml/
H A Dentities.h54 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC Entity */
57 const xmlChar *URI; /* the full URI as computed */ member in struct:_xmlEntity
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
H A DHttpServerTest.java21 public static final String URI = "http://www.myserver.org/pub/WWW/someFile.html"; field in class:HttpServerTest
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
H A DPropertyOptions.java27 public static final int URI = 0x00000002; field in class:PropertyOptions
74 * @return Return whether the property value is a URI. It is serialized to RDF using the
79 return getOption(URI);
89 setOption(URI, value);
372 URI |
393 case URI : return "URI";
411 * and URI cannot be a struct.
423 else if ((options & URI) > 0 && (options & (ARRAY | STRUCT)) > 0)
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DURI.java19 * $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
65 final class URI class
152 public URI(){} method in class:URI
160 public URI(URI p_other) method in class:URI
180 public URI(String p_uriSpec) throws MalformedURIException method in class:URI
197 public URI(URI p_base, String p_uriSpec) throws MalformedURIException method in class:URI
214 public URI(String p_scheme, String p_schemeSpecificPart) method in class:URI
256 public URI(String p_scheme, String p_host, String p_path, String p_queryString, String p_fragment) method in class:URI
287 public URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String p_fragment) method in class:URI
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DURI.java19 * $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
60 public class URI implements Serializable class in inherits:Serializable
149 public URI(){} method in class:URI
157 public URI(URI p_other) method in class:URI
177 public URI(String p_uriSpec) throws MalformedURIException method in class:URI
194 public URI(URI p_base, String p_uriSpec) throws MalformedURIException method in class:URI
211 public URI(String p_scheme, String p_schemeSpecificPart) method in class:URI
253 public URI(String p_scheme, String p_host, String p_path, String p_queryString, String p_fragment) method in class:URI
284 public URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String p_fragment) method in class:URI
[all...]
/external/libxml2/
H A DparserInternals.c1426 return(xmlLoadExternalEntity((char *) entity->URI,
1450 if (entity->URI != NULL)
1451 input->filename = (char *) xmlStrdup((xmlChar *) entity->URI);
1505 xmlChar *URI = NULL; local
1533 URI = xmlStrdup((xmlChar *) filename);
1535 URI = xmlStrdup((xmlChar *) inputStream->filename);
1536 directory = xmlParserGetDirectory((const char *) URI);
1538 inputStream->filename = (char *) xmlCanonicPath((const xmlChar *) URI);
1539 if (URI != NULL) xmlFree((char *) URI);
[all...]
H A DtestSAX.c887 const xmlChar *URI,
904 if (URI == NULL)
907 fprintf(stdout, ", '%s'", (char *) URI);
944 const xmlChar *URI)
954 if (URI == NULL)
957 fprintf(stdout, ", '%s')\n", (char *) URI);
884 startElementNsDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar **namespaces, int nb_attributes, int nb_defaulted, const xmlChar **attributes) argument
941 endElementNsDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI) argument
H A Dtestrecurse.c178 * @URI: an URI to test
185 hugeMatch(const char * URI) { argument
186 if ((URI != NULL) && (!strncmp(URI, "huge:", 4)))
193 * @URI: an URI to test
201 hugeOpen(const char * URI) { argument
202 if ((URI == NULL) || (strncmp(URI, "hug
[all...]
H A Duri.c2 * uri.c: set of generic URI related routines
24 * The definition of the URI regexp in the above RFC has no size limit
26 * data URI scheme as defined in RFC 2397. Even for data URI the usual
198 * @uri: pointer to an URI structure
201 * Parse an URI scheme
230 * @uri: pointer to an URI structure
233 * Parse the query part of an URI
271 * @uri: pointer to an URI structure
274 * Parse the query part of an URI
1881 xmlBuildURI(const xmlChar *URI, const xmlChar *base) argument
2160 xmlBuildRelativeURI(const xmlChar * URI, const xmlChar * base) argument
[all...]
H A DSAX2.c522 xmlChar *URI; local
531 URI = xmlBuildURI(systemId, (const xmlChar *) base);
538 ret = xmlLoadExternalEntity((const char *) URI,
540 if (URI != NULL)
541 xmlFree(URI);
605 val = xmlParseCtxtExternalEntity(ctxt, ret->URI,
682 if ((ent != NULL) && (ent->URI == NULL) && (systemId != NULL)) {
683 xmlChar *URI; local
691 URI = xmlBuildURI(systemId, (const xmlChar *) base);
692 ent->URI
702 xmlChar *URI; local
919 xmlChar *URI; local
939 xmlChar *URI; local
2197 xmlSAX2StartElementNs(void *ctx, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar **namespaces, int nb_attributes, int nb_defaulted, const xmlChar **attributes) argument
[all...]
H A Dtestlimits.c97 * @URI: an URI to test
104 hugeMatch(const char * URI) { argument
105 if ((URI != NULL) && (!strncmp(URI, "huge:", 5)))
112 * @URI: an URI to test
120 hugeOpen(const char * URI) { argument
121 if ((URI == NULL) || (strncmp(URI, "hug
267 crazyMatch(const char * URI) argument
283 crazyOpen(const char * URI) argument
[all...]
H A Dxinclude.c55 xmlChar *URI; /* the fully resolved resource URL */ member in struct:_xmlXIncludeRef
56 xmlChar *fragment; /* the fragment in the URI */
202 xmlGenericError(xmlGenericErrorContext, "Freeing doc %s\n", ref->URI);
206 if (ref->URI != NULL)
207 xmlFree(ref->URI);
218 * @URI: the resource URI
225 xmlXIncludeNewRef(xmlXIncludeCtxtPtr ctxt, const xmlChar *URI, argument
230 xmlGenericError(xmlGenericErrorContext, "New ref %s\n", URI);
238 if (URI
497 xmlChar *URI; local
2033 xmlChar *URI; local
[all...]
H A Dxpointer.c1064 xmlChar *URI; local
1092 URI = xmlSaveUri(value);
1094 if (URI == NULL) {
1101 xmlXPathRegisterNs(ctxt->context, prefix, URI);
1103 xmlFree(URI);
H A Dcatalog.c1090 xmlCatalogListXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI);
1133 * @uriAttrName: the attribute holding the URI-Reference
1570 * Remove entries in the XML catalog where the value or the URI
1624 * Returns the URI of the resource or NULL if not found
1848 * @URI: the URI
1854 * Implements (or tries to) 7.2.2. URI Resolution
1857 * Returns the URI of the resource or NULL if not found
1860 xmlCatalogXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI) { argument
1871 if (URI
2094 xmlCatalogListXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI) argument
2899 xmlACatalogResolveURI(xmlCatalogPtr catal, const xmlChar *URI) argument
3369 xmlCatalogResolveURI(const xmlChar *URI) argument
3707 xmlCatalogLocalResolveURI(void *catalogs, const xmlChar *URI) argument
[all...]

Completed in 624 milliseconds

12