OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mComposing
(Results
1 - 2
of
2
) sorted by null
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java
60
private StringBuilder
mComposing
= new StringBuilder();
138
mComposing
.setLength(0);
228
mComposing
.setLength(0);
261
if (
mComposing
.length() > 0 && (newSelStart != candidatesEnd
263
mComposing
.setLength(0);
317
if (
mComposing
.length() > 0) {
318
char accent =
mComposing
.charAt(
mComposing
.length() -1 );
323
mComposing
.setLength(
mComposing
.length()-1)
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java
171
private StringBuilder
mComposing
= new StringBuilder();
536
mComposing
.setLength(0);
611
if ((((
mComposing
.length() > 0 && mPredicting) || mVoiceInputHighlighted)
614
mComposing
.setLength(0);
806
if (
mComposing
.length() > 0) {
808
inputConnection.commitText(
mComposing
, 1)
[
all
...]
Completed in 37 milliseconds