/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
socket.c | 10 int socket(int domain, int type, int protocol) { 11 return ki_socket(domain, type, protocol);
|
socketpair.c | 10 int socketpair(int domain, int type, int protocol, int* sv) { 11 return ki_socketpair(domain, type, protocol, sv);
|
/external/chromium_org/third_party/smhasher/ |
README.chromium | 5 License: MIT, Public Domain 13 Licenses are MIT (SMHasher) and Public Domain (MurmurHash).
|
/external/libsepol/tests/policies/test-deps/ |
module.conf | 6 attribute domain; 12 type new_t, domain;
|
/external/sepolicy/ |
init.te | 1 # init switches to init domain (via init.rc). 2 type init, domain;
|
seapp_contexts | 25 # domain (string) 29 # Only entries that specify domain= will be used for app process labeling. 35 isSystemServer=true domain=system 36 user=system domain=system_app type=system_data_file 37 user=bluetooth domain=bluetooth type=bluetooth_data_file 38 user=nfc domain=nfc type=nfc_data_file 39 user=radio domain=radio type=radio_data_file 40 user=_app domain=untrusted_app type=app_data_file levelFrom=none 41 user=_app seinfo=platform domain=platform_app type=platform_app_data_file 42 user=_app seinfo=shared domain=shared_app type=platform_app_data_fil [all...] |
/external/chromium_org/ppapi/shared_impl/ |
file_path.h | 19 enum Domain { 29 PepperFilePath(Domain d, const base::FilePath& p); 31 Domain domain() const { return domain_; } function in class:ppapi::PepperFilePath 35 Domain domain_;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_netrc.py | 22 machine host1.domain.com login log1 password pass1 account acct1 25 self.assertEqual(nrc.hosts['host1.domain.com'], 44 self.assertEqual(nrc.hosts['host.domain.com'], ('log', 'acct', passwd)) 48 machine host.domain.com login log password #pass account acct 53 machine host.domain.com login log password pass# account acct 58 machine host.domain.com login log password pa#ss account acct 63 self.assertEqual(nrc.hosts['foo.domain.com'], ('bar', None, passwd)) 64 self.assertEqual(nrc.hosts['bar.domain.com'], ('foo', None, 'pass')) 69 machine foo.domain.com login bar password pass 70 machine bar.domain.com login foo password pas [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_netrc.py | 22 machine host1.domain.com login log1 password pass1 account acct1 25 self.assertEqual(nrc.hosts['host1.domain.com'], 44 self.assertEqual(nrc.hosts['host.domain.com'], ('log', 'acct', passwd)) 48 machine host.domain.com login log password #pass account acct 53 machine host.domain.com login log password pass# account acct 58 machine host.domain.com login log password pa#ss account acct 63 self.assertEqual(nrc.hosts['foo.domain.com'], ('bar', None, passwd)) 64 self.assertEqual(nrc.hosts['bar.domain.com'], ('foo', None, 'pass')) 69 machine foo.domain.com login bar password pass 70 machine bar.domain.com login foo password pas [all...] |
/external/apache-http/src/org/apache/http/impl/cookie/ |
BasicDomainHandler.java | 51 throw new MalformedCookieException("Missing value for domain attribute"); 54 throw new MalformedCookieException("Blank value for domain attribute"); 67 // Validate the cookies domain attribute. NOTE: Domains without 69 // have DNS names. Since they have no dots, to domain-match the 70 // request-host and domain must be identical for the cookie to sent 73 String domain = cookie.getDomain(); local 74 if (domain == null) { 75 throw new MalformedCookieException("Cookie domain may not be null"); 79 // A Set-Cookie2 with Domain=ajax.com will be accepted. 81 // domain must match hos 109 String domain = cookie.getDomain(); local [all...] |
NetscapeDomainHandler.java | 52 String domain = cookie.getDomain(); local 54 int domainParts = new StringTokenizer(domain, ".").countTokens(); 56 if (isSpecialDomain(domain)) { 58 throw new MalformedCookieException("Domain attribute \"" 59 + domain 65 throw new MalformedCookieException("Domain attribute \"" 66 + domain 74 * Checks if the given domain is in one of the seven special 76 * @param domain The domain 99 String domain = cookie.getDomain(); local [all...] |
/external/chromium_org/third_party/skia/src/gpu/effects/ |
GrTextureDomainEffect.cpp | 56 const char* domain; local 58 kVec4f_GrSLType, "TexDom", &domain); 62 coords, domain, domain); 89 coords, domain, domain, domain); 91 coords, domain, domain, domain); 111 const SkRect& domain = texDom.domain(); local 229 SkRect domain; local [all...] |
GrTextureDomainEffect.h | 17 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped 18 * the edge of the domain or result in a vec4 of zeros. The domain is clipped to normalized texture 19 * coords ([0,1]x[0,1] square). Bilinear filtering can cause texels outside the domain to affect the 20 * read value unless the caller considers this when calculating the domain. TODO: This should be a 29 * outside of the domain is user-specifiable. Decal mode currently has a hard (non-lerped) 39 const SkRect& domain, 53 const SkRect& domain() const { return fTextureDomain; } function in class:GrTextureDomainEffect 56 /* Computes a domain that bounds all the texels in texelRect. Note that with bilerp enable [all...] |
/external/skia/src/gpu/effects/ |
GrTextureDomainEffect.cpp | 56 const char* domain; local 58 kVec4f_GrSLType, "TexDom", &domain); 62 coords, domain, domain); 89 coords, domain, domain, domain); 91 coords, domain, domain, domain); 111 const SkRect& domain = texDom.domain(); local 229 SkRect domain; local [all...] |
GrTextureDomainEffect.h | 17 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped 18 * the edge of the domain or result in a vec4 of zeros. The domain is clipped to normalized texture 19 * coords ([0,1]x[0,1] square). Bilinear filtering can cause texels outside the domain to affect the 20 * read value unless the caller considers this when calculating the domain. TODO: This should be a 29 * outside of the domain is user-specifiable. Decal mode currently has a hard (non-lerped) 39 const SkRect& domain, 53 const SkRect& domain() const { return fTextureDomain; } function in class:GrTextureDomainEffect 56 /* Computes a domain that bounds all the texels in texelRect. Note that with bilerp enable [all...] |
/external/llvm/test/CodeGen/Generic/ |
badFoldGEP.ll | 13 %Domain = type { i8*, i32, i32*, i32, i32, i32*, %Domain* } 14 @domain_array = external global [497 x %Domain] ; <[497 x %Domain]*> [#uses=2] 16 declare void @opaque([497 x %Domain]*) 20 call void @opaque( [497 x %Domain]* @domain_array ) 22 %reg841 = getelementptr [497 x %Domain]* @domain_array, i64 0, i64 %cann-indvar-idxcast, i32 3 ; <i32*> [#uses=1]
|
/external/guava/guava-tests/test/com/google/common/net/ |
InternetDomainNameTest.java | 50 * A domain part which is valid under lenient validation, but invalid under 216 final InternetDomainName domain = InternetDomainName.from(name); local 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); local 226 assertFalse(name, domain.isPublicSuffix()) 234 final InternetDomainName domain = InternetDomainName.from(name); local 243 final InternetDomainName domain = InternetDomainName.from(name); local 252 final InternetDomainName domain = InternetDomainName.from(name); local 263 final InternetDomainName domain = InternetDomainName.from(name); local 290 InternetDomainName domain = InternetDomainName.from("foo.com"); local 353 InternetDomainName domain = InternetDomainName.from(inputName); local 373 InternetDomainName domain = InternetDomainName.from("foo.nhs.uk"); local [all...] |
/bionic/libc/arch-arm/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/bionic/libc/arch-mips/include/machine/ |
internal_types.h | 2 /* Public domain */
|
setjmp.h | 3 /* Public domain */
|
/bionic/libc/private/ |
ctype_private.h | 2 /* Written by Marc Espie, public domain */
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
w_drem.c | 5 * Placed into the Public Domain, 1994.
|
/development/ndk/platforms/android-3/arch-arm/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/development/ndk/platforms/android-9/arch-mips/include/machine/ |
internal_types.h | 2 /* Public domain */
|
setjmp.h | 3 /* Public domain */
|