Home | History | Annotate | Download | only in JAJP

Lines Matching refs:word

28     /** Score(frequency value) of word in the learning dictionary */
30 /** Score(frequency value) of word in the user dictionary */
259 /* get clauses without ancillary word */
271 /* get clauses with ancillary word */
315 * @param stem Stem of the clause (a independent word)
377 * @param right Right attribute of the preceding word/clause
378 * @param left Left attribute of the following word/clause
427 WnnWord word;
428 while ((word = dict.getNextWord()) != null) {
429 fzks.add(word);
439 while ((word = dict.getNextWord()) != null) {
443 if (connectible(word.partOfSpeech.right, follow.partOfSpeech.left)) {
444 fzks.add(new WnnWord(key, key, new WnnPOS(word.partOfSpeech.left, follow.partOfSpeech.right)));
478 WnnWord word;
483 while ((word = dict.getNextWord()) != null) {
484 if (input.equals(word.stroke)) {
485 words.add(word);
491 /* store a word which has an unique part of speech tag */
492 while ((word = dict.getNextWord()) != null) {
493 if (input.equals(word.stroke)) {
498 if (w.partOfSpeech.right == word.partOfSpeech.right) {
504 words.add(word);
506 if (word.frequency < 400) {