HomeSort by relevance Sort by last modified time
    Searched refs:firstValue (Results 1 - 25 of 60) 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.
81 void createMap(Thread t, T firstValue) {
82 t.inheritableThreadLocals = new ThreadLocalMap(this, firstValue);
ThreadLocal.java 221 * @param firstValue value for the initial entry of the map
224 void createMap(Thread t, T firstValue) {
225 t.threadLocals = new ThreadLocalMap(this, firstValue);
324 * Construct a new map initially containing (firstKey, firstValue).
328 ThreadLocalMap(ThreadLocal firstKey, Object firstValue) {
331 table[i] = new Entry(firstKey, firstValue);
  /frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
SettingsProviderPerformanceTest.java 49 String firstValue = getStringViaFrontEndApiSetting(SETTING_TYPE_GLOBAL,
51 assertEquals("Setting value didn't change", FAKE_SETTING_VALUE, firstValue);
92 String firstValue = getStringViaFrontEndApiSetting(SETTING_TYPE_GLOBAL,
94 assertEquals("Setting value didn't change", FAKE_SETTING_VALUE, firstValue);
SettingsProviderTest.java 200 String firstValue = queryStringViaProviderApi(SETTING_TYPE_SYSTEM, FAKE_SETTING_NAME,
202 assertEquals("Setting must be present", FAKE_SETTING_VALUE, firstValue);
221 String firstValue = queryStringViaProviderApi(type, FAKE_SETTING_NAME, true, false);
222 assertEquals("Setting must be present", FAKE_SETTING_VALUE, firstValue);
262 String firstValue = queryStringViaProviderApi(type, FAKE_SETTING_NAME);
263 assertEquals("First setting must be present", FAKE_SETTING_VALUE, firstValue);
  /frameworks/base/core/java/android/animation/
FloatKeyframeSet.java 34 private float firstValue;
70 firstValue = ((FloatKeyframe) mKeyframes.get(0)).getFloatValue();
72 deltaValue = lastValue - firstValue;
78 return firstValue + fraction * deltaValue;
80 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).floatValue();
IntKeyframeSet.java 34 private int firstValue;
70 firstValue = ((IntKeyframe) mKeyframes.get(0)).getIntValue();
72 deltaValue = lastValue - firstValue;
78 return firstValue + (int)(fraction * deltaValue);
80 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).intValue();
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
CollectorUtil.java 166 boolean firstValue = true;
168 if (!firstValue) {
171 firstValue = false;
  /packages/apps/Messaging/src/com/android/messaging/util/
OsUtil.java 171 boolean firstValue = true;
173 if (firstValue) {
174 firstValue = false;
  /external/icu/icu4c/source/test/intltest/
simplepatternformattertest.cpp 249 UnicodeString firstValue;
250 UnicodeString *params[] = {&firstValue};
253 firstValue, appendTo, status);
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
BooleanArray.java 131 boolean firstValue = items[first];
133 items[second] = firstValue;
ByteArray.java 139 byte firstValue = items[first];
141 items[second] = firstValue;
CharArray.java 139 char firstValue = items[first];
141 items[second] = firstValue;
IntArray.java 139 int firstValue = items[first];
141 items[second] = firstValue;
LongArray.java 139 long firstValue = items[first];
141 items[second] = firstValue;
ShortArray.java 146 short firstValue = items[first];
148 items[second] = firstValue;
FloatArray.java 139 float firstValue = items[first];
141 items[second] = firstValue;
  /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 

Completed in 1690 milliseconds

1 2 3