HomeSort by relevance Sort by last modified time
    Searched refs:DOMAIN (Results 1 - 16 of 16) sorted by null

  /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...]
  /external/elfutils/libelf-po/
Makefile 9 # General Public License and is *not* in the public domain.
48 DISTFILES = $(DISTFILES.common) POTFILES.in $(DOMAIN).pot \
60 # Usually the message domain is the same as the package name.
61 DOMAIN = $(PACKAGE)
71 # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
76 # the public domain; in this case the translators are expected to disclaim
102 # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update',
106 $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in
107 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir)
    [all...]
  /external/elfutils/po/
Makefile 9 # General Public License and is *not* in the public domain.
48 DISTFILES = $(DISTFILES.common) POTFILES.in $(DOMAIN).pot \
91 # Usually the message domain is the same as the package name.
92 DOMAIN = $(PACKAGE)
102 # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
107 # the public domain; in this case the translators are expected to disclaim
133 # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update',
137 $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in
138 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java 8 * and are considered to be in the public domain. As a result, a formal
45 private static String DOMAIN = ParameterNames.DOMAIN;
124 else if (nameValue.getName().compareToIgnoreCase(DOMAIN) == 0)
Challenge.java 8 * and are considered to be in the public domain. As a result, a formal
48 private static String DOMAIN = ParameterNames.DOMAIN;
105 * get the domain
109 return (String) authParams.getValue(DOMAIN);
AuthenticationHeader.java 8 * and are considered to be in the public domain. As a result, a formal
52 public static final String DOMAIN = ParameterNames.DOMAIN;
114 || name.equalsIgnoreCase(ParameterNames.DOMAIN)
186 * that a realm string contain a hostname or domain name. Realm strings
367 * Sets the Domain of the WWWAuthenicateHeader to the <var>domain</var>
370 * @param domain -
371 * the new Domain string of this WWWAuthenicateHeader.
374 * while parsing the domain
    [all...]
ParameterNames.java 8 * and are considered to be in the public domain. As a result, a formal
48 public static final String DOMAIN = "domain";
AuthenticationInfo.java 8 * and are considered to be in the public domain. As a result, a formal
220 || name.equalsIgnoreCase(ParameterNames.DOMAIN)
  /external/fdlibm/
k_standard.c 100 exc.type = DOMAIN;
107 (void) WRITE2("acos: DOMAIN error\n", 19);
114 exc.type = DOMAIN;
121 (void) WRITE2("asin: DOMAIN error\n", 19);
130 exc.type = DOMAIN;
137 (void) WRITE2("atan2: DOMAIN error\n", 20);
197 exc.type = DOMAIN; /* should be SING for IEEE */
207 (void) WRITE2("y0: DOMAIN error\n", 17);
214 exc.type = DOMAIN;
224 (void) WRITE2("y0: DOMAIN error\n", 17)
    [all...]
fdlibm.h 92 #define DOMAIN 1
  /external/webkit/LayoutTests/fast/url/script-tests/
standard-url.js 14 ["http://%25DOMAIN:foobar@foodomain.com/", "http://%25DOMAIN:foobar@foodomain.com/"],
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
HostAuth.java 79 HostAuthColumns.PASSWORD, HostAuthColumns.DOMAIN, HostAuthColumns.CLIENT_CERT_ALIAS
192 values.put(HostAuthColumns.DOMAIN, mDomain);
399 * "eas+ssl+trustallcerts://user:password@server/domain:123"
408 String domain = null; local
411 domain = path.substring(1);
413 auth.mDomain = domain;
EmailContent.java     [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
math.h 42 /* Get machine-dependent NAN value (returned for some domain errors). */
328 # define DOMAIN 1
  /frameworks/base/core/java/android/webkit/
CookieManager.java 45 private static final String DOMAIN = "domain";
82 // RFC2109 defines 20 as max cookie count per domain. As we track with base
83 // domain, we allow 50 per base domain
87 // domain, we set 200 as max base domain count
94 // max domain count to limit RAM cookie takes less than 100k,
128 String domain; field in class:CookieManager.Cookie
150 domain = defaultDomain
861 String domain = domains[toGo].toString(); local
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java     [all...]

Completed in 336 milliseconds