OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WORD_TO_TYPE
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
PunctuationTests.java
29
final String
WORD_TO_TYPE
= "this ";
39
type(
WORD_TO_TYPE
);
55
final String
WORD_TO_TYPE
= "this !!";
57
type(
WORD_TO_TYPE
);
88
final String
WORD_TO_TYPE
= "this";
91
type(
WORD_TO_TYPE
);
92
pickSuggestionManually(0,
WORD_TO_TYPE
);
99
final String
WORD_TO_TYPE
= "this";
102
type(
WORD_TO_TYPE
);
103
pickSuggestionManually(0,
WORD_TO_TYPE
);
[
all
...]
InputLogicTests.java
26
final String
WORD_TO_TYPE
= "abcd";
27
type(
WORD_TO_TYPE
);
28
assertEquals("type word",
WORD_TO_TYPE
, mEditText.getText().toString());
32
final String
WORD_TO_TYPE
= "this";
34
type(
WORD_TO_TYPE
);
35
pickSuggestionManually(0,
WORD_TO_TYPE
);
36
mLatinIME.onUpdateSelection(0, 0,
WORD_TO_TYPE
.length(),
WORD_TO_TYPE
.length(), -1, -1);
43
final String
WORD_TO_TYPE
= "tgis";
46
type(
WORD_TO_TYPE
);
[
all
...]
InputLogicTestsLanguageWithoutSpaces.java
54
final String
WORD_TO_TYPE
= "and this ";
56
type(
WORD_TO_TYPE
);
70
final String
WORD_TO_TYPE
= "abcdefgh ";
71
final int typedLength =
WORD_TO_TYPE
.length() - 1; // -1 because space gets eaten
74
type(
WORD_TO_TYPE
);
93
final String
WORD_TO_TYPE
= "Barack ";
95
type(
WORD_TO_TYPE
);
InputLogicTestsNonEnglish.java
49
final String
WORD_TO_TYPE
= "test ";
59
type(
WORD_TO_TYPE
);
75
final String
WORD_TO_TYPE
= "beaujolais ";
84
type(
WORD_TO_TYPE
);
Completed in 36 milliseconds