/external/nist-sip/java/gov/nist/javax/sip/address/ |
D | SipUri.java | 67 protected Authority authority; field in SipUri 115 if (this.authority != null) { in clearPassword() 116 UserInfo userInfo = authority.getUserInfo(); in clearPassword() 125 return this.authority; in getAuthority() 243 if (authority != null) in encode() 244 authority.encode(buffer); in encode() 273 if (authority.getUserInfo() != null) in getUserAtHost() 274 user = authority.getUserInfo().getUser(); in getUserAtHost() 276 String host = authority.getHost().encode(); in getUserAtHost() 292 if (authority.getUserInfo() != null) in getUserAtHostPort() [all …]
|
/external/collada/src/dae/ |
D | daeURI.cpp | 183 const string& daeURI::authority() const { return _authority; } in authority() function in daeURI 270 void daeURI::authority(const string& authority_) { set(_scheme, authority_, _path, _query, _fragmen… in authority() function in daeURI 701 string& authority, in parseUriRef() argument 709 if (re.FullMatch(uriRef, &s1, &scheme, &s3, &authority, &path, &s6, &query, &s8, &fragment)) in parseUriRef() 724 const string& authority, in assembleUri() argument 737 if (!authority.empty() || libxmlHack || (p[0] == '/' && p[1] == '/')) in assembleUri() 739 if (!authority.empty()) { in assembleUri() 744 uri += "///" + authority; in assembleUri() 748 uri += authority; in assembleUri() 771 string scheme, authority, path, query, fragment; in fixUriForLibxml() local [all …]
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
D | iri2uri.py | 70 (scheme, authority, path, query, fragment) = urlparse.urlsplit(uri) 71 authority = authority.encode('idna') 75 uri = urlparse.urlunsplit((scheme, authority, path, query, fragment))
|
D | __init__.py | 169 (scheme, authority, path, query, fragment) = parse_uri(uri) 170 if not scheme or not authority: 172 authority = authority.lower() 180 defrag_uri = scheme + "://" + authority + request_uri 181 return scheme, authority, request_uri, defrag_uri 416 (scheme, authority, path, query, fragment) = parse_uri(request_uri) 423 (scheme, authority, path, query, fragment) = parse_uri(request_uri) 428 (scheme, authority, path, query, fragment) = parse_uri(request_uri) 928 (scheme, authority, path, query, fragment) = parse_uri(location) 929 if authority == None: [all …]
|
/external/collada/include/dae/ |
D | daeURI.h | 192 const std::string& authority, 203 const std::string& authority() const; 214 void authority(const std::string& authority); 421 std::string& authority, 441 const std::string& authority,
|
/external/libxml2/ |
D | uri.c | 448 if (uri->authority != NULL) xmlFree(uri->authority); in xmlParse3986Host() 449 uri->authority = NULL; in xmlParse3986Host() 1145 } else if (uri->authority != NULL) { in xmlSaveUri() 1160 p = uri->authority; in xmlSaveUri() 1420 if (uri->authority != NULL) xmlFree(uri->authority); in xmlCleanURI() 1421 uri->authority = NULL; in xmlCleanURI() 1444 if (uri->authority != NULL) xmlFree(uri->authority); in xmlFreeURI() 1844 if (uri->authority) { in xmlURIEscape() 1846 xmlURIEscapeStr(BAD_CAST uri->authority, BAD_CAST "/?;:@"); in xmlURIEscape() 2020 ((ref->authority == NULL) && (ref->server == NULL))) { in xmlBuildURI() [all …]
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
D | OAuthSignatureMethod.java | 162 String authority = uri.getAuthority().toLowerCase(); in normalizeUrl() local 167 int index = authority.lastIndexOf(":"); in normalizeUrl() 169 authority = authority.substring(0, index); in normalizeUrl() 177 return scheme + "://" + authority + path; in normalizeUrl()
|
/external/webkit/Source/JavaScriptCore/wtf/url/src/ |
D | URLParser.h | 126 URLComponent authority; in parseAfterScheme() local 134 authority = URLComponent(afterSlashes, authEnd - afterSlashes); in parseAfterScheme() 142 parseAuthority(spec, authority, parsed.username, parsed.password, parsed.host, parsed.port); in parseAfterScheme()
|
/external/libxml2/include/libxml/ |
D | uri.h | 36 char *authority; /* the authority part */ member
|
/external/webkit/Source/WebCore/platform/ |
D | KURL.cpp | 879 Vector<UChar> authority; in prettyURL() local 883 append(authority, user()); in prettyURL() 884 authority.append('@'); in prettyURL() 886 append(authority, host()); in prettyURL() 888 authority.append(':'); in prettyURL() 889 append(authority, String::number(port())); in prettyURL() 893 if (!authority.isEmpty()) { in prettyURL() 896 result.append(authority); in prettyURL()
|
/external/chromium/googleurl/src/ |
D | url_parse.cc | 293 Component authority; in DoParseAfterScheme() local 300 authority = Component(after_slashes, end_auth - after_slashes); in DoParseAfterScheme() 308 DoParseAuthority(spec, authority, &parsed->username, &parsed->password, in DoParseAfterScheme()
|
/external/chromium/third_party/libevent/ |
D | evdns.c | 276 struct server_reply_item *authority; /* linked list of authority RRs */ member 819 u16 trans_id, questions, answers, authority, additional, datalength; in reply_parse() local 830 GET16(authority); in reply_parse() 832 (void) authority; /* suppress "unused variable" warnings. */ in reply_parse() 964 u16 trans_id, flags, questions, answers, authority, additional; in request_parse() local 972 GET16(authority); in request_parse() 1526 itemp = &req->authority; in evdns_server_request_add_reply() 1672 item = req->authority; in evdns_server_request_format_response() 1783 list = &req->authority; in server_request_free_answers()
|
/external/ipsec-tools/src/racoon/samples/roadwarrior/ |
D | README | 44 certificate authority that signed the VPN gateway certificate in
|
/external/apache-http/src/org/apache/http/impl/client/ |
D | DefaultRequestDirector.java | 882 String authority = buffer.toString(); in createConnectRequest() local 885 ("CONNECT", authority, ver); in createConnectRequest()
|
/external/iproute2/doc/ |
D | arpd.sgml | 117 and made under authority of <tt/arpd/:
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
D | URLTest.java | 1216 String authority, String userInfo, String file, String query, in setURL() argument 1218 super.setURL(u, protocol, host, port, authority, userInfo, in setURL()
|
/external/bouncycastle/src/main/java/org/bouncycastle/x509/ |
D | CertPathReviewerMessages.properties | 493 # error processing the authority info access extension 495 …oAccError.text = CRL checking failed: there was an error processing the authority info access exte… 496 CertPathReviewer.crlAuthInfoAccError.summary = Error processing the authority info access extension. 497 …cError.details = CRL checking failed: there was an error processing the authority info access exte…
|
/external/chromium/googleurl/ |
D | README.txt | 60 "Standard URL": A URL with an "authority", which is a hostname and optionally
|
/external/openssl/crypto/objects/ |
D | objects.txt | 591 # access descriptors for authority info access extension 758 !Cname authority-key-identifier
|
/external/quake/quake/src/WinQuake/data/ |
D | COMEXP.TXT | 375 military authority, civil disturbance, military action, war,
|
D | MANUAL.TXT | 70 charge. Find Quake, and stop him ... or it ... You have full authority
|
/external/webkit/Source/WebCore/platform/text/mac/ |
D | character-sets.txt | 1788 registration authority is IPSJ/ITSCJ, Japan.
|
/external/icu4c/test/testdata/ |
D | regextst.txt | 1253 #"^(?=[^\&])(?:(?<scheme>[^:/?#]+):)?(?://(?<authority>[^/?#]*))?(?<path>[^?#]*)(?:\?(?<query>[^#]*… 1254 #"^(?=[^\&])(?:(?<scheme>[^:/?#]+):)?(?://(?<authority>[^/?#]*))?(?<path>[^?#]*)(?:\?(?<query>[^#]*…
|
/external/qemu/ |
D | qemu-options.hx | 580 and reject clients when validation fails. If the certificate authority is
|
/external/libxslt/libxslt/ |
D | xslt.c | 6897 (URI->opaque == NULL) && (URI->authority == NULL) && in xsltLoadStylesheetPI()
|