HomeSort by relevance Sort by last modified time
    Searched refs:domain (Results 151 - 175 of 1100) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/gallium/drivers/nv50/
nv50_transfer.h 10 unsigned domain; member in struct:nv50_m2mf_rect
  /external/chromium_org/components/policy/core/common/
forwarding_policy_provider.cc 30 bool ForwardingPolicyProvider::IsInitializationComplete(PolicyDomain domain)
32 if (domain == POLICY_DOMAIN_CHROME)
33 return delegate_->IsInitializationComplete(domain);
policy_service_impl.h 41 virtual void AddObserver(PolicyDomain domain,
43 virtual void RemoveObserver(PolicyDomain domain,
47 virtual bool IsInitializationComplete(PolicyDomain domain) const OVERRIDE;
80 // Maps each policy domain to its observer list.
83 // True if all the providers are initialized for the indexed policy domain.
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ResourceError.h 50 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
51 : m_domain(domain)
67 const String& domain() const { return m_domain; } function in class:blink::ResourceError
  /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,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_buffer.h 38 uint8_t domain; member in struct:nv04_resource
55 struct nv04_resource *, unsigned domain);
77 return nv04_resource(resource)->domain != 0;
  /external/guava/guava/src/com/google/common/collect/
Range.java 37 * (informally, "contiguous" or "unbroken") portion of a particular domain.
377 * given domain {@linkplain Range#contains contained} by this range.
392 * @throws IllegalArgumentException if neither this range nor the domain has a
397 public ContiguousSet<C> asSet(DiscreteDomain<C> domain) {
398 checkNotNull(domain);
403 Ranges.atLeast(domain.minValue()));
407 Ranges.atMost(domain.maxValue()));
416 lowerBound.leastValueAbove(domain),
417 upperBound.greatestValueBelow(domain)) > 0;
420 ? new EmptyContiguousSet<C>(domain)
    [all...]
  /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/libexif/libexif/
