Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
27ad0194
Commit
27ad0194
authored
11 years ago
by
Jean Chalard
Committed by
Android (Google) Code Review
11 years ago
Browse files
Options
Downloads
Plain Diff
Merge "A simplification."
parents
d98a0813
dc06ee85
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/latin/LatinIME.java
+13
-19
13 additions, 19 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
with
13 additions
and
19 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
+
13
−
19
View file @
27ad0194
...
...
@@ -2565,26 +2565,20 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
final
SettingsValues
currentSettings
=
mSettings
.
getCurrent
();
final
int
[]
additionalFeaturesOptions
=
currentSettings
.
mAdditionalFeaturesSettingValues
;
final
String
previousWord
;
if
(
mWordComposer
.
isComposingWord
()
||
mWordComposer
.
isBatchMode
())
{
previousWord
=
mWordComposer
.
getPreviousWord
();
}
else
{
// Not composing: this is for prediction.
// TODO: read the previous word earlier for prediction, like we are doing for
// normal suggestions.
previousWord
=
getNthPreviousWordForSuggestion
(
currentSettings
,
1
/* nthPreviousWord*/
);
}
if
(
DEBUG
)
{
// TODO: this is for checking consistency with older versions. Remove this when
// we are confident this is stable.
// We're checking the previous word in the text field against the memorized previous
// word. If we are composing a word we should have the second word before the cursor
// memorized, otherwise we should have the first.
final
String
rereadPrevWord
=
getNthPreviousWordForSuggestion
(
currentSettings
,
mWordComposer
.
isComposingWord
()
?
2
:
1
);
if
(!
TextUtils
.
equals
(
previousWord
,
rereadPrevWord
))
{
throw
new
RuntimeException
(
"Unexpected previous word: "
+
previousWord
+
" <> "
+
rereadPrevWord
);
if
(
mWordComposer
.
isComposingWord
()
||
mWordComposer
.
isBatchMode
())
{
final
String
previousWord
=
mWordComposer
.
getPreviousWord
();
// TODO: this is for checking consistency with older versions. Remove this when
// we are confident this is stable.
// We're checking the previous word in the text field against the memorized previous
// word. If we are composing a word we should have the second word before the cursor
// memorized, otherwise we should have the first.
final
String
rereadPrevWord
=
getNthPreviousWordForSuggestion
(
currentSettings
,
mWordComposer
.
isComposingWord
()
?
2
:
1
);
if
(!
TextUtils
.
equals
(
previousWord
,
rereadPrevWord
))
{
throw
new
RuntimeException
(
"Unexpected previous word: "
+
previousWord
+
" <> "
+
rereadPrevWord
);
}
}
}
suggest
.
getSuggestedWords
(
mWordComposer
,
mWordComposer
.
getPreviousWord
(),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment