HomeSort by relevance Sort by last modified time
    Searched refs:domain (Results 76 - 100 of 706) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
bitops-bits-in-byte.js 1 // Copyright (c) 2004 by Arthur Langereis (arthur_ext at domain xfinitegames, tld com)
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
bitops-bits-in-byte.js 1 // Copyright (c) 2004 by Arthur Langereis (arthur_ext at domain xfinitegames, tld com)
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseClient.cpp 56 void DatabaseClient::didOpenDatabase(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version)
59 m_inspectorAgent->didOpenDatabase(database, domain, name, version);
InspectorDatabaseResource.h 46 static PassRefPtrWillBeRawPtr<InspectorDatabaseResource> create(PassRefPtrWillBeRawPtr<Database>, const String& domain, const String& name, const String& version);
55 InspectorDatabaseResource(PassRefPtrWillBeRawPtr<Database>, const String& domain, const String& name, const String& version);
  /external/chromium_org/chrome/browser/browsing_data/
mock_browsing_data_flash_lso_helper.h 24 // Adds a domain sample.
25 void AddFlashLSODomain(const std::string& domain);
30 // Returns true if the domain list is empty.
  /external/chromium_org/components/policy/core/common/cloud/
component_cloud_policy_store.h 47 static bool SupportsDomain(PolicyDomain domain);
49 // Returns true if |domain| can be managed by this store; in that case, the
50 // dm_protocol policy type that corresponds to |domain| is stored in
52 static bool GetPolicyType(PolicyDomain domain, std::string* policy_type);
54 // Returns true if |policy_type| corresponds to a policy domain that can be
55 // managed by this store; in that case, the domain constants is assigned to
56 // |domain|. Otherwise returns false.
58 PolicyDomain* domain);
93 // Deletes the storage of all components of |domain| that pass then given
95 void Purge(PolicyDomain domain,
    [all...]
component_cloud_policy_updater.cc 104 const std::string domain = base::IntToString(ns.domain); local
105 const std::string size = base::IntToString(domain.size());
106 return size + ":" + domain + ":" + ns.component_id;
  /external/chromium_org/components/policy/core/common/
mock_configuration_policy_provider.h 26 MOCK_CONST_METHOD1(IsInitializationComplete, bool(PolicyDomain domain));
policy_provider_android.h 37 virtual bool IsInitializationComplete(PolicyDomain domain) const OVERRIDE;
schema_registry.h 65 // Register a list of components for a given domain.
66 virtual void RegisterComponents(PolicyDomain domain,
74 // This indicates that the initial components for |domain| have all been
75 // registered. It must be invoked at least once for each policy domain;
76 // subsequent calls for the same domain are ignored.
77 void SetReady(PolicyDomain domain);
110 virtual void RegisterComponents(PolicyDomain domain,
142 virtual void RegisterComponents(PolicyDomain domain,
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/content/common/
cookie_data.cc 21 domain(c.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/dhcpcd/dhcpcd-hooks/
20-dns.conf 36 setprop dhcp.${interface}.domain "${new_domain_name}$separator${new_domain_search}"
45 setprop dhcp.${interface}.domain ""
  /external/dnsmasq/src/
dbus.c 105 char *domain; local
175 dbus_message_iter_get_basic(&iter, &domain);
179 domain = NULL;
188 if (!(serv->flags & SERV_HAS_DOMAIN) && !domain)
194 domain &&
195 hostname_isequal(domain, serv->domain))
207 if (domain)
208 serv->domain = whine_malloc(strlen(domain)+1)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_transfer.h 10 unsigned domain; member in struct:nv50_m2mf_rect
  /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...]

Completed in 9246 milliseconds

1 2 34 5 6 7 8 91011>>