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

1 2 3 4 5 6 7

  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestEventHandler.java 33 private @Nullable T lastValue;
40 lastValue = event;
45 assertEquals(expected, lastValue);
61 return lastValue;
66 lastValue = null;
TestEventListener.java 34 private @Nullable T lastValue;
40 lastValue = event;
44 assertEquals(expected, lastValue);
56 return lastValue;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ParallaxEffect.java 311 int lastValue = 0;
332 // Implies lastValue is less than lastMarkerValue and lastValue is not
335 fraction = (float) (lastMarkerValue - lastValue)
345 } else if (lastValue != IntProperty.UNKNOWN_BEFORE) {
349 lastMarkerValue = lastMarkerValue + (currentValue - lastValue);
362 lastValue = currentValue;
406 float lastValue = 0;
426 // Implies lastValue is less than lastMarkerValue and lastValue is no
    [all...]
  /external/guava/guava/src/com/google/common/collect/
TreeBasedTable.java 329 C lastValue;
336 lastValue != null && comparator.compare(next, lastValue) == 0;
340 lastValue = next;
341 return lastValue;
345 lastValue = null; // clear reference to unused data
  /frameworks/hardware/interfaces/sensorservice/1.0/vts/functional/
VtsHalSensorManagerV1_0TargetTest.cpp 73 typename std::iterator_traits<I>::pointer lastValue = nullptr;
78 lastValue = &(*iter);
81 if (getField(*iter) < getField(*lastValue)) {
83 << pos << ", " << getField(*iter) << " < " << getField(*lastValue);
  /cts/tests/tests/media/src/android/media/cts/
ParamsTest.java 101 float lastValue = 2.f; /* some initial value to avoid compile error */
109 lastValue = f;
123 assertEquals(lastValue, p.getTolerance(), FLOAT_TOLERANCE);
259 float lastValue = 2.f; /* some initial value to avoid compile error */
267 lastValue = f;
281 assertEquals(lastValue, p.getPitch(), FLOAT_TOLERANCE);
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationTest.java 169 float lastValue = 0.0f;
172 assertTrue(alphaValue >= lastValue);
175 lastValue = alphaValue;
  /external/tpm2/
CryptoEngine.h 149 UINT32 lastValue[4]; // used when the TPM does continuous self-test
  /system/core/libutils/tests/
LruCache_test.cpp 113 EntryRemovedCallback() : callbackCount(0), lastKey(-1), lastValue(NULL) { }
118 lastValue = v;
122 StringValue lastValue;
312 EXPECT_STREQ("one", callback.lastValue);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 287 int lastValue = -1;
290 if (currentValue <= lastValue) {
293 lastValue = currentValue;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
FastFourierTransformer.java 707 Complex lastValue = (Complex) lastDimension[vector[dimensionSize.length - 1]];
710 return lastValue;
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java     [all...]
  /external/deqp/modules/gles31/functional/
es31fAtomicCounterTests.cpp 714 const deUint32 lastValue = initialValue + (spec.useBranches ? spec.threadCount*spec.callCount - spec.threadCount*spec.callCount/2 : 0) - (spec.useBranches ? spec.threadCount*spec.callCount/2 : 0);
763 if (incrementCounts[pos] > 0 && pos >= (int)(lastValue - minValue))
788 if (minValue + pos != lastValue)
    [all...]
  /frameworks/base/core/jni/
android_os_Parcel.cpp 159 static void android_os_Parcel_restoreAllowFds(jlong nativePtr, jboolean lastValue)
163 parcel->restoreAllowFds((bool)lastValue);
  /frameworks/base/core/java/android/os/
Parcel.java 282 private static native void nativeRestoreAllowFds(long nativePtr, boolean lastValue);
511 public final void restoreAllowFds(boolean lastValue) {
512 nativeRestoreAllowFds(mNativePtr, lastValue);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java     [all...]
  /external/protobuf/js/binary/
decoder.js 191 var lastValue = this.nextValue_;
207 return lastValue;
  /frameworks/native/libs/binder/include/binder/
Parcel.h 79 void restoreAllowFds(bool lastValue);
    [all...]
  /prebuilts/tools/common/m2/repository/com/nineoldandroids/library/2.4.0/
library-2.4.0.jar 
  /frameworks/native/libs/binder/
Parcel.cpp 585 void Parcel::restoreAllowFds(bool lastValue)
587 mAllowFds = lastValue;
    [all...]
  /external/clang/include/clang/AST/
Decl.h 608 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
Decl.h 608 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
Decl.h 608 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
Decl.h 608 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
Decl.h 608 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue; }
    [all...]

Completed in 1278 milliseconds

1 2 3 4 5 6 7