HomeSort by relevance Sort by last modified time
    Searched full:textservice (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /frameworks/base/core/java/com/android/internal/textservice/
ISpellCheckerService.aidl 17 package com.android.internal.textservice;
19 import com.android.internal.textservice.ISpellCheckerServiceCallback;
20 import com.android.internal.textservice.ISpellCheckerSession;
21 import com.android.internal.textservice.ISpellCheckerSessionListener;
37 * {@link android.service.textservice.SpellCheckerService.Session#getLocale()}
39 * {@link android.service.textservice.SpellCheckerService.Session#onGetSuggestionsMultiple(TextInfo[], int, boolean)} and
40 * {@link android.service.textservice.SpellCheckerService.Session#onGetSuggestions(TextInfo, int)}
41 * @param bundle bundle to be returned from {@link android.service.textservice.SpellCheckerService.Session#getBundle()}
ITextServicesManager.aidl 17 package com.android.internal.textservice;
19 import com.android.internal.textservice.ISpellCheckerSessionListener;
20 import com.android.internal.textservice.ITextServicesSessionListener;
24 import android.view.textservice.SpellCheckerInfo;
25 import android.view.textservice.SpellCheckerSubtype;
ISpellCheckerSessionListener.aidl 17 package com.android.internal.textservice;
19 import android.view.textservice.SentenceSuggestionsInfo;
20 import android.view.textservice.SuggestionsInfo;
ITextServicesSessionListener.aidl 17 package com.android.internal.textservice;
19 import com.android.internal.textservice.ISpellCheckerSession;
21 import android.view.textservice.SpellCheckerInfo;
ISpellCheckerSession.aidl 17 package com.android.internal.textservice;
19 import android.view.textservice.TextInfo;
ISpellCheckerServiceCallback.aidl 17 package com.android.internal.textservice;
19 import com.android.internal.textservice.ISpellCheckerSession;
20 import com.android.internal.textservice.ISpellCheckerSessionListener;
  /frameworks/base/core/java/android/service/textservice/
package.html 7 android.service.textservice.SpellCheckerService} and extend the {@link
8 android.service.textservice.SpellCheckerService.Session} class to provide spelling suggestions based
10 android.service.textservice.SpellCheckerService.Session} callback methods, you must return the
11 spelling suggestions as {@link android.view.textservice.SuggestionsInfo} objects. </p>
16 android:name="android.service.textservice.SpellCheckerService" />} as the intent?s action and should
26 &lt;action android:name="android.service.textservice.SpellCheckerService" />
29 android:name="android.view.textservice.scs"
  /development/samples/SpellChecker/HelloSpellChecker/
_index.html 2 href="../../../../reference/android/view/textservice/TextServicesManager.html">TextServicesManager</a></code>
3 and <code><a href="../../../../reference/android/view/textservice/SpellCheckerSession.html">SpellCheckerSession</a></code>
  /development/samples/SpellChecker/SampleSpellCheckerService/
_index.html 2 href="../../../../reference/android/service/textservice/SpellCheckerService.html">SpellCheckerService</a></code>
AndroidManifest.xml 30 <action android:name="android.service.textservice.SpellCheckerService" />
34 android:name="android.view.textservice.scs"
  /prebuilts/sdk/14/
framework.aidl 29 interface com.android.internal.textservice.ISpellCheckerService;
30 interface com.android.internal.textservice.ISpellCheckerSession;
31 interface com.android.internal.textservice.ISpellCheckerSessionListener;
32 interface com.android.internal.textservice.ITextServicesManager;
33 interface com.android.internal.textservice.ITextServicesSessionListener;
  /prebuilts/sdk/15/
framework.aidl 29 interface com.android.internal.textservice.ISpellCheckerService;
30 interface com.android.internal.textservice.ISpellCheckerSession;
31 interface com.android.internal.textservice.ISpellCheckerSessionListener;
32 interface com.android.internal.textservice.ITextServicesManager;
33 interface com.android.internal.textservice.ITextServicesSessionListener;
  /prebuilts/sdk/16/
framework.aidl 29 interface com.android.internal.textservice.ISpellCheckerService;
30 interface com.android.internal.textservice.ISpellCheckerSession;
31 interface com.android.internal.textservice.ISpellCheckerSessionListener;
32 interface com.android.internal.textservice.ITextServicesManager;
33 interface com.android.internal.textservice.ITextServicesSessionListener;
  /prebuilts/sdk/17/
framework.aidl 29 interface com.android.internal.textservice.ISpellCheckerService;
30 interface com.android.internal.textservice.ISpellCheckerSession;
31 interface com.android.internal.textservice.ISpellCheckerSessionListener;
32 interface com.android.internal.textservice.ITextServicesManager;
33 interface com.android.internal.textservice.ITextServicesSessionListener;
  /prebuilts/sdk/18/
framework.aidl 31 interface com.android.internal.textservice.ISpellCheckerService;
32 interface com.android.internal.textservice.ISpellCheckerSession;
33 interface com.android.internal.textservice.ISpellCheckerSessionListener;
34 interface com.android.internal.textservice.ITextServicesManager;
35 interface com.android.internal.textservice.ITextServicesSessionListener;
  /prebuilts/sdk/19/
framework.aidl 33 interface com.android.internal.textservice.ISpellCheckerService;
34 interface com.android.internal.textservice.ISpellCheckerSession;
35 interface com.android.internal.textservice.ISpellCheckerSessionListener;
36 interface com.android.internal.textservice.ITextServicesManager;
37 interface com.android.internal.textservice.ITextServicesSessionListener;
  /prebuilts/sdk/20/
framework.aidl 33 interface com.android.internal.textservice.ISpellCheckerService;
34 interface com.android.internal.textservice.ISpellCheckerSession;
35 interface com.android.internal.textservice.ISpellCheckerSessionListener;
36 interface com.android.internal.textservice.ITextServicesManager;
37 interface com.android.internal.textservice.ITextServicesSessionListener;
  /frameworks/base/core/java/android/view/textservice/
TextInfo.java 17 package android.view.textservice;
27 * This class contains a metadata of the input of TextService
39 * @param text the text which will be input to TextService
47 * @param text the text which will be input to TextService
61 * @param charSequence the text which will be input to TextService. Attached spans that
75 // SpellCheckSpan is for internal use. We do not want to marshal this for TextService.
SentenceSuggestionsInfo.aidl 17 package android.view.textservice;
SpellCheckerInfo.aidl 17 package android.view.textservice;
SpellCheckerSubtype.aidl 17 package android.view.textservice;
SuggestionsInfo.aidl 17 package android.view.textservice;
TextInfo.aidl 17 package android.view.textservice;
  /frameworks/layoutlib/bridge/src/android/view/textservice/
TextServicesManager.java 17 package android.view.textservice;
20 import android.view.textservice.SpellCheckerSession.SpellCheckerSessionListener;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSessionFactory.java 19 import android.service.textservice.SpellCheckerService.Session;

Completed in 401 milliseconds

1 2 3 4