HomeSort by relevance Sort by last modified time
    Searched defs:DOMAIN (Results 1 - 11 of 11) 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/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";
  /external/fdlibm/
fdlibm.h 92 #define DOMAIN 1
  /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...]
  /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/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java     [all...]

Completed in 765 milliseconds