OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textInfos
(Results
1 - 12
of
12
) sorted by null
/frameworks/base/core/java/com/android/internal/textservice/
ISpellCheckerSession.aidl
26
in TextInfo[]
textInfos
, int suggestionsLimit, boolean multipleWords);
27
void onGetSentenceSuggestionsMultiple(in TextInfo[]
textInfos
, int suggestionsLimit);
/frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java
132
* @param
textInfos
an array of the text metadata
134
* @param sequentialWords true if
textInfos
can be treated as sequential words.
138
public SuggestionsInfo[] onGetSuggestionsMultiple(TextInfo[]
textInfos
,
140
final int length =
textInfos
.length;
143
retval[i] = onGetSuggestions(
textInfos
[i], suggestionsLimit);
145
textInfos
[i].getCookie(),
textInfos
[i].getSequence());
159
* @param
textInfos
an array of the text metadata
164
public SentenceSuggestionsInfo[] onGetSentenceSuggestionsMultiple(TextInfo[]
textInfos
,
166
if (
textInfos
== null || textInfos.length == 0)
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSession.java
117
public SentenceSuggestionsInfo[] onGetSentenceSuggestionsMultiple(TextInfo[]
textInfos
,
120
super.onGetSentenceSuggestionsMultiple(
textInfos
, suggestionsLimit);
121
if (retval == null || retval.length !=
textInfos
.length) {
126
fixWronglyInvalidatedWordWithSingleQuote(
textInfos
[i], retval[i]);
135
public SuggestionsInfo[] onGetSuggestionsMultiple(TextInfo[]
textInfos
,
139
final int length =
textInfos
.length;
144
final String prevWordCandidate =
textInfos
[i - 1].getText();
151
retval[i] = onGetSuggestionsInternal(
textInfos
[i], prevWord, suggestionsLimit);
152
retval[i].setCookieAndSequence(
textInfos
[i].getCookie(),
153
textInfos
[i].getSequence())
[
all
...]
/frameworks/base/core/java/android/view/textservice/
SpellCheckerSession.java
180
* @param
textInfos
an array of text metadata for a spell checker
183
public void getSentenceSuggestions(TextInfo[]
textInfos
, int suggestionsLimit) {
185
textInfos
, suggestionsLimit);
201
* @param
textInfos
an array of text metadata for a spell checker
203
* @param sequentialWords true if
textInfos
can be treated as sequential words.
208
TextInfo[]
textInfos
, int suggestionsLimit, boolean sequentialWords) {
213
textInfos
, suggestionsLimit, sequentialWords);
249
public SpellCheckerParams(int what, TextInfo[]
textInfos
, int suggestionsLimit,
252
mTextInfos =
textInfos
;
360
TextInfo[]
textInfos
, int suggestionsLimit, boolean sequentialWords)
[
all
...]
/development/samples/SpellChecker/SampleSpellCheckerService/src/com/example/android/samplespellcheckerservice/
SampleSpellCheckerService.java
87
TextInfo[]
textInfos
, int suggestionsLimit) {
95
for (int i = 0; i <
textInfos
.length; ++i) {
96
final TextInfo ti =
textInfos
[i];
/frameworks/base/core/java/android/widget/
SpellChecker.java
275
TextInfo[]
textInfos
= new TextInfo[mLength];
300
textInfos
[textInfosCount++] = new TextInfo(word, mCookie, mIds[i]);
311
if (textInfosCount <
textInfos
.length) {
313
System.arraycopy(
textInfos
, 0, textInfosCopy, 0, textInfosCount);
314
textInfos
= textInfosCopy;
319
textInfos
, SuggestionSpan.SUGGESTIONS_MAX_SIZE);
321
mSpellCheckerSession.getSuggestions(
textInfos
, SuggestionSpan.SUGGESTIONS_MAX_SIZE,
[
all
...]
/prebuilts/sdk/17/
android.jar
/prebuilts/sdk/18/
android.jar
/prebuilts/sdk/19/
android.jar
/prebuilts/sdk/14/
android.jar
/prebuilts/sdk/current/
android.jar
/prebuilts/sdk/15/
android.jar
Completed in 280 milliseconds