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
6ff66f98
Commit
6ff66f98
authored
12 years ago
by
Jean Chalard
Committed by
Android (Google) Code Review
12 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Neutralize AndroidSpellChecker.SuggestionsGatherer#addWords (A13)"
parents
a4bd4e44
d9df8094
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/spellcheck/AndroidSpellCheckerService.java
+16
-2
16 additions, 2 deletions
...utmethod/latin/spellcheck/AndroidSpellCheckerService.java
with
16 additions
and
2 deletions
java/src/com/android/inputmethod/latin/spellcheck/AndroidSpellCheckerService.java
+
16
−
2
View file @
6ff66f98
...
@@ -38,6 +38,7 @@ import com.android.inputmethod.latin.DictionaryFactory;
...
@@ -38,6 +38,7 @@ import com.android.inputmethod.latin.DictionaryFactory;
import
com.android.inputmethod.latin.LocaleUtils
;
import
com.android.inputmethod.latin.LocaleUtils
;
import
com.android.inputmethod.latin.R
;
import
com.android.inputmethod.latin.R
;
import
com.android.inputmethod.latin.StringUtils
;
import
com.android.inputmethod.latin.StringUtils
;
import
com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo
;
import
com.android.inputmethod.latin.SynchronouslyLoadedContactsBinaryDictionary
;
import
com.android.inputmethod.latin.SynchronouslyLoadedContactsBinaryDictionary
;
import
com.android.inputmethod.latin.SynchronouslyLoadedUserBinaryDictionary
;
import
com.android.inputmethod.latin.SynchronouslyLoadedUserBinaryDictionary
;
import
com.android.inputmethod.latin.UserBinaryDictionary
;
import
com.android.inputmethod.latin.UserBinaryDictionary
;
...
@@ -203,6 +204,8 @@ public class AndroidSpellCheckerService extends SpellCheckerService
...
@@ -203,6 +204,8 @@ public class AndroidSpellCheckerService extends SpellCheckerService
EMPTY_STRING_ARRAY
);
EMPTY_STRING_ARRAY
);
}
}
// TODO: remove this class when WordCallback is finally out of the picture and
// replace it by storage local to the session.
private
static
class
SuggestionsGatherer
implements
WordCallback
{
private
static
class
SuggestionsGatherer
implements
WordCallback
{
public
static
class
Result
{
public
static
class
Result
{
public
final
String
[]
mSuggestions
;
public
final
String
[]
mSuggestions
;
...
@@ -240,6 +243,11 @@ public class AndroidSpellCheckerService extends SpellCheckerService
...
@@ -240,6 +243,11 @@ public class AndroidSpellCheckerService extends SpellCheckerService
@Override
@Override
synchronized
public
boolean
addWord
(
char
[]
word
,
int
[]
spaceIndices
,
int
wordOffset
,
synchronized
public
boolean
addWord
(
char
[]
word
,
int
[]
spaceIndices
,
int
wordOffset
,
int
wordLength
,
int
score
,
int
dicTypeId
,
int
dataType
)
{
int
wordLength
,
int
score
,
int
dicTypeId
,
int
dataType
)
{
return
true
;
}
synchronized
public
boolean
oldAddWord
(
char
[]
word
,
int
[]
spaceIndices
,
int
wordOffset
,
int
wordLength
,
int
score
,
int
dicTypeId
/* unused */
,
int
dataType
)
{
final
int
positionIndex
=
Arrays
.
binarySearch
(
mScores
,
0
,
mLength
,
score
);
final
int
positionIndex
=
Arrays
.
binarySearch
(
mScores
,
0
,
mLength
,
score
);
// binarySearch returns the index if the element exists, and -<insertion index> - 1
// binarySearch returns the index if the element exists, and -<insertion index> - 1
// if it doesn't. See documentation for binarySearch.
// if it doesn't. See documentation for binarySearch.
...
@@ -780,8 +788,14 @@ public class AndroidSpellCheckerService extends SpellCheckerService
...
@@ -780,8 +788,14 @@ public class AndroidSpellCheckerService extends SpellCheckerService
try
{
try
{
dictInfo
=
mDictionaryPool
.
takeOrGetNull
();
dictInfo
=
mDictionaryPool
.
takeOrGetNull
();
if
(
null
==
dictInfo
)
return
getNotInDictEmptySuggestions
();
if
(
null
==
dictInfo
)
return
getNotInDictEmptySuggestions
();
dictInfo
.
mDictionary
.
getWords
(
composer
,
prevWord
,
suggestionsGatherer
,
final
ArrayList
<
SuggestedWordInfo
>
suggestions
=
dictInfo
.
mDictionary
.
getWords
(
dictInfo
.
mProximityInfo
);
composer
,
prevWord
,
suggestionsGatherer
,
dictInfo
.
mProximityInfo
);
for
(
final
SuggestedWordInfo
suggestion
:
suggestions
)
{
final
String
suggestionStr
=
suggestion
.
mWord
.
toString
();
suggestionsGatherer
.
oldAddWord
(
suggestionStr
.
toCharArray
(),
0
,
suggestionStr
.
length
(),
suggestion
.
mScore
,
0
/* ignored */
,
Dictionary
.
UNIGRAM
);
}
isInDict
=
dictInfo
.
mDictionary
.
isValidWord
(
text
);
isInDict
=
dictInfo
.
mDictionary
.
isValidWord
(
text
);
if
(!
isInDict
&&
CAPITALIZE_NONE
!=
capitalizeType
)
{
if
(!
isInDict
&&
CAPITALIZE_NONE
!=
capitalizeType
)
{
// We want to test the word again if it's all caps or first caps only.
// We want to test the word again if it's all caps or first caps only.
...
...
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