HomeSort by relevance Sort by last modified time
    Searched refs:Combiner (Results 1 - 7 of 7) sorted by null

  /packages/inputmethods/LatinIME/tools/dicttool/compat/com/android/inputmethod/event/
CombinerChain.java 22 * Compatibility class that stands in for the combiner chain in LatinIME.
30 public CombinerChain(final String initialText, final Combiner... combinerList) {
50 public static Combiner[] createCombiners(final String spec) {
51 // Dicttool never uses a combiner at all, so we just return a zero-sized array.
52 return new Combiner[0];
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
CombinerChain.java 46 private final ArrayList<Combiner> mCombiners;
48 private static final HashMap<String, Class<? extends Combiner>> IMPLEMENTED_COMBINERS =
56 * Create an combiner chain.
58 * The combiner chain takes events as inputs and outputs code points and combining state.
66 public CombinerChain(final String initialText, final Combiner... combinerList) {
68 // The dead key combiner is always active, and always first
70 for (final Combiner combiner : combinerList) {
71 mCombiners.add(combiner);
80 for (final Combiner c : mCombiners)
    [all...]
Combiner.java 27 public interface Combiner {
42 * Get the feedback that should be shown to the user for the current state of this combiner.
48 * Reset the state of this combiner, for example when the cursor was moved.
DeadKeyCombiner.java 29 * A combiner that handles dead keys.
31 public class DeadKeyCombiner implements Combiner {
46 // no dead keys at all in the current input, so this combiner has nothing to do and
MyanmarReordering.java 27 * A combiner that reorders input for Myanmar.
29 public class MyanmarReordering implements Combiner {
  /packages/inputmethods/LatinIME/tools/dicttool/
Android.mk 46 event/Combiner.java \
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]

Completed in 112 milliseconds