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

123

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCICEServer.h33 // The server URI.
34 @property(nonatomic, strong, readonly) NSURL* URI; variable
40 - (id)initWithURI:(NSString*)URI password:(NSString*)password;
/external/nist-sip/java/javax/sip/address/
H A DURI.java5 public interface URI extends Cloneable, Serializable { interface in inherits:Cloneable,Serializable
/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/chromium_org/third_party/libxslt/libxslt/
H A Ddocuments.c46 * @URI: the URI of the document to load
61 xsltDocDefaultLoaderFunc(const xmlChar * URI, xmlDictPtr dict, int options, argument
85 inputStream = xmlLoadExternalEntity((const char *) URI, NULL, pctxt);
92 pctxt->directory = xmlParserGetDirectory((const char *) URI);
277 * @URI: the computed URI of the document
285 xsltLoadDocument(xsltTransformContextPtr ctxt, const xmlChar *URI) { argument
289 if ((ctxt == NULL) || (URI == NULL))
298 res = xsltCheckRead(ctxt->sec, ctxt, URI);
359 xsltLoadStyleDocument(xsltStylesheetPtr style, const xmlChar *URI) argument
[all...]
H A Dimports.c92 xmlChar *URI = NULL; local
107 URI = xmlBuildURI(uriRef, base);
108 if (URI == NULL) {
110 "xsl:import : invalid URI reference %s\n", uriRef);
118 if (xmlStrEqual(res->doc->URL, URI)) {
120 "xsl:import : recursion detected on imported URL %s\n", URI);
133 secres = xsltCheckRead(sec, NULL, URI);
137 URI);
142 import = xsltDocDefaultLoader(URI, style->dict, XSLT_PARSE_OPTIONS,
146 "xsl:import : unable to load %s\n", URI);
189 xmlChar *URI = NULL; local
[all...]
H A Dnamespaces.c108 * "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)
685 URI
789 const xmlChar *URI; local
[all...]
H A Dfunctions.c60 * @ns_uri: the function namespace URI
105 xsltDocumentFunctionLoadDocument(xmlXPathParserContextPtr ctxt, xmlChar* URI) argument
123 uri = xmlParseURI((const char *) URI);
126 "document() : failed to parse URI\n");
142 idoc = xsltLoadDocument(tctxt, URI);
146 if ((URI == NULL) ||
147 (URI[0] == '#') ||
149 (xmlStrEqual(tctxt->style->doc->URL, URI))))
228 xmlChar *base = NULL, *URI; local
328 URI
[all...]
H A Dpreproc.c1294 const xmlChar *URI; local
1304 * @prop will be in the string dict afterwards, @URI not.
1306 URI = xsltGetQNameURI2(style, inst, &prop);
1313 if (URI != NULL) {
1320 *nsName = xmlDictLookup(style->dict, URI, -1);
/external/libxslt/libxslt/
H A Ddocuments.c46 * @URI: the URI of the document to load
61 xsltDocDefaultLoaderFunc(const xmlChar * URI, xmlDictPtr dict, int options, argument
85 inputStream = xmlLoadExternalEntity((const char *) URI, NULL, pctxt);
92 pctxt->directory = xmlParserGetDirectory((const char *) URI);
277 * @URI: the computed URI of the document
285 xsltLoadDocument(xsltTransformContextPtr ctxt, const xmlChar *URI) { argument
289 if ((ctxt == NULL) || (URI == NULL))
298 res = xsltCheckRead(ctxt->sec, ctxt, URI);
359 xsltLoadStyleDocument(xsltStylesheetPtr style, const xmlChar *URI) argument
[all...]
H A Dimports.c92 xmlChar *URI = NULL; local
107 URI = xmlBuildURI(uriRef, base);
108 if (URI == NULL) {
110 "xsl:import : invalid URI reference %s\n", uriRef);
118 if (xmlStrEqual(res->doc->URL, URI)) {
120 "xsl:import : recursion detected on imported URL %s\n", URI);
133 secres = xsltCheckRead(sec, NULL, URI);
137 URI);
142 import = xsltDocDefaultLoader(URI, style->dict, XSLT_PARSE_OPTIONS,
146 "xsl:import : unable to load %s\n", URI);
189 xmlChar *URI = NULL; local
[all...]
H A Dnamespaces.c108 * "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)
685 URI
789 const xmlChar *URI; local
[all...]
H A Dfunctions.c60 * @ns_uri: the function namespace URI
105 xsltDocumentFunctionLoadDocument(xmlXPathParserContextPtr ctxt, xmlChar* URI) argument
123 uri = xmlParseURI((const char *) URI);
126 "document() : failed to parse URI\n");
142 idoc = xsltLoadDocument(tctxt, URI);
146 if ((URI == NULL) ||
147 (URI[0] == '#') ||
149 (xmlStrEqual(tctxt->style->doc->URL, URI))))
228 xmlChar *base = NULL, *URI; local
328 URI
[all...]
H A Dpreproc.c1294 const xmlChar *URI; local
1304 * @prop will be in the string dict afterwards, @URI not.
1306 URI = xsltGetQNameURI2(style, inst, &prop);
1313 if (URI != NULL) {
1320 *nsName = xmlDictLookup(style->dict, URI, -1);
/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...]
/external/chromium_org/third_party/libxml/src/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/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/smack/src/org/xbill/DNS/
H A DCERTRecord.java47 /** Certificate format defined by URI */
48 public static final int URI = 253; field in class:CERTRecord.CertificateType
68 types.add(URI, "URI");
101 /** Certificate format defined by URI */
102 public static final int URI = CertificateType.URI; field in class:CERTRecord
/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/chromium_org/third_party/libxslt/libexslt/
H A Dfunctions.c68 * @URI: the function namespace URI
76 const xmlChar *URI, const xmlChar *name,
78 if ((data == NULL) || (ctxt == NULL) || (URI == NULL) || (name == NULL))
83 URI, name);
84 xsltRegisterExtFunction(ctxt, name, URI,
92 * @URI: the function namespace URI
101 const xmlChar *URI, const xmlChar *name,
105 if ((data == NULL) || (ch == NULL) || (URI
74 exsltFuncRegisterFunc(exsltFuncFunctionData *data, xsltTransformContextPtr ctxt, const xmlChar *URI, const xmlChar *name, ATTRIBUTE_UNUSED const xmlChar *ignored) argument
99 exsltFuncRegisterImportFunc(exsltFuncFunctionData *data, exsltFuncImportRegData *ch, const xmlChar *URI, const xmlChar *name, ATTRIBUTE_UNUSED const xmlChar *ignored) argument
144 exsltFuncInit(xsltTransformContextPtr ctxt, const xmlChar *URI) argument
[all...]

Completed in 944 milliseconds

123