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

  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
CharGroupInfo.java 36 final ArrayList<PendingAttribute> bigrams) {
43 mBigrams = bigrams;
Word.java 33 public Word(String word, int frequency, ArrayList<WeightedString> bigrams) {
36 mBigrams = bigrams;
FusionDictionary.java 71 * 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) {
179 add(getCodePoints(word), frequency, bigrams); local
    [all...]
XmlDictInputOutput.java 70 * @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)
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.
BinaryDictInputOutput.java 48 * | has bigrams ? 1 bit, 1 = yes, 0 = no : FLAG_HAS_BIGRAMS
75 * | bigrams address list
627 // Write bigrams
817 ArrayList<PendingAttribute> bigrams = null; local
928 ArrayList<WeightedString> bigrams = null; local
    [all...]
DictionaryMaker.java 75 + "[-s <unigrams.xml> [-b <bigrams.xml>] | -s <binary input>] "
79 + " Source can be an XML file, with an optional XML bigrams file, or a\n"
195 * @param bigramXmlFilename the name of the bigram XML file. Pass null if there are no bigrams.
206 final FileInputStream bigrams = null == bigramXmlFilename ? null : local
208 return XmlDictInputOutput.readDictionaryXml(unigrams, bigrams);

Completed in 2463 milliseconds