Searched refs:domain (Results 26 - 50 of 721) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/impl/cookie/
H A DRFC2965DomainAttributeHandler.java62 * Parse cookie domain attribute.
64 public void parse(final SetCookie cookie, String domain) argument
69 if (domain == null) {
71 "Missing value for domain attribute");
73 if (domain.trim().length() == 0) {
75 "Blank value for domain attribute");
77 domain = domain.toLowerCase(Locale.ENGLISH);
78 if (!domain.startsWith(".")) {
82 // That effectively implies that the domain attribut
104 domainMatch(String host, String domain) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DInspectorBackend.js62 * @param {string} domain
64 _addAgentGetterMethodToProtocolAgentsPrototype: function(domain)
67 while (upperCaseLength < domain.length && domain[upperCaseLength].toLowerCase() !== domain[upperCaseLength])
70 var methodName = domain.substr(0, upperCaseLength).toLowerCase() + domain.slice(upperCaseLength) + "Agent";
77 return this._agentsMap[domain];
87 this.registerDispatcher(domain, dispatcher)
90 window.Protocol.Agents.prototype["register" + domain
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
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/chromium_org/third_party/WebKit/Source/platform/
H A DCookie.h40 Cookie(const String& name, const String& value, const String& domain, argument
45 , domain(domain)
56 String domain; member in struct:blink::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/components/policy/core/common/
H A Dpolicy_service_stub.h22 virtual void AddObserver(PolicyDomain domain,
25 virtual void RemoveObserver(PolicyDomain domain,
31 virtual bool IsInitializationComplete(PolicyDomain domain) const OVERRIDE;
H A Dpolicy_service_impl.cc74 for (int domain = 0; domain < POLICY_DOMAIN_SIZE; ++domain)
75 initialization_complete_[domain] = true;
80 for (int domain = 0; domain < POLICY_DOMAIN_SIZE; ++domain) {
81 initialization_complete_[domain] &=
82 provider->IsInitializationComplete(static_cast<PolicyDomain>(domain));
96 void PolicyServiceImpl::AddObserver(PolicyDomain domain, argument
104 RemoveObserver(PolicyDomain domain, PolicyService::Observer* observer) argument
[all...]
H A Dpolicy_namespace.h16 // 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/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 DRegularContiguousSet.java39 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { argument
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
174 final DiscreteDomain<C> domain; field in class:RegularContiguousSet.SerializedForm
176 SerializedForm(Range<C> range, DiscreteDomain<C> domain) argument
[all...]
/external/e2fsprogs/intl/
H A Dloadmsgcat.c772 struct loaded_domain *domain,
784 domain->codeset_cntr =
787 domain->conv = (__gconv_t) -1;
790 domain->conv = (iconv_t) -1;
793 domain->conv_tab = NULL;
848 if (__gconv_open (outcharset, charset, &domain->conv,
851 domain->conv = (__gconv_t) -1;
868 domain->conv = iconv_open (outcharset, charset);
874 domain->conv = iconv_open (outcharset, charset);
889 _nl_free_domain_conv (struct loaded_domain *domain) argument
771 _nl_init_domain_conv(struct loaded_l10nfile *domain_file, struct loaded_domain *domain, struct binding *domainbinding) argument
921 struct loaded_domain *domain; local
1400 _nl_unload_domain(struct loaded_domain *domain) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dstub_enterprise_install_attributes.cc19 void StubEnterpriseInstallAttributes::SetDomain(const std::string& domain) { argument
20 registration_domain_ = domain;
37 const std::string& domain,
43 attributes->SetDomain(domain);
36 ScopedStubEnterpriseInstallAttributes( const std::string& domain, const std::string& registration_user, const std::string& device_id, DeviceMode mode) argument
H A Dstub_enterprise_install_attributes.h23 void SetDomain(const std::string& domain);
35 ScopedStubEnterpriseInstallAttributes(const std::string& domain,
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DInspectorDatabaseResource.cpp40 PassRefPtrWillBeRawPtr<InspectorDatabaseResource> InspectorDatabaseResource::create(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) argument
42 return adoptRefWillBeNoop(new InspectorDatabaseResource(database, domain, name, version));
45 InspectorDatabaseResource::InspectorDatabaseResource(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) argument
48 , m_domain(domain)
/external/libsepol/tests/policies/test-deps/
H A Dmodule.conf6 attribute domain;
12 type new_t, domain;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dnav_math_description.js27 * domain: (undefined|string),
31 * domain Domain for translation.
42 mathDescr['domain'] = kwargs.domain ? kwargs.domain : '';
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
H A Dmathml_store.js29 * @param {string} domain Domain annotation of the rule.
32 cvox.MathmlStore.prototype.defineMathmlRule = function(name, domain, rule) {
33 this.defineRule(name, domain, rule, 'self::mathml:' + name);
38 * Adds a new MathML speech rule for the default.default domain.
/external/libcxx/test/diagnostics/std.exceptions/domain.error/
H A DAndroid.mk17 test_makefile := external/libcxx/test/diagnostics/std.exceptions/domain.error/Android.mk
19 test_name := diagnostics/std.exceptions/domain.error/domain_error
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dudhcpd-p2p.conf88 option domain atherosowl.com
103 #opt domain
/external/chromium_org/components/domain_reliability/
H A Dbake_in_configs.py55 def domain_is_whitelisted(domain):
56 return any(domain == e or domain.endswith('.' + e) for e in DOMAIN_WHITELIST)
96 domain = config['monitored_domain']
97 if not domain_is_whitelisted(domain):
99 (json_file, domain))
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrBicubicEffect.h34 const GrTextureDomain& domain() const { return fDomain; } function in class:GrBicubicEffect
37 * Create a simple filter effect with custom bicubic coefficients and optional domain.
40 const SkRect* domain = NULL) {
41 if (NULL == domain) {
49 *domain));
72 * Create a Mitchell filter effect with a texture matrix and a domain.
75 const SkRect& domain) {
76 return SkNEW_ARGS(GrBicubicEffect, (tex, gMitchellCoefficients, matrix, domain));
93 const SkMatrix &matrix, const SkRect& domain);
74 Create(GrTexture* tex, const SkMatrix& matrix, const SkRect& domain) argument
/external/skia/src/gpu/effects/
H A DGrBicubicEffect.h35 const GrTextureDomain& domain() const { return fDomain; } function in class:GrBicubicEffect
38 * Create a simple filter effect with custom bicubic coefficients and optional domain.
41 const SkRect* domain = NULL) {
42 if (NULL == domain) {
49 *domain)));
73 * Create a Mitchell filter effect with a texture matrix and a domain.
75 static GrEffectRef* Create(GrTexture* tex, const SkMatrix& matrix, const SkRect& domain) { argument
77 domain)));
95 const SkMatrix &matrix, const SkRect& domain);
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dmost_visited_thumbnail.js29 var domain = document.createElement('div');
30 domain.textContent = data.domain;
31 link.appendChild(domain);
56 // If no external thumbnail fallback (etfb), and have domain.
57 if (!params.etfb && data.domain) {
72 } else if (data.domain) {
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebURLError.cpp50 domain = error.domain();
65 ResourceError resourceError = ResourceError(domain, reason, String::fromUTF8(spec.data(), spec.length()), localizedDescription);
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen_terms_of_service.js19 * being shown belong to |domain|.
20 * @param {string} domain The domain whose Terms of Service are being shown.
22 setDomain: function(domain) {
24 loadTimeData.getStringF('termsOfServiceScreenHeading', domain);
26 loadTimeData.getStringF('termsOfServiceScreenSubheading', domain);
28 loadTimeData.getStringF('termsOfServiceContentHeading', domain);

Completed in 734 milliseconds

1234567891011>>