Home | History | Annotate | Download | only in JAJP

Lines Matching refs:clause

23  * The penWnn Clause Converter class for Japanese IME.
43 /** connect matrix for generating a clause */
52 /** work area for consecutive clause conversion */
57 /** part of speech (end of clause/not end of sentence) */
59 /** part of speech (end of clause/any place) */
64 /** cost value of a clause */
118 * Kana-to-Kanji conversion (single clause).
120 * This method execute single clause conversion.
138 /* try single clause conversion */
146 * Consecutive clause conversion.
149 * @return The result of consecutive clause conversion; {@code null} if fail.
160 /* consecutive clause conversion */
166 /* limit the length of a clause */
194 /* get the clause which can be the end of the sentence */
197 /* get the clause which is not the end of the sentence */
222 /* return the result of the consecutive clause conversion */
230 * Consecutive clause conversion.
239 /* set the result of the consecutive clause conversion on the top of the list */
248 * Single clause conversion.
281 /* get candidates of stem in a clause */
311 * Add valid clause to the candidates list.
315 * @param stem Stem of the clause (a independent word)
319 * @return {@code true} if add the clause to the list; {@code false} if not.
323 WnnClause clause = null;
327 clause = new WnnClause(input, stem);
332 clause = new WnnClause(input, stem, fzk);
335 if (clause == null) {
338 if (mFilter != null && !mFilter.isAllowed(clause)) {
345 clauseList.add(0, clause);
349 /* reserve only the best clause */
351 if (best.frequency < clause.frequency) {
352 clauseList.set(0, clause);
361 if (clausei.frequency < clause.frequency) {
366 clauseList.add(index, clause);
377 * @param right Right attribute of the preceding word/clause
378 * @param left Left attribute of the following word/clause
531 * Get a default clause.
533 * This method generates a clause which has a string same as input
537 * @return Default clause