HomeSort by relevance Sort by last modified time
    Searched defs:domain (Results 26 - 50 of 344) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
loop.h 50 * cloog_loop_generate), the domain is the whole iteration domain of a given
53 * - if the loop comes as a result of a cloog_loop_generate call, the domain
65 CloogDomain * domain ; /**< The iteration domain. */ member in struct:cloogloop
66 CloogDomain *unsimplified; /**< Unsimplified version of domain. */
98 CloogLoop *cloog_loop_from_domain(CloogState *state, CloogDomain *domain,
union_domain.h 15 CloogDomain *domain; /**< An element of the list. */ member in struct:cloognameddomainlist
16 CloogScattering *scattering; /**< Scattering function for domain. */
17 char *name; /**< Name of the domain. */
29 CloogNamedDomainList *domain; member in struct:clooguniondomain
40 const char *name, CloogDomain *domain, CloogScattering *scattering,
  /system/core/fastbootd/
network_discovery.c 50 const char *name, const char *regtype, const char *domain, void *context)
60 printf("Got a reply for service %s.%s%s: ", name, regtype, domain);
79 const char *domain = FASTBOOTD_DOMAIN; local
93 name, type, domain, host, port,
  /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_org/chrome/browser/chromeos/policy/
device_local_account.cc 67 const std::string domain = gaia::ExtractDomainName(user_id); local
68 if (!EndsWith(domain, kDeviceLocalAccountDomainSuffix, true))
71 const std::string domain_prefix = domain.substr(
72 0, domain.size() - arraysize(kDeviceLocalAccountDomainSuffix) + 1);
  /external/chromium_org/chrome/browser/extensions/api/cookies/
cookies_unittest.cc 32 const char* domain; member in struct:extensions::__anon8203::DomainMatchCase
89 EXPECT_EQ("www.foobar.com", cookie1->domain);
168 tests[i].domain,
  /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/chrome/browser/resources/
connection_manager.js 23 'domain': location.href,
  /external/chromium_org/components/policy/core/common/cloud/
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/third_party/WebKit/Source/platform/
Cookie.h 40 Cookie(const String& name, const String& value, const String& domain,
45 , domain(domain)
56 String domain; member in struct:WebCore::Cookie
67 return StringHash::hash(key.name) + StringHash::hash(key.domain) + StringHash::hash(key.path) + key.secure;
72 return a.name == b.name && a.domain == b.domain && a.path == b.path && a.secure == b.secure;
  /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/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_transfer.h 7 unsigned domain; member in struct:nv30_rect
31 struct nouveau_bo *, unsigned offset, unsigned domain,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_queryobj.c 168 uint32_t domain; local
175 if (radeon_bo_is_busy(query->bo, &domain) == 0) {
  /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/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/mesa3d/src/gallium/drivers/nv30/
nv30_transfer.h 7 unsigned domain; member in struct:nv30_rect
31 struct nouveau_bo *, unsigned offset, unsigned domain,
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_queryobj.c 168 uint32_t domain; local
175 if (radeon_bo_is_busy(query->bo, &domain) == 0) {
  /packages/apps/UnifiedEmail/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_org/components/policy/core/browser/
managed_bookmarks_tracker.cc 88 std::string domain = get_management_domain_callback_.Run(); local
89 if (domain.empty()) {
94 IDS_BOOKMARK_BAR_MANAGED_FOLDER_DOMAIN_NAME, base::UTF8ToUTF16(domain));
  /external/chromium_org/content/browser/devtools/
devtools_browser_target.cc 30 const std::string& domain,
35 DCHECK(handlers_.find(domain) == handlers_.end());
36 handlers_[domain] = handler;
38 handle_on_ui_thread_.insert(domain);
60 DomainHandlerMap::iterator it = handlers_.find(command->domain());
66 std::string domain = command->domain(); local
67 DomainMap::iterator jt = used_domains.find(domain);
69 used_domains[domain] = this;
73 domain.c_str())
    [all...]
  /external/chromium_org/net/cert/
x509_util_nss_unittest.cc 79 void VerifyDomainBoundCert(const std::string& domain,
87 (unsigned char*)domain.data(),
88 static_cast<unsigned int>(domain.size())
144 // This test creates a domain-bound cert and an EC private key and
148 std::string domain = "weborigin.com"; local
154 domain, 1,
160 VerifyDomainBoundCert(domain, der_cert);
x509_util_openssl_unittest.cc 42 // Verify the attributes of a domain-bound certificate.
43 // |domain| is the bound domain name.
45 void VerifyDomainBoundCert(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...]

Completed in 1558 milliseconds

12 3 4 5 6 7 8 91011>>