Searched defs:activeCandNo (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DPinyinIME.java892 // If activeCandNo is less than 0, get the current active candidate number
893 // from candidate view, otherwise use activeCandNo.
894 private void chooseCandidate(int activeCandNo) { argument
895 if (activeCandNo < 0) {
896 activeCandNo = mCandidatesContainer.getActiveCandiatePos();
898 if (activeCandNo >= 0) {
899 chooseAndUpdate(activeCandNo);
1172 private void onChoiceTouched(int activeCandNo) { argument
1177 chooseCandidate(activeCandNo);
1179 if (null != mDecInfo.mAppCompletions && activeCandNo >
[all...]

Completed in 29 milliseconds