HomeSort by relevance Sort by last modified time
    Searched full:domain (Results 51 - 75 of 5361) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/sepolicy/
rild.te 2 type rild, domain;
runas.te 1 type runas, domain;
tee.te 4 type tee, domain;
watchdogd.te 2 type watchdogd, domain;
wpa_supplicant.te 2 type wpa, domain;
te_macros 10 # Old domain may exec the file and transition to the new domain.
13 # New domain is entered by executing the file.
15 # New domain can send SIGCHLD to its caller.
36 # file_type_trans(domain, dir_type, file_type)
37 # Allow domain to create a file labeled file_type in a
44 # Allow the domain to add entries to the directory.
46 # Allow the domain to create the file.
52 # file_type_auto_trans(domain, dir_type, file_type)
54 # they are created by domain in directories labeled dir_type
    [all...]
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/include/gcc/darwin/4.2/
stdarg.h 1 /* This file is public domain. */
varargs.h 1 /* This file is public domain. */
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/machine/
internal_types.h 2 /* Public domain */
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/machine/
internal_types.h 2 /* Public domain */
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/machine/
internal_types.h 2 /* Public domain */
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/machine/
internal_types.h 2 /* Public domain */
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/machine/
internal_types.h 2 /* Public domain */
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/machine/
internal_types.h 2 /* Public domain */
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/machine/
internal_types.h 2 /* Public domain */
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/machine/
internal_types.h 2 /* Public domain */
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/machine/
internal_types.h 2 /* Public domain */
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/machine/
internal_types.h 2 /* Public domain */
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965DomainAttributeHandler.java 44 * <tt>"Domain"</tt> cookie attribute handler for RFC 2965 cookie spec.
57 * Parse cookie domain attribute.
59 public void parse(final SetCookie cookie, String domain)
64 if (domain == null) {
66 "Missing value for domain attribute");
68 if (domain.trim().length() == 0) {
70 "Blank value for domain attribute");
72 domain = domain.toLowerCase(Locale.ENGLISH);
73 if (!domain.startsWith("."))
    [all...]
RFC2109DomainHandler.java 53 throw new MalformedCookieException("Missing value for domain attribute");
56 throw new MalformedCookieException("Blank value for domain attribute");
70 String domain = cookie.getDomain(); local
71 if (domain == null) {
72 throw new MalformedCookieException("Cookie domain may not be null");
74 if (!domain.equals(host)) {
75 int dotIndex = domain.indexOf('.');
77 throw new MalformedCookieException("Domain attribute \""
78 + domain
82 // domain must start with do
119 String domain = cookie.getDomain(); local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
Ease.java 22 private static final float DOMAIN = 1.0f;
37 return DOMAIN*(input/=DURATION)*input*input + START;
42 return DOMAIN*((input=input/DURATION-1)*input*input + 1) + START;
48 (DOMAIN/2*input*input*input + START)
49 : (DOMAIN/2*((input-=2)*input*input + 2) + START);
57 return DOMAIN*(input/=DURATION)*input + START;
62 return -DOMAIN *(input/=DURATION)*(input-2) + START;
68 (DOMAIN/2*input*input + START)
69 : (-DOMAIN/2 * ((--input)*(input-2) - 1) + START);
77 return DOMAIN*(input/=DURATION)*input*input*input + START
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
Ease.java 22 private static final float DOMAIN = 1.0f;
37 return DOMAIN*(input/=DURATION)*input*input + START;
42 return DOMAIN*((input=input/DURATION-1)*input*input + 1) + START;
48 (DOMAIN/2*input*input*input + START)
49 : (DOMAIN/2*((input-=2)*input*input + 2) + START);
57 return DOMAIN*(input/=DURATION)*input + START;
62 return -DOMAIN *(input/=DURATION)*(input-2) + START;
68 (DOMAIN/2*input*input + START)
69 : (-DOMAIN/2 * ((--input)*(input-2) - 1) + START);
77 return DOMAIN*(input/=DURATION)*input*input*input + START
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
Ease.java 22 private static final float DOMAIN = 1.0f;
37 return DOMAIN*(input/=DURATION)*input*input + START;
42 return DOMAIN*((input=input/DURATION-1)*input*input + 1) + START;
48 (DOMAIN/2*input*input*input + START)
49 : (DOMAIN/2*((input-=2)*input*input + 2) + START);
57 return DOMAIN*(input/=DURATION)*input + START;
62 return -DOMAIN *(input/=DURATION)*(input-2) + START;
68 (DOMAIN/2*input*input + START)
69 : (-DOMAIN/2 * ((--input)*(input-2) - 1) + START);
77 return DOMAIN*(input/=DURATION)*input*input*input + START
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/cookies/
manager.html 42 // Compares cookies for "key" (name, domain, etc.) equality, but not "value"
45 return (c1.name == c2.name) && (c1.domain == c2.domain) &&
76 var domain = cookie.domain;
77 if (!this.cookies_[domain]) {
78 this.cookies_[domain] = [];
80 this.cookies_[domain].push(cookie);
84 var domain = cookie.domain;
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/
manager.js 22 // Compares cookies for "key" (name, domain, etc.) equality, but not "value"
25 return (c1.name == c2.name) && (c1.domain == c2.domain) &&
56 var domain = cookie.domain;
57 if (!this.cookies_[domain]) {
58 this.cookies_[domain] = [];
60 this.cookies_[domain].push(cookie);
64 var domain = cookie.domain;
    [all...]

Completed in 698 milliseconds

1 23 4 5 6 7 8 91011>>