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

1 2

  /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/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...]
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvContentRatingTest.java 31 final String DOMAIN = "android.media.tv";
37 TvContentRating rating = TvContentRating.createRating(DOMAIN, RATING_SYSTEM, MAIN_RATING,
39 assertEquals(DOMAIN, rating.getDomain());
51 final String DOMAIN = "android.media.tv";
57 String flattened = TvContentRating.createRating(DOMAIN, RATING_SYSTEM, MAIN_RATING,
61 assertEquals(DOMAIN, rating.getDomain());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryDumpBroadcastReceiver.java 27 private static final String DOMAIN = "com.android.inputmethod.latin";
28 public static final String DICTIONARY_DUMP_INTENT_ACTION = DOMAIN + ".DICT_DUMP";
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
AbstractClassLoader.java 31 private static java.security.ProtectionDomain DOMAIN ;
35 DOMAIN = (java.security.ProtectionDomain)
92 Class c = super.defineClass(name, b, 0, b.length, DOMAIN);
  /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
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
HostAuth.java 93 HostAuthColumns.PASSWORD, HostAuthColumns.DOMAIN, HostAuthColumns.CLIENT_CERT_ALIAS,
248 values.put(HostAuthColumns.DOMAIN, mDomain);
265 json.putOpt(HostAuthColumns.DOMAIN, mDomain);
286 h.mDomain = json.optString(HostAuthColumns.DOMAIN);
523 * "eas+ssl+trustallcerts://user:password@server/domain:123"
532 String domain = null; local
535 domain = path.substring(1);
537 mDomain = domain;
EmailContent.java     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
math_store.js 31 cvox.SpeechRule.DynamicCstrAttrib.DOMAIN,
42 /** This adds domain to dynamic constraint annotation. */
43 cvox.SpeechRule.DynamicCstrAttrib.DOMAIN = 'domain';
59 // a domain attribute/value pair.
67 * Parses the dynamic constraint for math rules, consisting of a domain and
68 * style information, given as 'domain.style'.
75 throw new cvox.SpeechRule.OutputError('Invalid domain assignment:' + cstr);
82 * Creates a dynamic constraint annotation for math rules from domain and style
84 * @param {string} domain Domain annotation
    [all...]
  /external/smack/src/org/xbill/DNS/
WKSRecord.java 310 /** Domain Name Server */
311 public static final int DOMAIN = 53;
502 services.add(DOMAIN, "domain");
  /packages/apps/Email/tests/src/com/android/emailcommon/provider/
HostAuthTests.java 199 orig.mDomain = "domain";
231 json.put(EmailContent.HostAuthColumns.DOMAIN, "example.com");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
math.h 42 /* Get machine-dependent NAN value (returned for some domain errors). */
339 # define DOMAIN 1
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
math.h 42 /* Get machine-dependent NAN value (returned for some domain errors). */
339 # define DOMAIN 1
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
math.h 2 * This file has no copyright assigned and is placed in the Public Domain.
19 #define _DOMAIN 1 /* domain error in argument */
29 #define DOMAIN _DOMAIN
  /packages/apps/Email/src/com/android/email/provider/
DBHelper.java 570 + HostAuthColumns.DOMAIN + " text, "
    [all...]
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /prebuilts/tools/common/cglib/
cglib-2.2.3.jar 
cglib-nodep-2.2.3.jar 

Completed in 309 milliseconds

1 2