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

1 2

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
ActionTestsBase.java 81 final int elementId, final ExpectedActionKey expectedKey) {
85 assertEquals(tag + " label " + expectedKey, expectedKey.getLabel(), actualKey.getLabel());
86 assertEquals(tag + " icon " + expectedKey, expectedKey.getIconId(), actualKey.getIconId());
90 final int actionId, final ExpectedActionKey expectedKey) {
93 doTestActionKey(tag, subtype, editorInfo, expectedKey);
97 final EditorInfo editorInfo, final ExpectedActionKey expectedKey) {
101 assertActionKey(tag, layoutSet, KeyboardId.ELEMENT_ALPHABET, expectedKey);
102 assertActionKey(tag, layoutSet, KeyboardId.ELEMENT_SYMBOLS, expectedKey);
    [all...]
KlpActionCustomTests.java 33 final ExpectedActionKey expectedKey = ExpectedActionKey.newLabelKey("customLabel");
34 doTestActionKey(tag, subtype, editorInfo, expectedKey);
KlpActionNoneTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_NONE, expectedKey);
KlpActionSearchTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_SEARCH, expectedKey);
KlpActionUnspecifiedTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
34 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_UNSPECIFIED, expectedKey);
LxxActionCustomTests.java 33 final ExpectedActionKey expectedKey = ExpectedActionKey.newLabelKey("customLabel");
34 doTestActionKey(tag, subtype, editorInfo, expectedKey);
LxxActionDoneTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_DONE, expectedKey);
LxxActionGoTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_GO, expectedKey);
LxxActionNextTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_NEXT, expectedKey);
LxxActionNoneTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_NONE, expectedKey);
LxxActionPreviousTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_PREVIOUS, expectedKey);
LxxActionSearchTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_SEARCH, expectedKey);
LxxActionSendTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_SEND, expectedKey);
LxxActionUnspecifiedTests.java 29 final ExpectedActionKey expectedKey = ExpectedActionKey.newIconKey(
34 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_UNSPECIFIED, expectedKey);
KlpActionDoneTests.java 31 final ExpectedActionKey expectedKey = ExpectedActionKey.newLabelKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_DONE, expectedKey);
KlpActionGoTests.java 31 final ExpectedActionKey expectedKey = ExpectedActionKey.newLabelKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_GO, expectedKey);
KlpActionNextTests.java 31 final ExpectedActionKey expectedKey = ExpectedActionKey.newLabelKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_NEXT, expectedKey);
KlpActionPreviousTests.java 31 final ExpectedActionKey expectedKey = ExpectedActionKey.newLabelKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_PREVIOUS, expectedKey);
KlpActionSendTests.java 31 final ExpectedActionKey expectedKey = ExpectedActionKey.newLabelKey(
33 doTestActionKey(tag, subtype, EditorInfo.IME_ACTION_SEND, expectedKey);
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
MapChangeRegistryTest.java 38 final String expectedKey = "key";
45 assertEquals(key, expectedKey);
51 mapChangeRegistry.notifyChange(observableObj, expectedKey);
  /frameworks/base/core/tests/coretests/src/android/app/backup/
BackupDataTest.java 269 private void readAndVerifyEntity(BackupDataInput bdi, String expectedKey, byte[] expectedData)
272 expectedKey, bdi.getKey());
284 private void readAndVerifyDeletedEntity(BackupDataInput bdi, String expectedKey)
287 expectedKey, bdi.getKey());
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
LayoutTestsBase.java 31 import com.android.inputmethod.keyboard.layout.expected.ExpectedKey;
32 import com.android.inputmethod.keyboard.layout.expected.ExpectedKey.ExpectedAdditionalMoreKey;
69 // Helper method to create an {@link ExpectedKey} object that has the label.
70 static ExpectedKey key(final String label, final ExpectedKey ... moreKeys) {
74 // Helper method to create an {@link ExpectedKey} object that has the label and the output text.
75 static ExpectedKey key(final String label, final String outputText,
76 final ExpectedKey ... moreKeys) {
80 // Helper method to create an {@link ExpectedKey} object that has new "more keys".
81 static ExpectedKey key(final ExpectedKey key, final ExpectedKey ... moreKeys)
    [all...]
  /frameworks/base/keystore/tests/src/android/security/keystore/
AndroidKeyStoreTest.java     [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
CallDetailsTest.java 637 * @param expectedKey The expected extras key.
639 private void assertCallExtras(final Call call, final String expectedKey) {
644 return expectedKey;
649 return call.getDetails().getExtras().containsKey(expectedKey) ? expectedKey
654 "Call should have extras key " + expectedKey
  /cts/tests/tests/keystore/src/android/keystore/cts/
AndroidKeyStoreTest.java     [all...]

Completed in 384 milliseconds

1 2