Home | History | Annotate | Download | only in expected

Lines Matching defs:moreKeys

33     static ExpectedKey newInstance(final String label, final ExpectedKey... moreKeys) {
34 return newInstance(label, label, moreKeys);
39 final ExpectedKey... moreKeys) {
41 ExpectedKeyOutput.newInstance(outputText), moreKeys);
46 final ExpectedKey... moreKeys) {
48 ExpectedKeyOutput.newInstance(code), moreKeys);
53 final ExpectedKey... moreKeys) {
55 ExpectedKeyOutput.newInstance(outputText), moreKeys);
60 final ExpectedKey... moreKeys) {
62 ExpectedKeyOutput.newInstance(code), moreKeys);
66 final ExpectedKey... moreKeys) {
67 if (moreKeys.length == 0) {
78 for (int index = 0; index < moreKeys.length; index++) {
79 final ExpectedKey moreKey = moreKeys[index];
90 return new ExpectedKeyWithMoreKeys(visual, output, moreKeys);
121 public ExpectedKey setMoreKeys(final ExpectedKey... moreKeys) {
122 return newInstance(mVisual, mOutput, moreKeys);
152 final ExpectedKey[] moreKeys = getMoreKeys();
153 final ExpectedKey[] casePreservedMoreKeys = new ExpectedKey[moreKeys.length];
154 for (int index = 0; index < moreKeys.length; index++) {
155 final ExpectedKey moreKey = moreKeys[index];
236 final ExpectedKey... moreKeys) {
238 mMoreKeys = moreKeys;
280 final ExpectedKey[] moreKeys = getMoreKeys();
282 if (moreKeySpecs == null || moreKeySpecs.length != moreKeys.length) {
286 if (!moreKeys[index].equalsTo(moreKeySpecs[index])) {
316 final ExpectedKeyOutput output, final ExpectedKey[] moreKeys,
319 super(visual, output, moreKeys);
325 public ExpectedKey setMoreKeys(final ExpectedKey... moreKeys) {
327 getVisual(), getOutput(), moreKeys, mAdditionalMoreKeysIndex,
348 final ExpectedKey[] moreKeys = super.getMoreKeys();
349 final ExpectedKey[] upperCaseMoreKeys = new ExpectedKey[moreKeys.length];
350 for (int i = 0; i < moreKeys.length; i++) {
351 upperCaseMoreKeys[i] = moreKeys[i].toUpperCase(locale);
365 final ExpectedKey[] moreKeys = super.getMoreKeys();
367 moreKeys, moreKeys.length + mAdditionalMoreKeys.length);
370 moreKeys.length - mAdditionalMoreKeysIndex);