OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mDecInfo
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java
81
private DecodingInfo
mDecInfo
;
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
...]
ComposingView.java
107
PinyinIME.DecodingInfo
mDecInfo
;
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
.getCursorPosInCmpsDisplay()
[
all
...]
PinyinIME.java
161
private DecodingInfo
mDecInfo
= new DecodingInfo();
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
...]
CandidatesContainer.java
86
private DecodingInfo
mDecInfo
;
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
.preparePage(mCurrentPage + 1))
[
all
...]
Completed in 39 milliseconds