Searched refs:mDecInfo (Results 1 - 4 of 4) sorted by relevance

/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DCandidateView.java81 private DecodingInfo mDecInfo; field in class:CandidateView
282 mDecInfo = decInfo;
285 if (mDecInfo.candidatesFromApp()) {
308 return mDecInfo.mPageStart.get(mPageNo) + mActiveCandInPage;
321 if (null == mDecInfo) return;
345 if (!mDecInfo.pageReady(mPageNo)) return false;
346 int pageSize = mDecInfo.mPageStart.get(mPageNo + 1)
347 - mDecInfo.mPageStart.get(mPageNo);
381 if (null == mDecInfo) {
389 setDecodingInfo(mDecInfo);
[all...]
H A DComposingView.java107 PinyinIME.DecodingInfo mDecInfo; field in class:ComposingView
143 mDecInfo = decInfo;
147 mDecInfo.moveCursorToEdge(false);
155 mDecInfo.moveCursor(0);
172 mDecInfo.moveCursor(offset);
197 if (null == mDecInfo) {
204 str = mDecInfo.getOrigianlSplStr().toString();
206 str = mDecInfo.getComposingStrForDisplay();
230 String splStr = mDecInfo.getOrigianlSplStr().toString();
247 int cursorPos = mDecInfo
[all...]
H A DPinyinIME.java161 private DecodingInfo mDecInfo = new DecodingInfo(); field in class:PinyinIME
334 && !mDecInfo.isCandidatesListEmpty()) {
403 mDecInfo.addSplChar((char) keyChar, true);
463 commitResultText(mDecInfo
477 && !mDecInfo.charBeforeCursorIsSeparator()
483 inputCommaPeriod(mDecInfo.getCurrentFullSent(mCandidatesContainer
515 if (activePos < mDecInfo.getCurrentPageSize(currentPage)) {
517 + mDecInfo.getCurrentPageStart(currentPage);
526 commitResultText(mDecInfo.getOrigianlSplStr().toString());
529 commitResultText(mDecInfo
[all...]
H A DCandidatesContainer.java86 private DecodingInfo mDecInfo; field in class:CandidatesContainer
195 mDecInfo = decInfo;
208 cv.setDecodingInfo(mDecInfo);
247 if (mFlipper.isFlipping() || null == mDecInfo) {
262 if (mFlipper.isFlipping() || null == mDecInfo) {
278 if (null == mDecInfo) return false;
290 activeCandInPage = mDecInfo.mPageStart.elementAt(mCurrentPage + 1)
291 - mDecInfo.mPageStart.elementAt(mCurrentPage) - 1;
303 if (null == mDecInfo) return false;
305 if (mFlipper.isFlipping() || !mDecInfo
[all...]

Completed in 33 milliseconds