Searched refs:lastValue (Results 1 – 8 of 8) sorted by relevance
73 typename std::iterator_traits<I>::pointer lastValue = nullptr; in isIncreasing() local78 lastValue = &(*iter); in isIncreasing()81 if (getField(*iter) < getField(*lastValue)) { in isIncreasing()83 << pos << ", " << getField(*iter) << " < " << getField(*lastValue); in isIncreasing()
117 double lastValue = _mMin; in contains() local121 if (T(lastValue + MIN_STEP / 2) == value) { in contains()124 double nextValue = fma(lastValue, base, _mStep); in contains()125 if (nextValue <= lastValue || nextValue > _mMax) { in contains()128 lastValue = nextValue; in contains()
159 static void android_os_Parcel_restoreAllowFds(jlong nativePtr, jboolean lastValue) in android_os_Parcel_restoreAllowFds() argument163 parcel->restoreAllowFds((bool)lastValue); in android_os_Parcel_restoreAllowFds()
293 private static native void nativeRestoreAllowFds(long nativePtr, boolean lastValue); in nativeRestoreAllowFds() argument541 public final void restoreAllowFds(boolean lastValue) { in restoreAllowFds() argument542 nativeRestoreAllowFds(mNativePtr, lastValue); in restoreAllowFds()
500 void Parcel::restoreAllowFds(bool lastValue) in restoreAllowFds() argument502 mAllowFds = lastValue; in restoreAllowFds()
83 void restoreAllowFds(bool lastValue);
1092 final boolean lastValue = lastValues.get(network.netId, false); in updateCapabilityChange()1093 final boolean changed = (lastValue != newValue) || lastValues.indexOfKey(network.netId) < 0; in updateCapabilityChange()