Home
last modified time | relevance | path

Searched refs:hasSameKeyOutput (Results 1 – 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
DExpectedKeyOutput.java46 abstract boolean hasSameKeyOutput(final String text); in hasSameKeyOutput() method in ExpectedKeyOutput
47 abstract boolean hasSameKeyOutput(final Key key); in hasSameKeyOutput() method in ExpectedKeyOutput
48 abstract boolean hasSameKeyOutput(final MoreKeySpec moreKeySpec); in hasSameKeyOutput() method in ExpectedKeyOutput
49 abstract boolean hasSameKeyOutput(final ExpectedKeyOutput output); in hasSameKeyOutput() method in ExpectedKeyOutput
78 boolean hasSameKeyOutput(final String text) { in hasSameKeyOutput() method in ExpectedKeyOutput.Code
83 boolean hasSameKeyOutput(final Key key) { in hasSameKeyOutput() method in ExpectedKeyOutput.Code
88 boolean hasSameKeyOutput(final MoreKeySpec moreKeySpec) { in hasSameKeyOutput() method in ExpectedKeyOutput.Code
93 boolean hasSameKeyOutput(final ExpectedKeyOutput output) { in hasSameKeyOutput() method in ExpectedKeyOutput.Code
133 boolean hasSameKeyOutput(final String text) { in hasSameKeyOutput() method in ExpectedKeyOutput.Text
138 boolean hasSameKeyOutput(final Key key) { in hasSameKeyOutput() method in ExpectedKeyOutput.Text
[all …]
DExpectedKey.java165 return mVisual.hasSameKeyVisual(key) && mOutput.hasSameKeyOutput(key) in equalsTo()
170 return mVisual.hasSameKeyVisual(moreKeySpec) && mOutput.hasSameKeyOutput(moreKeySpec); in equalsTo()
177 return mVisual.hasSameKeyVisual(key.mVisual) && mOutput.hasSameKeyOutput(key.mOutput) in equals()
278 if (getVisual().hasSameKeyVisual(key) && getOutput().hasSameKeyOutput(key)) { in equalsTo()
DExpectedKeyVisual.java170 return output.hasSameKeyOutput(mLabel); in hasSameKeyVisual()