Home
last modified time | relevance | path

Searched refs:prevValue (Results 1 – 11 of 11) sorted by relevance

/aosp12/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java60 float prevValue = prevKeyframe.getFloatValue(); in getFloatValue() local
70 prevValue + intervalFraction * (nextValue - prevValue) : in getFloatValue()
71 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)). in getFloatValue()
76 float prevValue = prevKeyframe.getFloatValue(); in getFloatValue() local
86 prevValue + intervalFraction * (nextValue - prevValue) : in getFloatValue()
87 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)). in getFloatValue()
97 float prevValue = prevKeyframe.getFloatValue(); in getFloatValue() local
104 prevValue + intervalFraction * (nextValue - prevValue) : in getFloatValue()
105 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)). in getFloatValue()
H A DIntKeyframeSet.java60 int prevValue = prevKeyframe.getIntValue(); in getIntValue() local
70 prevValue + (int)(intervalFraction * (nextValue - prevValue)) : in getIntValue()
71 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)). in getIntValue()
76 int prevValue = prevKeyframe.getIntValue(); in getIntValue() local
86 prevValue + (int)(intervalFraction * (nextValue - prevValue)) : in getIntValue()
87 … ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).intValue(); in getIntValue()
96 int prevValue = prevKeyframe.getIntValue(); in getIntValue() local
103 prevValue + (int)(intervalFraction * (nextValue - prevValue)) : in getIntValue()
104 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)). in getIntValue()
/aosp12/frameworks/base/services/core/java/com/android/server/vr/
H A DSettingsObserver.java63 void onSettingRestored(String prevValue, String newValue, int userId); in onSettingRestored() argument
76 … String prevValue = intent.getStringExtra(Intent.EXTRA_SETTING_PREVIOUS_VALUE); in SettingsObserver()
78 sendSettingRestored(prevValue, newValue, getSendingUserId()); in SettingsObserver()
138 …private void sendSettingRestored(final String prevValue, final String newValue, final int userId) { in sendSettingRestored() argument
140 l.onSettingRestored(prevValue, newValue, userId); in sendSettingRestored()
H A DEnabledComponentsObserver.java159 public void onSettingRestored(String prevValue, String newValue, int userId) { in onSettingRestored() argument
/aosp12/system/media/camera/docs/
H A DHidlMetadata.mako135 <% prevValue = None %>\
139 % if prevValue is None:
142 /** ${entry.name} enumeration values added since v${prevValue.hal_major_version}.${prevValue.hal_mi…
146 …case} :${' uint32_t' if prevValue is None else '\n @%d.%d::CameraMetadataEnum%s' % (prevVal…
155 <% prevValue = val %>\
/aosp12/frameworks/base/core/java/android/hardware/display/
H A DAmbientBrightnessDayStats.java234 float prevValue = values[0]; in checkSorted() local
236 Preconditions.checkState(prevValue < values[i]); in checkSorted()
237 prevValue = values[i]; in checkSorted()
/aosp12/system/tools/hidl/
H A DEnumType.cpp68 EnumValue* prevValue = nullptr; in resolveInheritance() local
73 prevValue = type->values().back(); in resolveInheritance()
79 value->autofill(prevType, prevValue, mStorageType->resolveToScalarType()); in resolveInheritance()
81 prevValue = value; in resolveInheritance()
820 void EnumValue::autofill(const EnumType* prevType, EnumValue* prevValue, const ScalarType* type) { in autofill() argument
824 CHECK((prevType == nullptr) == (prevValue == nullptr)); in autofill()
827 if (prevValue == nullptr) { in autofill()
830 std::string description = prevType->fullName() + "." + prevValue->name() + " implicitly"; in autofill()
832 Reference<LocalIdentifier>(prevValue->mName, prevValue, mLocation), description); in autofill()
H A DEnumType.h158 void autofill(const EnumType* prevType, EnumValue* prevValue, const ScalarType* type);
/aosp12/build/make/tools/product_config/src/com/android/build/config/
H A DFlattenConfig.java366 final Value prevValue = mVariables.get(varName); in assertVarType() local
367 if (prevValue != null in assertVarType()
368 && prevValue.getVarType() != VarType.UNKNOWN) { in assertVarType()
373 + " prevValue=" + Value.debugString(prevValue)); in assertVarType()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DUserRestrictionsUtils.java505 final boolean prevValue = prevRestrictions.getBoolean(key); in applyUserRestrictions()
507 if (newValue != prevValue) { in applyUserRestrictions()
/aosp12/frameworks/base/services/core/java/com/android/server/
H A DBluetoothManagerService.java438 final String prevValue =
444 "ACTION_SETTING_RESTORED with BLUETOOTH_ON, prevValue=" + prevValue
448 if ((newValue != null) && (prevValue != null) && !prevValue.equals(newValue)) {