/external/smack/src/com/kenai/jbosh/ |
BOSHClientConfig.java | 38 * Target domain. 107 * @param domain target domain to communicate with 109 private Builder(final URI cmURI, final String domain) { 111 bDomain = domain; 119 * @param domain target domain to communicate with 122 public static Builder create(final URI cmURI, final String domain) { 127 if (domain == null) { 129 "Target domain must not be null")) [all...] |
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLDocument03.js | 78 The domain attribute specifies the domain name of the server that served 79 the document, or null if the server cannot be identified by a domain name. 81 Retrieve the domain attribute and examine its value. 100 vdomain = doc.domain;
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLDocument03.js | 78 The domain attribute specifies the domain name of the server that served 79 the document, or null if the server cannot be identified by a domain name. 81 Retrieve the domain attribute and examine its value. 100 vdomain = doc.domain;
|
/libcore/luni/src/main/java/java/net/ |
HttpCookie.java | 37 * attributes: {@code Domain}, {@code Expires}, {@code Path}, and 71 RESERVED_NAMES.add("domain"); // Netscape RFC 2109 RFC 2965 81 * Returns true if {@code host} matches the domain pattern {@code domain}. 84 * localhost}), or a pattern to match subdomains of a domain name (like 109 * Not in the spec! If prefixing a hostname with "." causes it to equal the domain pattern, 123 * (So, x.y.com domain-matches .Y.com but not Y.com.) 177 * {@code android.com} and {@code co.uk} to be fully qualified domain names, 322 } else if (name.equals("domain") && cookie.domain == null) [all...] |
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSettingsUtils.java | 38 /** Pattern to match any part of a domain */ 82 * domain. We check for vendor supplied values first, then we look in providers_product.xml, 86 * A match is defined as any provider entry for which the "domain" attribute matches. 88 * @param domain The domain portion of the user's email address 91 public static Provider findProviderForDomain(Context context, String domain) { 92 Provider p = VendorPolicyLoader.getInstance(context).findProviderForDomain(domain); 94 p = findProviderForDomain(context, domain, R.xml.providers_product); 97 p = findProviderForDomain(context, domain, R.xml.providers); 105 * @param domain The domain portion of the user's email addres 218 public String domain; field in class:AccountSettingsUtils.Provider [all...] |
/external/chromium/net/http/ |
http_auth_sspi_win.cc | 51 const string16& domain, 60 identity.Domain = 61 reinterpret_cast<unsigned short*>(const_cast<wchar_t*>(domain.c_str())); 62 identity.DomainLength = domain.size(); 299 string16 domain; local 301 SplitDomainAndUser(*username, &domain, &user); 302 rv = AcquireExplicitCredentials(library_, security_package_, domain, 395 string16* domain, 397 // |combined| may be in the form "user" or "DOMAIN\user". 399 // TODO(cbentzel): I believe user@domain is also a valid form [all...] |
http_auth_handler_ntlm.cc | 57 // |username| may be in the form "DOMAIN\user". Parse it into the two 59 string16 domain; 66 domain = username->substr(0, backslash_idx); 69 domain_ = domain;
|
/external/chromium/chrome/browser/ui/cocoa/content_settings/ |
cookie_details.h | 148 - (NSString*)domain; 178 - (id)initWithDatabase:(const std::string&)domain 189 - (id)initWithLocalStorage:(const std::string&)domain
|
/external/qemu/ |
osdep.c | 149 int qemu_socket(int domain, int type, int protocol) 154 ret = socket(domain, type | SOCK_CLOEXEC, protocol); 159 ret = socket(domain, type, protocol);
|
/external/chromium/chrome/browser/net/ |
url_fixer_upper.cc | 184 // Checks |domain| to see if a valid TLD is already present. If not, appends 185 // |desired_tld| to the domain, and prepends "www." unless it's already present. 187 std::string* domain) { 188 if (desired_tld.empty() || domain->empty()) 201 net::RegistryControlledDomainService::GetRegistryLength(*domain, false); 205 // Add the suffix at the end of the domain. 206 const size_t domain_length(domain->length()); 209 if ((*domain)[domain_length - 1] != '.') 210 domain->push_back('.'); 211 domain->append(desired_tld) [all...] |
/external/libxml2/ |
libxml.h | 65 void __xmlIOErr(int domain, int code, const char *extra);
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-85721.js | 173 //# Item 12: domain-ref is just an atom 176 //# Item 13: domain-literal is like a quoted string, but [...] instead of "..." 182 // # Item 9: sub-domain is a domain-ref or domain-literal 191 // # Item 6: domain is a list of subdomains separated by dots. 192 $domain = 198 //# Item 8: a route. A bunch of "@ $domain" separated by commas, followed by a colon. 200 '\@' + $X + $domain + 201 '(?:,' + $X + '\@' + $X + $domain + ')*' + // # additional domain [all...] |
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_cookies.cpp | 113 c->domain = strdup(cookie->domain); 129 * Note that the fields name, value, domain and path are used to match this 142 cookie->name, cookie->value, cookie->domain, cookie->path, -1); 169 free(cookie->domain);
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebError.idl | 29 @abstract Constants used by NSError to indicate errors in the WebFoundation domain 132 HRESULT init([in] BSTR domain, [in] int code, [in] BSTR url); 140 - (NSString *)domain 142 HRESULT domain([out, retval] BSTR* result);
|
/frameworks/base/services/java/com/android/server/ |
SystemBackupAgent.java | 126 int type, String domain, String path, long mode, long mtime) 128 Slog.i(TAG, "Restoring file domain=" + domain + " path=" + path); 134 // Various domain+files we understand a priori 135 if (domain.equals(FullBackup.ROOT_TREE_TOKEN)) { 147 Slog.w(TAG, "Skipping unrecognized system file: [ " + domain + " : " + path + " ]");
|
/packages/apps/Email/src/com/android/email/ |
VendorPolicyLoader.java | 212 * @param domain The domain portion of the user's email address 215 public Provider findProviderForDomain(String domain) { 217 params.putString(FIND_PROVIDER, domain); 223 p.domain = domain;
|
/external/chromium/net/tools/testserver/ |
xmppserver.py | 161 def __init__(self, username, domain, resource=''): 163 self.domain = domain 167 jid_str = "%s@%s" % (self.username, self.domain) 173 return Jid(self.username, self.domain) 278 domain = stanza.getAttribute('to') 279 if domain: 280 self._domain = domain 292 # The domain may be omitted. 296 # username, _, domain = username_domain.partition('@' [all...] |
/external/chromium/chrome/browser/resources/ |
connection_manager.js | 23 'domain': location.href,
|
/external/libsepol/include/sepol/policydb/ |
services.h | 132 * `domain', `type', `protocol', and `port'. 134 extern int sepol_port_sid(uint16_t domain, 153 * in bytes and `domain' is the communications domain or 156 extern int sepol_node_sid(uint16_t domain,
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
bitops-3bit-bits-in-byte.js | 1 // Copyright (c) 2004 by Arthur Langereis (arthur_ext at domain xfinitegames, tld com
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
bitops-3bit-bits-in-byte.js | 1 // Copyright (c) 2004 by Arthur Langereis (arthur_ext at domain xfinitegames, tld com
|
/frameworks/base/core/jni/ |
android_app_backup_FullBackup.cpp | 62 * This method writes one file data block. 'domain' is the name of the appropriate pseudo- 67 * domain: which semantic name the file is to be stored under (a, r, f, db, etc) 87 String8 domain(domainchars ? domainchars : ""); 110 return write_tarfile(packageName, domain, rootpath, path, writer);
|
/development/ndk/sources/android/libportable/arch-mips/ |
socket.c | 133 int WRAP(socket)(int domain, int type, int protocol) { 137 ALOGV("%s(domain:%d, type:%d, protocol:%d) {", __func__, 138 domain, type, protocol); 140 rv = REAL(socket)(domain, socktype_pton(type), protocol); 147 int WRAP(socketpair)(int domain, int type, int protocol, int sv[2]) { 151 ALOGV("%s(domain:%d, type:%d, protocol:%d, sv[2]:%p) {", __func__, 152 domain, type, protocol, sv); 154 rv = REAL(socketpair)(domain, socktype_pton(type), protocol, sv);
|
/external/guava/guava/src/com/google/common/net/ |
InternetDomainName.java | 37 * An immutable well-formed internet domain name, such as {@code com} or {@code 39 * network interactions take place. Thus there is no guarantee that the domain 43 * likely to represent an addressable domain on the web -- that is, for a 46 * done by determining whether the domain ended with a {@linkplain 50 * result, the only useful test to determine if a domain is a plausible web host 67 * internationalized domain names</a> such as {@code ??.cn} are supported, as 93 * Maximum parts (labels) in a domain name. This value arises from 103 * Maximum length of a full domain name, including separators, and 110 * Maximum size of a single part of a domain name. See 116 * The full domain name, converted to lower case [all...] |
/packages/apps/Email/tests/src/com/android/email/activity/setup/ |
AccountSettingsUtilsTests.java | 46 * Incoming: Prepend "imap" or "pop3" to domain, unless "pop", "pop3", 68 // <provider id="gmail" label="Gmail" domain="gmail.com"> 77 assertEquals("gmail.com", testProvider.domain); 79 // <provider id="rr-generic" label="RoadRunner" domain="*.rr.com"> 80 // <incoming uri="pop3://pop-server.$domain" username="$email" /> 86 assertEquals("pop3://pop-server.$domain", testProvider.incomingUriTemplate); 88 assertEquals("elmore.rr.com", testProvider.domain); 90 // Domain matches 2 providers; first one wins 138 // <provider id="cox" label="Cox" domain="cox.net"> 143 testProvider.domain = "cox.net" [all...] |