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

1 2 3

  /external/tpm2/
Entropy.c 24 extern int firstValue;
31 // a startup indication and firstValue should be reset.
48 firstValue = 1;
54 if(firstValue)
55 firstValue = 0;
PlatformData.c 32 int firstValue;
PlatformData.h 39 extern int firstValue;
  /libcore/ojluni/src/main/java/java/lang/
InheritableThreadLocal.java 78 * @param firstValue value for the initial entry of the table.
80 void createMap(Thread t, T firstValue) {
81 t.inheritableThreadLocals = new ThreadLocalMap(this, firstValue);
ThreadLocal.java 241 * @param firstValue value for the initial entry of the map
243 void createMap(Thread t, T firstValue) {
244 t.threadLocals = new ThreadLocalMap(this, firstValue);
361 * Construct a new map initially containing (firstKey, firstValue).
365 ThreadLocalMap(ThreadLocal<?> firstKey, Object firstValue) {
368 table[i] = new Entry(firstKey, firstValue);
  /libcore/support/src/test/java/tests/util/
SummaryStatistics.java 28 private Double firstValue = null;
43 if (firstValue == null) {
44 firstValue = new Double(value);
47 shiftedSquaresSum += square(value - firstValue);
58 double shiftedMean = (sum - numValues * firstValue) / numValues;
  /frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
SettingsProviderPerformanceTest.java 54 String firstValue = getStringViaFrontEndApiSetting(SETTING_TYPE_GLOBAL,
56 assertEquals("Setting value didn't change", FAKE_SETTING_VALUE, firstValue);
98 String firstValue = getStringViaFrontEndApiSetting(SETTING_TYPE_GLOBAL,
100 assertEquals("Setting value didn't change", FAKE_SETTING_VALUE, firstValue);
SettingsProviderTest.java 234 String firstValue = queryStringViaProviderApi(SETTING_TYPE_SYSTEM, FAKE_SETTING_NAME,
236 assertEquals("Setting must be present", FAKE_SETTING_VALUE, firstValue);
477 String firstValue = queryStringViaProviderApi(type, FAKE_SETTING_NAME, true, false);
478 assertEquals("Setting must be present", FAKE_SETTING_VALUE, firstValue);
518 String firstValue = queryStringViaProviderApi(type, FAKE_SETTING_NAME);
519 assertEquals("First setting must be present", FAKE_SETTING_VALUE, firstValue);
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
CollectorUtil.java 168 boolean firstValue = true;
170 if (!firstValue) {
173 firstValue = false;
  /packages/apps/Messaging/src/com/android/messaging/util/
OsUtil.java 171 boolean firstValue = true;
173 if (firstValue) {
174 firstValue = false;
  /frameworks/support/compat/tests/java/android/support/v4/content/res/
FontResourcesParserCompatTest.java 114 String firstValue = Base64.encodeToString(firstSet.get(0), Base64.DEFAULT).trim();
115 assertEquals("MIIEqDCCA5CgAwIBAgIJANWFuGx9", firstValue);
128 String firstValue = Base64.encodeToString(firstSet.get(0), Base64.DEFAULT).trim();
129 assertEquals("MIIEqDCCA5CgAwIBAgIJANWFuGx9", firstValue);
  /frameworks/support/compat/tests/java/android/support/v4/util/
ArrayMapCompatTest.java 113 String firstValue = iterator.next();
114 assertTrue(expectedValuesToIterate.remove(firstValue));
  /external/icu/icu4c/source/test/intltest/
simpleformattertest.cpp 251 UnicodeString firstValue;
252 UnicodeString *params[] = {&firstValue};
255 firstValue, appendTo, status);
ucharstrietest.cpp 829 int32_t firstValue=USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1;
833 firstValue!=(USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1) ||
843 firstValue=USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1;
847 firstValue!=(USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1) ||
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/media/tests/
CameraPerformanceTest.java 657 boolean firstValue = true;
659 if (!firstValue) {
662 firstValue = false;
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNormalizer.java 616 String firstValue = dcRightsArray.getChild(1).getValue();
618 firstValue, null);
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.1.1/
javawriter-2.1.1.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.2.1/
javawriter-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.5.0/
javawriter-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.5.1/
javawriter-2.5.1.jar 
  /prebuilts/tools/common/offline-m2/com/squareup/javawriter/2.5.0/
javawriter-2.5.0.jar 
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
CharsTrieTest.java 707 int firstValue=firstResult.hasValue() ? trie.getValue() : -1;
711 firstValue!=(firstResult.hasValue() ? trie.getValue() : -1) ||
721 firstValue=firstResult.hasValue() ? trie.getValue() : -1;
725 firstValue!=(firstResult.hasValue() ? trie.getValue() : -1) ||
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
CharsTrieTest.java 706 int firstValue=firstResult.hasValue() ? trie.getValue() : -1;
710 firstValue!=(firstResult.hasValue() ? trie.getValue() : -1) ||
720 firstValue=firstResult.hasValue() ? trie.getValue() : -1;
724 firstValue!=(firstResult.hasValue() ? trie.getValue() : -1) ||
    [all...]
  /external/icu/icu4c/source/common/
uloc_tag.c     [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduParser.java     [all...]

Completed in 1852 milliseconds

1 2 3