OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typedWord
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java
79
* @param
typedWord
the word to compare with
82
protected boolean same(final char[] word, final int length, final CharSequence
typedWord
) {
83
if (
typedWord
.length() != length) {
87
if (word[i] !=
typedWord
.charAt(i)) {
TextEntryState.java
125
public static void acceptedDefault(CharSequence
typedWord
, CharSequence actualWord) {
126
if (
typedWord
== null) return;
127
if (!
typedWord
.equals(actualWord)) {
130
sTypedChars +=
typedWord
.length();
135
public static void acceptedTyped(CharSequence
typedWord
) {
140
public static void acceptedSuggestion(CharSequence
typedWord
, CharSequence actualWord) {
142
if (
typedWord
.equals(actualWord)) {
143
acceptedTyped(
typedWord
);
LatinIME.java
702
//CharSequence
typedWord
= mWord.getTypedWord();
[
all
...]
Completed in 350 milliseconds