Searched refs:domain (Results 1 - 25 of 331) sorted by relevance

1234567891011>>

/external/mdnsresponder/mDNSPosix/
H A Dnss_mdns.conf4 domain local
5 domain 254.169.in-addr.arpa
6 domain 8.e.f.ip6.int
7 domain 9.e.f.ip6.int
8 domain a.e.f.ip6.int
9 domain b.e.f.ip6.int
10 domain 8.e.f.ip6.arpa
11 domain 9.e.f.ip6.arpa
12 domain a.e.f.ip6.arpa
13 domain
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicDomainHandler.java57 throw new MalformedCookieException("Missing value for domain attribute");
60 throw new MalformedCookieException("Blank value for domain attribute");
73 // Validate the cookies domain attribute. NOTE: Domains without
75 // have DNS names. Since they have no dots, to domain-match the
76 // request-host and domain must be identical for the cookie to sent
79 String domain = cookie.getDomain();
80 if (domain == null) {
81 throw new MalformedCookieException("Cookie domain may not be null");
87 // domain must match host
88 if (!host.endsWith(domain)) {
[all...]
H A DRFC2109DomainHandler.java59 throw new MalformedCookieException("Missing value for domain attribute");
62 throw new MalformedCookieException("Blank value for domain attribute");
76 String domain = cookie.getDomain();
77 if (domain == null) {
78 throw new MalformedCookieException("Cookie domain may not be null");
80 if (!domain.equals(host)) {
81 int dotIndex = domain.indexOf('.');
84 + domain
88 // domain must start with dot
89 if (!domain
[all...]
H A DNetscapeDomainHandler.java58 String domain = cookie.getDomain();
60 int domainParts = new StringTokenizer(domain, ".").countTokens();
62 if (isSpecialDomain(domain)) {
65 + domain
72 + domain
80 * Checks if the given domain is in one of the seven special
82 * @param domain The domain.
83 * @return True if the specified domain is "special"
85 private static boolean isSpecialDomain(final String domain) { argument
[all...]
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/apache-http/src/org/apache/http/auth/
H A DNTUserPrincipal.java52 private final String domain; field in class:NTUserPrincipal
56 final String domain,
63 if (domain != null) {
64 this.domain = domain.toUpperCase(Locale.ENGLISH);
66 this.domain = null;
68 if (this.domain != null && this.domain.length() > 0) {
70 buffer.append(this.domain);
84 return this.domain;
55 NTUserPrincipal( final String domain, final String username) argument
[all...]
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
H A DInternetDomainNameTest.java46 * A domain part which is valid under lenient validation, but invalid under
213 final InternetDomainName domain = InternetDomainName.from(name);
214 assertTrue(name, domain.isPublicSuffix());
215 assertTrue(name, domain.hasPublicSuffix());
216 assertFalse(name, domain.isUnderPublicSuffix());
217 assertFalse(name, domain.isTopPrivateDomain());
218 assertEquals(domain, domain.publicSuffix());
222 final InternetDomainName domain = InternetDomainName.from(name);
223 assertFalse(name, domain
396 idn(String domain) argument
[all...]
/external/mdnsresponder/mDNSShared/
H A DPlatformCommon.h18 extern void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled);
/external/guava/guava-tests/test/com/google/common/net/
H A DInternetDomainNameTest.java48 * A domain part which is valid under lenient validation, but invalid under
215 final InternetDomainName domain = InternetDomainName.from(name);
216 assertTrue(name, domain.isPublicSuffix());
217 assertTrue(name, domain.hasPublicSuffix());
218 assertFalse(name, domain.isUnderPublicSuffix());
219 assertFalse(name, domain.isTopPrivateDomain());
220 assertEquals(domain, domain.publicSuffix());
224 final InternetDomainName domain = InternetDomainName.from(name);
225 assertFalse(name, domain
398 idn(String domain) argument
[all...]
/external/clang/test/Sema/
H A Dmemset-invalid-1.c9 void mt_query_for_domain(const char *domain) argument
/external/skia/src/gpu/effects/
H A DGrTextureDomain.cpp15 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index) argument
19 if (domain.contains(kFullRect) && kClamp_Mode == mode) {
27 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
29 SkASSERT(domain.fLeft <= domain.fRight);
30 SkASSERT(domain.fTop <= domain.fBottom);
31 fDomain.fLeft = SkScalarPin(domain.fLeft, kFullRect.fLeft, kFullRect.fRight);
32 fDomain.fRight = SkScalarPin(domain.fRight, kFullRect.fLeft, kFullRect.fRight);
33 fDomain.fTop = SkScalarPin(domain
88 const char* domain = fDomainName.c_str(); local
198 const GrTextureDomain& domain = textureDomainEffect.textureDomain(); local
208 const GrTextureDomain& domain = textureDomainEffect.textureDomain(); local
214 const GrTextureDomain& domain = processor.cast<GrTextureDomainEffect>().textureDomain(); local
221 Create(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
242 GrTextureDomainEffect(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
295 SkRect domain; local
[all...]
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/apache-http/src/org/apache/http/impl/auth/
H A DNTLMEngine.java50 * Generates a Type1 message given the domain and workstation.
52 * @param domain Optional Windows domain name. Can be <code>null</code>.
59 String domain,
68 * @param domain Windows domain name
77 String domain,
58 generateType1Msg( String domain, String workstation) argument
74 generateType3Msg( String username, String password, String domain, String workstation, String challenge) argument
/external/toybox/lib/
H A Dnet.c3 int xsocket(int domain, int type, int protocol) argument
5 int fd = socket(domain, type, protocol);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DContiguousSet.java41 * Returns a {@code ContiguousSet} containing the same values in the given domain
44 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if
50 Range<C> range, DiscreteDomain<C> domain) {
52 checkNotNull(domain);
56 effectiveRange = effectiveRange.intersection(Range.atLeast(domain.minValue()));
59 effectiveRange = effectiveRange.intersection(Range.atMost(domain.maxValue()));
68 range.lowerBound.leastValueAbove(domain),
69 range.upperBound.greatestValueBelow(domain)) > 0;
72 ? new EmptyContiguousSet<C>(domain)
73 : new RegularContiguousSet<C>(effectiveRange, domain);
49 create( Range<C> range, DiscreteDomain<C> domain) argument
76 final DiscreteDomain<C> domain; field in class:ContiguousSet
78 ContiguousSet(DiscreteDomain<C> domain) argument
[all...]
H A DRegularContiguousSet.java37 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { argument
38 super(domain);
44 ? ContiguousSet.create(range.intersection(other), domain)
45 : new EmptyContiguousSet<C>(domain);
56 return new EmptyContiguousSet<C>(domain);
73 return equalsOrThrow(previous, last) ? null : domain.next(previous);
87 return range.lowerBound.leastValueAbove(domain);
91 return range.upperBound.greatestValueBelow(domain);
95 long distance = domain.distance(first(), last());
120 checkArgument(this.domain
[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
200 withLowerBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
204 withUpperBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
214 leastValueAbove( DiscreteDomain<Comparable<?>> domain) argument
218 greatestValueBelow( DiscreteDomain<Comparable<?>> domain) argument
252 withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
263 withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
280 leastValueAbove(DiscreteDomain<C> domain) argument
283 greatestValueBelow(DiscreteDomain<C> domain) argument
313 withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
324 withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
341 leastValueAbove(DiscreteDomain<C> domain) argument
344 greatestValueBelow(DiscreteDomain<C> domain) argument
347 canonical(DiscreteDomain<C> domain) argument
[all...]
H A DRegularContiguousSet.java39 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { argument
40 super(domain);
46 ? ContiguousSet.create(range.intersection(other), domain)
47 : new EmptyContiguousSet<C>(domain);
58 return new EmptyContiguousSet<C>(domain);
71 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
80 return equalsOrThrow(previous, last) ? null : domain.next(previous);
92 return equalsOrThrow(previous, first) ? null : domain.previous(previous);
106 return range.lowerBound.leastValueAbove(domain);
110 return range.upperBound.greatestValueBelow(domain);
181 final DiscreteDomain<C> domain; field in class:RegularContiguousSet.SerializedForm
183 SerializedForm(Range<C> range, DiscreteDomain<C> domain) argument
[all...]
H A DContiguousSet.java44 * Returns a {@code ContiguousSet} containing the same values in the given domain
47 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if
53 Range<C> range, DiscreteDomain<C> domain) {
55 checkNotNull(domain);
59 effectiveRange = effectiveRange.intersection(Range.atLeast(domain.minValue()));
62 effectiveRange = effectiveRange.intersection(Range.atMost(domain.maxValue()));
71 range.lowerBound.leastValueAbove(domain),
72 range.upperBound.greatestValueBelow(domain)) > 0;
75 ? new EmptyContiguousSet<C>(domain)
76 : new RegularContiguousSet<C>(effectiveRange, domain);
52 create( Range<C> range, DiscreteDomain<C> domain) argument
79 final DiscreteDomain<C> domain; field in class:ContiguousSet
81 ContiguousSet(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/selinux/libsepol/tests/policies/test-deps/
H A Dmodule.conf6 attribute domain;
12 type new_t, domain;
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dudhcpd-p2p.conf88 option domain atherosowl.com
103 #opt domain
/external/jetty/src/java/org/eclipse/jetty/util/
H A DHostMap.java75 * hostname by taking into account the domain suffix matches.
86 String domain = host.trim();
89 domains.add(domain);
90 if ((idx = domain.indexOf('.')) > 0)
92 domain = domain.substring(idx+1);
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Durlmap.py37 Parses a path expression like 'domain foobar.com port 20 /' or
42 domain = port = path = None
44 if parts[0] == 'domain':
47 raise ValueError("'domain' must be followed with a domain name")
48 if domain:
49 raise ValueError("'domain' given twice")
50 domain = parts.pop(0)
64 if domain:
65 s = 'http://%s' % domain
[all...]
/external/jetty/src/java/org/eclipse/jetty/http/
H A DHttpCookie.java49 public HttpCookie(String name, String value, String domain, String path) argument
55 _domain = domain;
80 public HttpCookie(String name, String value, String domain, String path, int maxAge, boolean httpOnly, boolean secure) argument
84 _domain = domain;
95 public HttpCookie(String name, String value, String domain, String path, int maxAge, boolean httpOnly, boolean secure, String comment, int version) argument
99 _domain = domain;
137 /** Get the domain.
138 * @return the domain

Completed in 849 milliseconds

1234567891011>>