HomeSort by relevance Sort by last modified time
    Searched defs:domain (Results 1 - 25 of 715) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/eap_common/
eap_common.h 16 const u8 *domain; member in struct:erp_tlvs
  /external/skia/src/gpu/effects/
GrBicubicEffect.h 29 const GrTextureDomain& domain() const { return fDomain; } function in class:GrBicubicEffect
42 * Create a Mitchell filter effect with a texture matrix and a domain.
46 const SkRect& domain) {
48 domain));
64 GrBicubicEffect(sk_sp<GrTextureProxy>, const SkMatrix &matrix, const SkRect& domain);
  /external/skqp/src/gpu/effects/
GrBicubicEffect.h 29 const GrTextureDomain& domain() const { return fDomain; } function in class:GrBicubicEffect
42 * Create a Mitchell filter effect with a texture matrix and a domain.
46 const SkRect& domain) {
48 domain));
64 GrBicubicEffect(sk_sp<GrTextureProxy>, const SkMatrix &matrix, const SkRect& domain);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
domain.h 5 ** domain.h **
58 CloogDomain *domain; /**< An element of the list. */ member in struct:cloogdomainlist
85 CloogDomain * cloog_domain_simple_convex(CloogDomain * domain);
100 void cloog_domain_print_structure(FILE *file, CloogDomain *domain, int level,
116 CloogScattering *cloog_domain_read_scattering(CloogDomain *domain, FILE *foo);
138 int cloog_domain_can_stride(CloogDomain *domain, int level);
139 int cloog_domain_is_otl(CloogDomain *domain, int level);
140 CloogDomain * cloog_domain_stride_lower_bound(CloogDomain *domain, int level,
142 CloogDomain * cloog_domain_add_stride_constraint(CloogDomain *domain,
144 int cloog_domain_can_unroll(CloogDomain *domain, int level
    [all...]
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,
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicDomainHandler.java 57 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(); local
80 if (domain == null) {
81 throw new MalformedCookieException("Cookie domain may not be null");
85 // A Set-Cookie2 with Domain=ajax.com will be accepted.
87 // domain must match hos
115 String domain = cookie.getDomain(); local
    [all...]
NetscapeDomainHandler.java 58 String domain = cookie.getDomain(); local
60 int domainParts = new StringTokenizer(domain, ".").countTokens();
62 if (isSpecialDomain(domain)) {
64 throw new MalformedCookieException("Domain attribute \""
65 + domain
71 throw new MalformedCookieException("Domain attribute \""
72 + domain
80 * Checks if the given domain is in one of the seven special
82 * @param domain The domain
105 String domain = cookie.getDomain(); local
    [all...]
RFC2109DomainHandler.java 59 throw new MalformedCookieException("Missing value for domain attribute");
62 throw new MalformedCookieException("Blank value for domain attribute");
76 String domain = cookie.getDomain(); local
77 if (domain == null) {
78 throw new MalformedCookieException("Cookie domain may not be null");
80 if (!domain.equals(host)) {
81 int dotIndex = domain.indexOf('.');
83 throw new MalformedCookieException("Domain attribute \""
84 + domain
88 // domain must start with do
125 String domain = cookie.getDomain(); local
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
InternetDomainNameTest.java 46 * A domain part which is valid under lenient validation, but invalid under
213 final InternetDomainName domain = InternetDomainName.from(name); local
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); local
223 assertFalse(name, domain.isPublicSuffix())
231 final InternetDomainName domain = InternetDomainName.from(name); local
240 final InternetDomainName domain = InternetDomainName.from(name); local
249 final InternetDomainName domain = InternetDomainName.from(name); local
260 final InternetDomainName domain = InternetDomainName.from(name); local
287 InternetDomainName domain = InternetDomainName.from("foo.com"); local
348 InternetDomainName domain = InternetDomainName.from(inputName); local
368 InternetDomainName domain = InternetDomainName.from("foo.teledata.mz"); local
380 InternetDomainName domain = InternetDomainName.from("www.essex.sch.uk"); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/net/
InternetDomainNameTest.java 48 * A domain part which is valid under lenient validation, but invalid under
215 final InternetDomainName domain = InternetDomainName.from(name); local
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); local
225 assertFalse(name, domain.isPublicSuffix())
233 final InternetDomainName domain = InternetDomainName.from(name); local
242 final InternetDomainName domain = InternetDomainName.from(name); local
251 final InternetDomainName domain = InternetDomainName.from(name); local
262 final InternetDomainName domain = InternetDomainName.from(name); local
289 InternetDomainName domain = InternetDomainName.from("foo.com"); local
350 InternetDomainName domain = InternetDomainName.from(inputName); local
370 InternetDomainName domain = InternetDomainName.from("foo.teledata.mz"); local
382 InternetDomainName domain = InternetDomainName.from("www.essex.sch.uk"); local
    [all...]
  /external/libbrillo/brillo/dbus/
utils.cc 31 // Special case for "dbus" error domain.
42 // Format error string as "domain/code:message".
58 // Each part should be in format of "domain/code:message"
65 std::string domain = part.substr(0, slash_pos); local
68 errors.emplace_back(domain, code, message);
  /external/libexif/test/nls/
test-nls.c 67 const char *domain = textdomain(GETTEXT_PACKAGE); local
68 printf("message domain: %s\n", domain);
  /external/ltp/testcases/kernel/syscalls/socket/
socket01.c 36 int domain; member in struct:test_case_t
43 {0, SOCK_STREAM, 0, -1, EAFNOSUPPORT, "invalid domain"},
45 {PF_UNIX, SOCK_DGRAM, 0, 0, 0, "UNIX domain dgram"},
59 TEST(fd = socket(tc->domain, tc->type, tc->proto));
  /external/ltp/testcases/kernel/syscalls/socketpair/
socketpair01.c 37 int domain; member in struct:test_case_t
45 {0, SOCK_STREAM, 0, fds, -1, EAFNOSUPPORT, "invalid domain"},
47 {PF_UNIX, SOCK_DGRAM, 0, fds, 0, 0, "UNIX domain dgram"},
63 TEST(socketpair(tc->domain, tc->type, tc->proto, tc->sv));
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_transfer.h 10 unsigned domain; member in struct:nv50_m2mf_rect
  /external/ppp/pppd/plugins/rp-pppoe/
if.c 101 int domain, stype; local
112 domain = PF_PACKET;
115 domain = PF_INET;
119 if ((fd = socket(domain, stype, htons(type))) < 0) {
  /external/webrtc/webrtc/libjingle/xmpp/
jid.h 21 // consists of three parts: the node, the domain and the resource, e.g.:
23 // node@domain/resource
26 // a domain. A bare jid is defined to not have a resource and a full jid
38 const std::string & domain() const { return domain_name_; } function in class:buzz::Jid
66 static std::string PrepDomain(const std::string& domain, bool* valid);
67 static void PrepDomain(const std::string& domain,
mucroomlookuptask.h 22 std::string domain; member in struct:buzz::MucRoomInfo
26 return name + "@" + domain;
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostbynis.c 64 static char *domain = (char *)NULL; local
76 if (domain == (char *)NULL)
77 if (yp_get_default_domain (&domain))
80 if (yp_match(domain, map, name, strlen(name), &result, &resultlen))
getnetbynis.c 63 static char *domain = (char *)NULL; local
75 if (domain == (char *)NULL)
76 if (yp_get_default_domain (&domain))
79 if (yp_match(domain, map, name, strlen(name), &result, &resultlen))
  /external/apache-http/src/org/apache/http/auth/
NTUserPrincipal.java 52 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;
    [all...]
  /external/curl/lib/
curl_sspi.c 133 * userp [in] - The user name in the format User or Domain\User.
144 xcharp_u domain, dup_domain; local
148 domain.const_tchar_ptr = TEXT("");
162 domain.tchar_ptr = useranddomain.tchar_ptr;
168 domain.const_tchar_ptr = TEXT("");
182 /* Setup the identity's domain and length */
188 _tcsncpy(dup_domain.tchar_ptr, domain.tchar_ptr, domlen);
190 identity->Domain = dup_domain.tbyte_ptr;
231 Curl_safefree(identity->Domain);
  /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.toString());
107 "Domain name does not have a recognized public suffix: " + host)
    [all...]
  /external/guava/guava/src/com/google/thirdparty/publicsuffix/
TrieParser.java 27 * Parser for a map of reversed domain names stored as a serialized radix tree.
84 String domain = PREFIX_JOINER.join(stack); local
85 if (domain.length() > 0) {
86 builder.put(domain, PublicSuffixType.fromCode(c));

Completed in 466 milliseconds

1 2 3 4 5 6 7 8 91011>>