Searched defs:all (Results 1 - 3 of 3) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DOpenWnnClauseConverterJAJP.java38 /** search cache for all independent words (jiritsugo) */
253 * @param all Get all candidates or not
256 private boolean singleClauseConvert(LinkedList clauseList, String input, WnnPOS terminal, boolean all) { argument
260 ArrayList<WnnWord> stems = getIndependentWords(input, all);
265 if (addClause(clauseList, input, stem, null, terminal, all)) {
283 stems = getIndependentWords(str, all);
295 if (all || stem.frequency > max) {
299 if (addClause(clauseList, input, stem, fzk, terminal, all)) {
318 * @param all Ge
321 addClause(LinkedList<WnnClause> clauseList, String input, WnnWord stem, WnnWord fzk, WnnPOS terminal, boolean all) argument
460 getIndependentWords(String input, boolean all) argument
526 addAutoGeneratedCandidates(String input, ArrayList wordList, boolean all) argument
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DSuggest.java263 private CharSequence capitalizeWord(boolean all, boolean first, CharSequence word) { argument
264 if (TextUtils.isEmpty(word) || !(all || first)) return word;
268 if (all) {
325 // Nothing entered: return all bigrams for the previous word
/packages/inputmethods/LatinIME/native/src/
H A Ddefines.h62 double all = 0; local
64 all += profile_buf[i];
66 if (all == 0) all = 1;
70 i, (profile_buf[i] * 100 / all),
209 // Minimum suggest depth for one word for all cases except for missing space suggestions.

Completed in 2606 milliseconds