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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/skia/src/gpu/
GrCacheID.cpp 25 GrCacheID::Domain GrCacheID::GenerateDomain() {
28 int32_t domain = sk_atomic_inc(&gNextDomain); local
29 if (domain >= 1 << (8 * sizeof(Domain))) {
33 return static_cast<Domain>(domain);
  /external/skia/src/gpu/
GrCacheID.cpp 25 GrCacheID::Domain GrCacheID::GenerateDomain() {
28 int32_t domain = sk_atomic_inc(&gNextDomain); local
29 if (domain >= 1 << (8 * sizeof(Domain))) {
33 return static_cast<Domain>(domain);
  /external/chromium_org/components/policy/core/common/
policy_namespace.h 16 // string depends on the domain; for example, if the PolicyDomain is
22 // The extensions policy domain is a work in progress. Included here for
30 // Groups a policy domain and a component ID in a single object representing
35 PolicyNamespace(PolicyDomain domain, const std::string& component_id);
44 PolicyDomain domain; member in struct:policy::PolicyNamespace
  /external/chromium_org/google_apis/gaia/
gaia_auth_util_unittest.cc 68 const char domain[] = "example.com"; local
69 EXPECT_EQ(domain, CanonicalizeDomain("example.com"));
70 EXPECT_EQ(domain, CanonicalizeDomain("EXAMPLE.cOm"));
74 const char domain[] = "example.com"; local
75 EXPECT_EQ(domain, ExtractDomainName("who@example.com"));
76 EXPECT_EQ(domain, ExtractDomainName("who@EXAMPLE.cOm"));
  /external/chromium_org/third_party/WebKit/public/platform/
WebURLError.h 47 WebString domain; member in struct:blink::WebURLError
WebCookie.h 50 WebCookie(const WebString& name, const WebString& value, const WebString& domain,
54 , domain(domain)
65 WebString domain; member in struct:blink::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/chromium_org/content/common/
cookie_data.h 29 // Cookie domain.
30 std::string domain; member in struct:content::CookieData
  /external/chromium_org/ppapi/shared_impl/
file_path.h 19 enum Domain {
29 PepperFilePath(Domain d, const base::FilePath& p);
31 Domain domain() const { return domain_; } function in class:ppapi::PepperFilePath
35 Domain domain_;
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
jid.h 38 // consists of three parts: the node, the domain and the resource, e.g.:
40 // node@domain/resource
43 // a domain. A bare jid is defined to not have a resource and a full jid
55 const std::string & domain() const { return domain_name_; } function in class:buzz::Jid
83 static std::string PrepDomain(const std::string& domain, bool* valid);
84 static void PrepDomain(const std::string& domain,
mucroomlookuptask.h 39 std::string domain; member in struct:buzz::MucRoomInfo
43 return name + "@" + domain;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_transfer.h 10 unsigned domain; member in struct:nv50_m2mf_rect
  /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/libexif/test/nls/
test-nls.c 67 const char *domain = textdomain(GETTEXT_PACKAGE); local
68 printf("message domain: %s\n", domain);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_transfer.h 10 unsigned domain; member in struct:nv50_m2mf_rect
  /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...]
  /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/chromium_org/chrome/browser/android/bookmarks/
managed_bookmarks_shim.cc 68 std::string domain; local
71 domain = gaia::ExtractDomainName(username);
73 if (domain.empty()) {
78 base::UTF8ToUTF16(domain));

Completed in 378 milliseconds

1 2 3 4 5 6 7 8 91011