Searched defs:domain (Results 76 - 100 of 332) sorted by relevance

1234567891011>>

/external/chromium_org/components/policy/core/browser/
H A Dmanaged_bookmarks_tracker.cc89 std::string domain = get_management_domain_callback_.Run(); local
90 if (domain.empty()) {
95 IDS_BOOKMARK_BAR_MANAGED_FOLDER_DOMAIN_NAME, base::UTF8ToUTF16(domain));
/external/chromium_org/components/policy/core/common/
H A Dconfig_dir_policy_loader.cc180 // for that domain/component namespace.
188 // Helper to lookup a domain given its string name.
195 LOG(WARNING) << "Unsupported 3rd party policy domain: "
207 PolicyDomain domain = supported_domains[domains_it.key()]; local
219 bundle->Get(PolicyNamespace(domain, components_it.key()))
H A Dpolicy_test_utils.cc196 std::ostream& operator<<(std::ostream& os, policy::PolicyDomain domain) { argument
197 switch (domain) {
207 os << "POLICY_DOMAIN_UNKNOWN(" << int(domain) << ")";
237 os << ns.domain << "/" << ns.component_id;
/external/chromium_org/content/browser/devtools/
H A Ddevtools_browser_target.cc29 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
28 RegisterDomainHandler( const std::string& domain, DevToolsProtocol::Handler* handler, bool handle_on_ui_thread) argument
[all...]
H A Ddevtools_protocol.h30 std::string domain() { return domain_; } function in class:content::DevToolsProtocol::Message
/external/chromium_org/net/cert/
H A Dx509_util_nss_unittest.cc79 void VerifyChannelID(const std::string& domain, argument
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 VerifyChannelID(domain, der_cert);
/external/chromium_org/net/cookies/
H A Dcanonical_cookie.cc65 // Determine the cookie domain to use for setting the specified cookie.
114 const std::string& domain, const std::string& path,
121 domain_(domain),
144 // Do the best we can with the domain.
252 const std::string& domain,
268 std::string parsed_domain = ParsedCookie::ParseValueString(domain);
269 if (parsed_domain != domain)
336 // Can domain match in two ways; as a domain cookie (where the cookie
337 // domain begin
112 CanonicalCookie( const GURL& url, const std::string& name, const std::string& value, const std::string& domain, const std::string& path, const base::Time& creation, const base::Time& expiration, const base::Time& last_access, bool secure, bool httponly, CookiePriority priority) argument
[all...]
H A Dcookie_util.cc43 // If no domain was specified in the domain string, default to a host cookie.
44 // We match IE/Firefox in allowing a domain=IPADDR if it matches the url
53 // Get the normalized domain specified in cookie line.
61 // Ensure |url| and |cookie_domain| have the same domain+registry.
66 return false; // IP addresses/intranet hosts can't set domain cookies.
70 return false; // Can't set a cookie on a different domain + registry.
73 // we know the domain+registry are the same from the above checks, this is
204 GURL CookieOriginToURL(const std::string& domain, bool is_https) { argument
205 if (domain
[all...]
/external/chromium_org/net/http/
H A Dhttp_security_headers_unittest.cc507 std::string domain = "docs.google.com"; local
510 state.GetStaticDomainState(domain, &static_domain_state));
525 EXPECT_TRUE(state.AddHPKPHeader(domain, header, ssl_info));
530 domain, &new_static_domain_state));
538 EXPECT_TRUE(state.GetDynamicDomainState(domain, &dynamic_domain_state));
553 EXPECT_TRUE(state.HasPublicKeyPins(domain));
559 domain, is_issued_by_known_root, hashes, &failure_log));
562 EXPECT_TRUE(state.GetDynamicDomainState(domain, &new_dynamic_domain_state));
587 std::string domain = "docs.google.com"; local
590 state.GetStaticDomainState(domain,
670 std::string domain = "accounts.google.com"; local
[all...]
H A Dtransport_security_state.h131 // hard-fail behavior (e.g. if HSTS is set for the domain).
139 // The domain which matched during a search for this DomainState entry.
141 std::string domain; member in class:net::TransportSecurityState::DomainState
/external/chromium_org/net/tools/tld_cleanup/
H A Dtld_cleanup_util.cc27 // Writes the list of domain rules contained in the 'rules' set to the
75 NormalizeResult NormalizeRule(std::string* domain, Rule* rule) { argument
79 if (domain->at(0) == '.')
80 domain->erase(0, 1);
81 if (domain->empty()) {
85 if (domain->at(domain->size() - 1) == '.')
86 domain->erase(domain->size() - 1, 1);
87 if (domain
137 std::string domain; local
[all...]
/external/chromium_org/rlz/win/lib/
H A Dprocess_info.cc23 std::wstring* domain,
27 // Get the current username & domain the hard way. (GetUserNameEx would be
28 // nice, but unfortunately requires connectivity to a domain controller.
73 if (domain != NULL) {
74 *domain = domain_name;
153 static std::wstring domain; local
156 CHECK(SUCCEEDED(GetCurrentUser(&name, &domain, &sid)));
22 GetCurrentUser(std::wstring* name, std::wstring* domain, std::wstring* sid) argument
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DSecurityOrigin.h74 // Set the domain property of this security origin to newDomain. This
76 // domain. The caller is responsible for validating newDomain.
82 String domain() const { return m_domain; } function in class:blink::SecurityOrigin
175 // Marks a file:// origin as being in a domain defined by its path.
183 // the value of the SecurityOrigin's domain property.
198 // This method checks for equality, ignoring the value of document.domain
/external/chromium_org/third_party/skia/include/gpu/
H A DGrResourceKey.h93 void init(const GrCacheID::Domain domain, argument
104 memcpy(k + kCacheIDDomainOffset, &domain, sizeof(GrCacheID::Domain));
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrTextureDomain.h19 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped
20 * the edge of the domain or result in a vec4 of zeros (decal mode). The domain is clipped to
22 * domain to affect the read value unless the caller considers this when calculating the domain.
27 // Ignore the texture domain rectangle.
29 // Clamp texture coords to the domain rectangle.
31 // Treat the area outside the domain rectangle as fully transparent.
34 // read texels outside of the domain
54 const SkRect& domain() const { return fDomain; } function in class:GrTextureDomain
120 DomainKey(const GrTextureDomain& domain) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DCut.java49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); argument
50 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); argument
55 abstract C leastValueAbove(DiscreteDomain<C> domain); argument
56 abstract C greatestValueBelow(DiscreteDomain<C> domain); argument
62 Cut<C> canonical(DiscreteDomain<C> domain) { argument
132 DiscreteDomain<Comparable<?>> domain) {
136 DiscreteDomain<Comparable<?>> domain) {
146 DiscreteDomain<Comparable<?>> domain) {
147 return domain.minValue();
150 DiscreteDomain<Comparable<?>> domain) {
131 withLowerBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
135 withUpperBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
145 leastValueAbove( DiscreteDomain<Comparable<?>> domain) argument
149 greatestValueBelow( DiscreteDomain<Comparable<?>> domain) argument
153 canonical( DiscreteDomain<Comparable<?>> domain) argument
197 withLowerBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
201 withUpperBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
211 leastValueAbove( DiscreteDomain<Comparable<?>> domain) argument
215 greatestValueBelow( DiscreteDomain<Comparable<?>> domain) argument
246 withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
257 withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
274 leastValueAbove(DiscreteDomain<C> domain) argument
277 greatestValueBelow(DiscreteDomain<C> domain) argument
304 withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
315 withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
332 leastValueAbove(DiscreteDomain<C> domain) argument
335 greatestValueBelow(DiscreteDomain<C> domain) argument
338 canonical(DiscreteDomain<C> domain) argument
[all...]
H A DEmptyContiguousSet.java33 EmptyContiguousSet(DiscreteDomain<C> domain) { argument
34 super(domain);
113 private final DiscreteDomain<C> domain; field in class:EmptyContiguousSet.SerializedForm
115 private SerializedForm(DiscreteDomain<C> domain) { argument
116 this.domain = domain;
120 return new EmptyContiguousSet<C>(domain);
129 return new SerializedForm<C>(domain);
H A DRange.java37 * (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) { argument
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)
449 canonical(DiscreteDomain<C> domain) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEmptyContiguousSet.java31 EmptyContiguousSet(DiscreteDomain<C> domain) { argument
32 super(domain);
H A DRegularContiguousSet.java37 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { argument
38 super(domain);
45 .asSet(domain);
50 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
57 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
63 .asSet(domain);
72 return equalsOrThrow(previous, last) ? null : domain.next(previous);
86 return range.lowerBound.leastValueAbove(domain);
90 return range.upperBound.greatestValueBelow(domain);
94 long distance = domain
[all...]
/external/guava/guava-tests/test/com/google/common/net/
H A DInternetDomainNameTest.java50 * A domain part which is valid under lenient validation, but invalid under
216 final InternetDomainName domain = InternetDomainName.from(name);
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);
226 assertFalse(name, domain
391 idn(String domain) argument
[all...]
/external/javassist/src/main/javassist/
H A DLoader.java140 private ProtectionDomain domain; field in class:Loader
188 domain = null;
208 * Sets the protection domain for the classes handled by this class
209 * loader. Without registering an appropriate protection domain,
214 domain = d;
378 if (domain == null)
381 return defineClass(name, classfile, 0, classfile.length, domain);
/external/javassist/src/main/javassist/scopedpool/
H A DScopedClassPool.java291 public Class toClass(CtClass ct, ClassLoader loader, ProtectionDomain domain) argument
306 return super.toClass(ct, getClassLoader0(), domain);
/external/libvorbis/doc/
H A D04-codec.tex102 codebook configurations, time-domain transform configurations
120 \paragraph{Time domain transforms}
570 domain PCM audio via an inverse Modified Discrete Cosine Transform
/external/mdnsresponder/mDNSPosix/
H A DClient.c46 domainname domain; local
57 DeconstructServiceName(&answer->rdata->u.name, &name, &type, &domain);
61 ConvertDomainNameToCString(&domain, domainC);
69 fprintf(stderr, "*** %s name = '%s', type = '%s', domain = '%s'\n", state, nameC, typeC, domainC);
105 "Usage: %s [-v level] [-t type] [-d domain]\n",
112 fprintf(stderr, " -d uses 'domain' as the domain to browse (default is '%s')\n", kDefaultDomain);
176 // mDNS query, looking for all AFP servers in the local domain.
182 domainname domain; local
197 MakeDomainNameFromDNSNameString(&domain, gServiceDomai
[all...]

Completed in 9364 milliseconds

1234567891011>>