exif-log.h 77 typedef void (* ExifLogFunc) (ExifLog *log, ExifLogCode, const char *domain,
90 void exif_log (ExifLog *log, ExifLogCode, const char *domain,
106 void exif_logv (ExifLog *log, ExifLogCode, const char *domain,
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.h 38 uint8_t domain; member in struct:nv04_resource
55 struct nv04_resource *, unsigned domain);
77 return nv04_resource(resource)->domain != 0;
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 19 // This pass changes the variant instructions to minimize domain crossings.
41 /// execution domain. Multiple registers may refer to the same open
43 /// domain.
49 /// domain, but if we were forced to pay the penalty of a domain crossing, we
74 // Is domain available?
75 bool hasDomain(unsigned domain) const {
76 return AvailableDomains & (1u << domain);
79 // Mark domain as available.
80 void addDomain(unsigned domain) {
636 unsigned domain = countTrailingZeros(available); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Database.js 33 * @param {string} domain
37 WebInspector.Database = function(model, id, domain, name, version)
41 this._domain = domain;
76 get domain()
81 set domain(x)
206 payload.domain,
  /frameworks/ex/common/java/com/android/common/
Rfc822Validator.java 31 * and has the specified domain name added. It is meant for use with
58 * Regular expression for a domain label, as per RFC 3490.
65 * Expression that matches a domain name, including international domain names in Punycode or
69 "("+ LABEL_REGEXP + "\\.)+" // Subdomains and domain
70 // Top-level domain must be at least 2 chars
86 * Constructs a new validator that uses the specified domain name as
89 public Rfc822Validator(String domain) {
90 mDomain = domain;
117 * or the domain name part of the email address have been removed
177 String domain = removeIllegalCharacters(text.substring(index + 1)); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_MozillaCookieJar.py 30 domain as set in the HTTP header started with a dot (yes, I'm aware some
70 domain, domain_specified, path, secure, expires, name, value = \
81 initial_dot = domain.startswith(".")
92 domain, domain_specified, initial_dot,
129 if cookie.domain.startswith("."): initial_dot = "TRUE"
145 "\t".join([cookie.domain, initial_dot, cookie.path,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_MozillaCookieJar.py 30 domain as set in the HTTP header started with a dot (yes, I'm aware some
70 domain, domain_specified, path, secure, expires, name, value = \
81 initial_dot = domain.startswith(".")
92 domain, domain_specified, initial_dot,
129 if cookie.domain.startswith("."): initial_dot = "TRUE"
145 "\t".join([cookie.domain, initial_dot, cookie.path,
  /external/chromium_org/content/browser/devtools/
devtools_browser_target.cc 29 const std::string& domain,
34 DCHECK(handlers_.find(domain) == handlers_.end());
35 handlers_[domain] = handler;
37 handle_on_ui_thread_.insert(domain);
59 DomainHandlerMap::iterator it = handlers_.find(command->domain());
65 std::string domain = command->domain(); local
66 DomainMap::iterator jt = used_domains.find(domain);
68 used_domains[domain] = this;
72 domain.c_str())
    [all...]
  /external/chromium_org/chrome/browser/predictors/
logged_in_predictor_table.cc 41 string LoggedInPredictorTable::GetKeyFromDomain(const std::string& domain) {
44 domain,
47 effective_domain = domain;
61 base::StringPrintf("INSERT OR IGNORE INTO %s (domain, time) VALUES (?,?)",
76 base::StringPrintf("DELETE FROM %s WHERE domain=?", kTableName).c_str()));
83 void LoggedInPredictorTable::DeleteDomain(const std::string& domain) {
84 DeleteDomainFromURL(GURL("http://" + domain));
95 base::StringPrintf("SELECT count(*) FROM %s WHERE domain=?",
134 string domain = statement.ColumnString(0); local
136 (*state_map)[domain] = value
    [all...]
  /external/chromium_org/net/cert/
x509_util_openssl_unittest.cc 43 // Verify the attributes of a domain-bound certificate.
44 // |domain| is the bound domain name.
46 void VerifyChannelID(const std::string& domain,
67 // Which means <tag> <length> <domain>, with:
69 // <length> is the domain length, a single byte for short forms.
70 // <domain> are the domain characters.
77 // Check that the domain size is small enough for short form.
78 ASSERT_LE(domain.size(), 127U) << "Domain is too long!"
117 std::string domain = "weborigin.com"; local
    [all...]
  /external/chromium_org/net/base/
sdch_manager.cc 69 const std::string& domain,
76 domain_(domain),
88 terms "domain-match" and "pathmatch" are defined in RFC 2965 [6]. A
91 1. The server's effective host name domain-matches the Domain attribute of
120 bool SdchManager::Dictionary::CanSet(const std::string& domain,
127 1. The dictionary has no Domain attribute.
129 not domain-match the Domain attribute.
130 3. The Domain attribute is a top level domain
518 std::string domain, path; local
    [all...]
  /external/chromium_org/content/public/browser/
devtools_protocol_constants_generator.py 167 for domain in domains:
169 domain_namespace_name = Capitalize(domain["domain"])
170 if "commands" in domain:
171 for command in domain["commands"]:
173 domain_value[command["name"]] = CreateNamespace(domain["domain"],
177 if "events" in domain:
178 for event in domain["events"]:
180 domain_value[event["name"]] = CreateNamespace(domain["domain"]
    [all...]
  /external/dhcpcd/dhcpcd-hooks/
20-resolv.conf 27 domain=$(cd "$resolv_conf_dir"; \
28 key_get_value "domain " ${interfaces})
31 set -- ${domain}
32 unset domain
36 domain="domain $1\n"
58 printf "$domain$search$servers" >> "$cf"
84 conf="${conf}domain $new_domain_name\n"
85 # Support RFC violating search in domain
  /external/mdnsresponder/mDNSShared/
PlatformCommon.c 106 mDNSexport void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled)
113 if (domain) domain->c[0] = 0;
120 if (domain && GetConfigOption(buf, "zone", f) && !MakeDomainNameFromDNSNameString(domain, buf)) goto badf;
132 if (domain && domain->c[0] && buf[0])
135 // for now we assume keyname = service reg domain and we use same key for service and hostname registration
136 err = mDNS_SetSecretForDomain(m, info, domain, domain, buf, NULL, 0, NULL)
    [all...]
  /frameworks/base/core/java/android/net/http/
CertificateChainValidator.java 107 * @param domain The website domain
111 HttpsConnection connection, SSLSocket sslSocket, String domain)
136 return verifyServerDomainAndCertificates((X509Certificate[]) peerCertificates, domain, "RSA");
143 * @param domain The full website hostname and domain
148 byte[][] certChain, String domain, String authType)
167 return verifyServerDomainAndCertificates(serverCertificates, domain, authType);
204 * Calls DomainNamevalidator to verify the domain, and TrustManager to verify the certs.
206 * @param domain The full website hostname and domai
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
GoogleCalendarUriIntentFilter.java 62 * by a space, followed by the calendar email address. The domain is sometimes
87 String domain = null; local
89 // Drop the special one character domain
94 domain = "gmail.com";
97 domain = "group.calendar.google.com";
100 domain = "holiday.calendar.google.com";
103 domain = "import.calendar.google.com";
106 domain = "group.v.calendar.google.com";
109 Log.wtf(TAG, "Unexpected one letter domain: "
113 domain = "%"
    [all...]
  /external/chromium_org/google_apis/gaia/
gaia_auth_util_unittest.cc 63 const char domain[] = "example.com"; local
64 EXPECT_EQ(domain, CanonicalizeDomain("example.com"));
65 EXPECT_EQ(domain, CanonicalizeDomain("EXAMPLE.cOm"));
69 const char domain[] = "example.com"; local
70 EXPECT_EQ(domain, ExtractDomainName("who@example.com"));
71 EXPECT_EQ(domain, ExtractDomainName("who@EXAMPLE.cOm"));

Completed in 1782 milliseconds

1 2 3 4 5 67 8 91011>>