HomeSort by relevance Sort by last modified time
    Searched defs:domain (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /external/bluetooth/glib/glib/
gerror.h 36 GQuark domain; member in struct:_GError
41 GError* g_error_new (GQuark domain,
46 GError* g_error_new_literal (GQuark domain,
54 GQuark domain,
57 /* if (err) *err = g_error_new(domain, code, format, ...), also has
61 GQuark domain,
67 GQuark domain,
  /external/webkit/Source/WebKit/chromium/public/
WebURLError.h 47 WebString domain; member in struct:WebKit::WebURLError
WebCookie.h 52 WebCookie(const WebString& name, const WebString& value, const WebString& domain,
56 , domain(domain)
67 WebString domain; member in struct:WebKit::WebCookie
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicDomainHandler.java 51 throw new MalformedCookieException("Missing value for domain attribute");
54 throw new MalformedCookieException("Blank value for domain attribute");
67 // Validate the cookies domain attribute. NOTE: Domains without
69 // have DNS names. Since they have no dots, to domain-match the
70 // request-host and domain must be identical for the cookie to sent
73 String domain = cookie.getDomain(); local
74 if (domain == null) {
75 throw new MalformedCookieException("Cookie domain may not be null");
79 // A Set-Cookie2 with Domain=ajax.com will be accepted.
81 // domain must match hos
109 String domain = cookie.getDomain(); local
    [all...]
NetscapeDomainHandler.java 52 String domain = cookie.getDomain(); local
54 int domainParts = new StringTokenizer(domain, ".").countTokens();
56 if (isSpecialDomain(domain)) {
58 throw new MalformedCookieException("Domain attribute \""
59 + domain
65 throw new MalformedCookieException("Domain attribute \""
66 + domain
74 * Checks if the given domain is in one of the seven special
76 * @param domain The domain
99 String domain = cookie.getDomain(); local
    [all...]
RFC2109DomainHandler.java 53 throw new MalformedCookieException("Missing value for domain attribute");
56 throw new MalformedCookieException("Blank value for domain attribute");
70 String domain = cookie.getDomain(); local
71 if (domain == null) {
72 throw new MalformedCookieException("Cookie domain may not be null");
74 if (!domain.equals(host)) {
75 int dotIndex = domain.indexOf('.');
77 throw new MalformedCookieException("Domain attribute \""
78 + domain
82 // domain must start with do
119 String domain = cookie.getDomain(); local
    [all...]
  /external/chromium/webkit/glue/
webcookie.h 20 const std::string& domain, const std::string& path, double expires,
30 // Cookie domain.
31 std::string domain; member in struct:webkit_glue::WebCookie
  /external/guava/guava-tests/test/com/google/common/net/
InternetDomainNameTest.java 50 * A domain part which is valid under lenient validation, but invalid under
216 final InternetDomainName domain = InternetDomainName.from(name); local
217 assertTrue(name, domain.isPublicSuffix());
218 assertTrue(name, domain.hasPublicSuffix());
219 assertFalse(name, domain.isUnderPublicSuffix());
220 assertFalse(name, domain.isTopPrivateDomain());
221 assertEquals(domain, domain.publicSuffix());
225 final InternetDomainName domain = InternetDomainName.from(name); local
226 assertFalse(name, domain.isPublicSuffix())
234 final InternetDomainName domain = InternetDomainName.from(name); local
243 final InternetDomainName domain = InternetDomainName.from(name); local
252 final InternetDomainName domain = InternetDomainName.from(name); local
263 final InternetDomainName domain = InternetDomainName.from(name); local
290 InternetDomainName domain = InternetDomainName.from("foo.com"); local
353 InternetDomainName domain = InternetDomainName.from(inputName); local
373 InternetDomainName domain = InternetDomainName.from("foo.nhs.uk"); local
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_cookies.h 46 /// the "domain" attribute, or else the hostname that the cookie came from
47 char *domain; member in struct:_Ewk_Cookie
  /external/webkit/Source/WebKit2/Shared/
WebError.h 53 const String& domain() const { return m_platformError.domain(); } function in class:WebKit::WebError
  /external/webkit/Source/WebKit2/Shared/gtk/
WebCoreArgumentCodersGtk.cpp 66 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
71 String domain; local
75 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
77 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
  /external/webkit/Source/WebKit2/Shared/qt/
WebCoreArgumentCodersQt.cpp 65 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
70 String domain; local
74 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
76 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
  /external/webkit/Source/WebKit2/Shared/win/
WebCoreArgumentCodersWin.cpp 124 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
133 String domain; local
137 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
148 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription, WebCore::copyCertificateToData(certificateChain.first()).get());
153 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
  /frameworks/ex/common/tools/
make-iana-tld-pattern.py 9 * http://data.iana.org/TLD/tlds-alpha-by-domain.txt
20 * http://data.iana.org/TLD/tlds-alpha-by-domain.txt
131 f = urlopen('http://data.iana.org/TLD/tlds-alpha-by-domain.txt')
137 for domain in domains:
138 domain = domain.lower() variable
140 if len(domain) > 0:
141 getBucket(buckets, domain[0]).add(domain.strip())
143 if domain.startswith('xn--')
    [all...]
  /external/guava/guava/src/com/google/common/collect/
RegularContiguousSet.java 39 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) {
40 super(domain);
47 .asSet(domain);
52 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
59 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
65 .asSet(domain);
74 return equalsOrThrow(previous, last) ? null : domain.next(previous);
88 return range.lowerBound.leastValueAbove(domain);
92 return range.upperBound.greatestValueBelow(domain);
96 long distance = domain.distance(first(), last())
174 final DiscreteDomain<C> domain; field in class:SerializedForm
    [all...]
ContiguousSet.java 35 final DiscreteDomain<C> domain; field in class:ContiguousSet
37 ContiguousSet(DiscreteDomain<C> domain) {
39 this.domain = domain;
104 * is requested for a domain minimum or maximum. For example, if {@code set} was created from the
  /external/apache-http/src/org/apache/http/auth/
NTUserPrincipal.java 47 private final String domain; field in class:NTUserPrincipal
51 final String domain,
58 if (domain != null) {
59 this.domain = domain.toUpperCase(Locale.ENGLISH);
61 this.domain = null;
63 if (this.domain != null && this.domain.length() > 0) {
65 buffer.append(this.domain);
79 return this.domain;
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
account_creation_view.cc 52 std::string domain; local
58 domain = UTF16ToASCII(form.fields[i].value);
65 delegate_->OnUserCreated(user_name + "@" + domain, "");
  /external/chromium/chrome/browser/resources/
connection_manager.js 23 'domain': location.href,
  /external/chromium/third_party/libjingle/source/talk/xmpp/
jid.h 37 //! A Jid consists of three parts. The node, the domain and the resource.
39 //! node@domain/resource
42 //! a domain. A bare jid is defined to not have a resource and a full jid
76 const std::string & domain() const { return !data_ ? STR_EMPTY : data_->domain_name_; } function in class:buzz::Jid
126 Data(const std::string & node, const std::string &domain, const std::string & resource) :
128 domain_name_(domain),
  /external/guava/guava/src/com/google/common/net/
HostSpecifier.java 30 * domain name.
33 * reasonably be used in a URI, the domain name case is further restricted to
34 * include only those domain names which end in a recognized public suffix; see
45 * Similarly, if you know that a given string represents a domain name, use
67 * <li>A domain name, like {@code google.com}
97 // It is not any kind of IP address; must be a domain name or invalid.
100 final InternetDomainName domain = InternetDomainName.from(host); local
102 if (domain.hasPublicSuffix()) {
103 return new HostSpecifier(domain.name());
107 "Domain name does not have a recognized public suffix: " + host)
    [all...]
  /external/webkit/Source/WebCore/platform/
Cookie.h 38 Cookie(const String& name, const String& value, const String& domain,
43 , domain(domain)
54 String domain; member in struct:WebCore::Cookie
65 return StringHash::hash(key.name) + StringHash::hash(key.domain) + StringHash::hash(key.path) + key.secure;
70 return a.name == b.name && a.domain == b.domain && a.path == b.path && a.secure == b.secure;
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
Mailbox.java 32 private String domain; field in class:Mailbox
37 * @param domain The part of the e-mail address to the right of the "@".
39 public Mailbox(String localPart, String domain) {
40 this(null, localPart, domain);
47 * @param domain The part of the e-mail address to the right of the "@".
49 public Mailbox(DomainList route, String localPart, String domain) {
52 this.domain = domain;
75 return domain;
108 + (domain == null ? "" : "@")
    [all...]
  /device/sample/apps/SampleEmailPolicy/src/com/android/email/policy/
EmailPolicy.java 94 * The only argument (with the key FIND_PROVIDER) is a string containing the domain that the
96 * "MyEmailAddress@gmail.com", the domain will be "gmail.com".
98 * If no server information is provided for this domain, simply return Bundle.EMPTY.
99 * If server information is available for this domain, it can be returned in the following
146 * $domain - the value after the @ signin the email address the user entered
202 * Policy: For a known domain, configure to the servers for that domain
205 String domain = arguments.getString(FIND_PROVIDER); local
206 if (domain != null) {
207 domain = domain.toLowerCase()
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_cookies_unittest.cc 22 const char* domain; member in struct:__anon3108::DomainMatchCase
180 std::string domain; local
201 net::CookieMonster::CanonicalCookie cookie(GURL(), "", "", tests[i].domain,

Completed in 1189 milliseconds

1 2 3 4 5 6 7