OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LastComposedWord
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LastComposedWord.java
31
public final class
LastComposedWord
{
60
public static final
LastComposedWord
NOT_A_COMPOSED_WORD =
61
new
LastComposedWord
(new ArrayList<Event>(), null, "", "",
66
public
LastComposedWord
(final ArrayList<Event> events,
WordComposer.java
416
// `type' should be one of the
LastComposedWord
.COMMIT_TYPE_* constants above.
418
public
LastComposedWord
commitWord(final int type, final CharSequence committedWord,
423
final
LastComposedWord
lastComposedWord
= new
LastComposedWord
(mEvents,
427
if (type !=
LastComposedWord
.COMMIT_TYPE_DECIDED_WORD
428
&& type !=
LastComposedWord
.COMMIT_TYPE_MANUAL_PICK) {
429
lastComposedWord
.deactivate();
444
return
lastComposedWord
;
447
public void resumeSuggestionOnLastComposedWord(final
LastComposedWord
lastComposedWord)
[
all
...]
LatinIME.java
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
InputLogic.java
39
import com.android.inputmethod.latin.
LastComposedWord
;
90
public
LastComposedWord
mLastComposedWord =
LastComposedWord
.NOT_A_COMPOSED_WORD;
195
commitTyped(settingsValues,
LastComposedWord
.NOT_A_SEPARATOR);
322
commitChosenWord(settingsValues, suggestion,
LastComposedWord
.COMMIT_TYPE_MANUAL_PICK,
323
LastComposedWord
.NOT_A_SEPARATOR);
519
commitCurrentAutoCorrection(settingsValues,
LastComposedWord
.NOT_A_SEPARATOR,
522
commitTyped(settingsValues,
LastComposedWord
.NOT_A_SEPARATOR);
[
all
...]
Completed in 54 milliseconds