Home
last modified time | relevance | path

Searched refs:mExpectedValue (Results 1 – 5 of 5) sorted by relevance

/cts/tests/credentials/src/android/credentials/cts/testcore/
DDeviceConfigStateRequiredRule.java40 private final String mExpectedValue; field in DeviceConfigStateRequiredRule
50 mExpectedValue = expectedValue; in DeviceConfigStateRequiredRule()
52 mDeviceConfigContext, mExpectedValue); in DeviceConfigStateRequiredRule()
81 Context deviceConfigContext, String mExpectedValue) {
86 if (currentValue == null || TextUtils.equals(currentValue, mExpectedValue)) {
/cts/tests/autofillservice/src/android/autofillservice/cts/credman/
DDeviceConfigStateRequiredRule.java40 private final String mExpectedValue; field in DeviceConfigStateRequiredRule
50 mExpectedValue = expectedValue; in DeviceConfigStateRequiredRule()
52 mDeviceConfigContext, mExpectedValue); in DeviceConfigStateRequiredRule()
84 Context deviceConfigContext, String mExpectedValue) {
89 if (currentValue == null || TextUtils.equals(currentValue, mExpectedValue)) {
/cts/tests/tests/telecom/ThirdPtyInCallServiceTestApp/src/android/telecom/cts/thirdptyincallservice/
DCtsThirdPartyInCallService.java41 private String mExpectedValue; field in CtsThirdPartyInCallService
50 && extras.getString(mExpectedKey).equals(mExpectedValue)) {
152 mExpectedValue = newValue; in setExpectedExtra()
165 && c.getDetails().getExtras().getString(mExpectedKey).equals(mExpectedValue)) in waitForExtrasChanged()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/admin/
DPolicySerializationTestActivity.java285 private T mExpectedValue; field in PolicySerializationTestActivity.BasePolicyItem
294 mExpectedValue = getRandomExpectedValue(random); in setRandomExpectedValue()
301 mExpectedValue = getPreferencesValue(prefs); in loadExpectedValue()
302 Log.d(TAG, "loaded expected value for " + mDisplayName + ": " + mExpectedValue); in loadExpectedValue()
328 return mExpectedValue; in getExpectedValue()
333 return mExpectedValue != null ? getDisplayValue(mExpectedValue) : ""; in getDisplayExpectedValue()
352 return mExpectedValue != null && mExpectedValue.equals(mActualValue); in matchesExpectedValue()
/cts/tests/tests/webkit/src/android/webkit/cts/
DGeolocationTest.java374 private final Set<String> mExpectedValue; field in GeolocationTest.OriginCheck
378 mExpectedValue = val; in OriginCheck()
384 if (mExpectedValue.equals(mReceivedValue)) return true; in check()
385 if (mExpectedValue.size() != mReceivedValue.size()) return false; in check()
390 if (mExpectedValue.contains(origin)) continue; in check()
392 if (mExpectedValue.contains(origin.substring(0, origin.length() - 1))) { in check()
396 if (mExpectedValue.contains(origin + "/")) continue; in check()
414 private final boolean mExpectedValue; field in GeolocationTest.BooleanCheck
418 mExpectedValue = val; in BooleanCheck()
423 return mReceived && mReceivedValue == mExpectedValue; in check()