Searched defs:bigrams (Results 1 - 4 of 4) sorted by relevance

/packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
H A DWord.java33 public Word(String word, int frequency, ArrayList<WeightedString> bigrams) { argument
36 mBigrams = bigrams;
H A DCharGroupInfo.java36 final ArrayList<PendingAttribute> bigrams) {
43 mBigrams = bigrams;
34 CharGroupInfo(final int originalAddress, final int endAddress, final int flags, final int[] characters, final int frequency, final int childrenAddress, final ArrayList<PendingAttribute> bigrams) argument
H A DXmlDictInputOutput.java70 * @param bigrams the bigrams as a map. This may be empty, but may not be null.
73 HashMap<String, ArrayList<WeightedString>> bigrams) {
75 mBigramsMap = bigrams;
163 public static FusionDictionary readDictionaryXml(InputStream unigrams, InputStream bigrams) argument
169 if (null != bigrams) parser.parse(bigrams, bigramHandler);
183 * which has no support for bigrams or shortcuts.
194 * The output format is the "second" format, which supports bigrams and shortcuts.
72 UnigramHandler(FusionDictionary dict, HashMap<String, ArrayList<WeightedString>> bigrams) argument
H A DFusionDictionary.java71 * A group of characters, with a frequency, shortcuts, bigrams, and children.
80 * bigrams, but a non-terminal may not. Moreover, children, if present, are null.
93 final ArrayList<WeightedString> bigrams, final int frequency) {
96 mBigrams = bigrams;
101 final ArrayList<WeightedString> bigrams, final int frequency, final Node children) {
104 mBigrams = bigrams;
163 * lists of bigrams and shortcuts can be passed here. For each word inside,
168 * @param bigrams a list of bigrams, or null.
170 public void add(String word, int frequency, ArrayList<WeightedString> bigrams) { argument
92 CharGroup(final int[] chars, final ArrayList<WeightedString> bigrams, final int frequency) argument
100 CharGroup(final int[] chars, final ArrayList<WeightedString> bigrams, final int frequency, final Node children) argument
210 add(int[] word, int frequency, ArrayList<WeightedString> bigrams) argument
[all...]

Completed in 119 milliseconds