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
76e38619
Commit
76e38619
authored
13 years ago
by
Jean Chalard
Committed by
Android (Google) Code Review
13 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Straighten out the last bastion of the Builder"
parents
febf9929
6ffb5018
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/src/com/android/inputmethod/latin/Suggest.java
+9
-2
9 additions, 2 deletions
java/src/com/android/inputmethod/latin/Suggest.java
java/src/com/android/inputmethod/latin/SuggestedWords.java
+1
-1
1 addition, 1 deletion
java/src/com/android/inputmethod/latin/SuggestedWords.java
with
10 additions
and
3 deletions
java/src/com/android/inputmethod/latin/Suggest.java
+
9
−
2
View file @
76e38619
...
@@ -437,13 +437,20 @@ public class Suggest implements Dictionary.WordCallback {
...
@@ -437,13 +437,20 @@ public class Suggest implements Dictionary.WordCallback {
}
}
// Don't auto-correct words with multiple capital letter
// Don't auto-correct words with multiple capital letter
autoCorrectionAvailable
&=
!
wordComposer
.
isMostlyCaps
();
autoCorrectionAvailable
&=
!
wordComposer
.
isMostlyCaps
();
final
boolean
shouldBlockAutoCorrectionBySatefyNet
;
if
(
allowsToBeAutoCorrected
&&
scoreInfoList
.
size
()
>
1
&&
mAutoCorrectionThreshold
>
0
&&
Suggest
.
shouldBlockAutoCorrectionBySafetyNet
(
typedWord
,
scoreInfoList
.
get
(
1
).
mWord
))
{
shouldBlockAutoCorrectionBySatefyNet
=
true
;
}
else
{
shouldBlockAutoCorrectionBySatefyNet
=
false
;
}
builder
=
new
SuggestedWords
.
Builder
(
scoreInfoList
,
builder
=
new
SuggestedWords
.
Builder
(
scoreInfoList
,
!
allowsToBeAutoCorrected
/* typedWordValid */
,
!
allowsToBeAutoCorrected
/* typedWordValid */
,
autoCorrectionAvailable
/* hasMinimalSuggestion */
,
autoCorrectionAvailable
/* hasMinimalSuggestion */
,
allowsToBeAutoCorrected
/* allowsToBeAutoCorrected */
,
allowsToBeAutoCorrected
/* allowsToBeAutoCorrected */
,
false
/* isPunctuationSuggestions */
);
false
/* isPunctuationSuggestions */
);
if
(
allowsToBeAutoCorrected
&&
builder
.
size
()
>
1
&&
mAutoCorrectionThreshold
>
0
if
(
shouldBlockAutoCorrectionBySatefyNet
)
{
&&
Suggest
.
shouldBlockAutoCorrectionBySafetyNet
(
typedWord
,
builder
.
getWord
(
1
)))
{
builder
.
setShouldBlockAutoCorrectionBySafetyNet
();
builder
.
setShouldBlockAutoCorrectionBySafetyNet
();
}
}
return
builder
;
return
builder
;
...
...
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/latin/SuggestedWords.java
+
1
−
1
View file @
76e38619
...
@@ -170,7 +170,7 @@ public class SuggestedWords {
...
@@ -170,7 +170,7 @@ public class SuggestedWords {
}
}
public
static
class
SuggestedWordInfo
{
public
static
class
SuggestedWordInfo
{
p
rivate
final
CharSequence
mWord
;
p
ublic
final
CharSequence
mWord
;
private
final
CharSequence
mDebugString
;
private
final
CharSequence
mDebugString
;
private
final
boolean
mPreviousSuggestedWord
;
private
final
boolean
mPreviousSuggestedWord
;
...
...
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