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

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DWnnClause.java45 * @param stem The independent word part of the clause
47 public WnnClause (String stroke, WnnWord stem) { argument
48 super(stem.id,
49 stem.candidate,
51 stem.partOfSpeech,
52 stem.frequency,
60 * @param stem The independent word part of the clause
63 public WnnClause (String stroke, WnnWord stem, WnnWord fzk) { argument
64 super(stem.id,
65 stem
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DOpenWnnClauseConverterJAJP.java264 WnnWord stem = stemsi.next();
265 if (addClause(clauseList, input, stem, null, terminal, all)) {
281 /* get candidates of stem in a clause */
294 WnnWord stem = stemsi.next();
295 if (all || stem.frequency > max) {
299 if (addClause(clauseList, input, stem, fzk, terminal, all)) {
301 max = stem.frequency;
315 * @param stem Stem of the clause (a independent word)
321 private boolean addClause(LinkedList<WnnClause> clauseList, String input, WnnWord stem, WnnWord fzk, argument
326 if (connectible(stem
[all...]
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
H A Dnj_lib.h253 } stem; member in struct:__anon33
277 } stem; member in struct:__anon36
287 #define NJ_GET_FPOS_FROM_STEM(s) ((NJ_UINT16)((s)->stem.info1 >> 7))
288 #define NJ_GET_BPOS_FROM_STEM(s) ((NJ_UINT16)((s)->stem.info2 >> 7))
291 #define NJ_SET_FPOS_TO_STEM(s,v) ((s)->stem.info1 = ((s)->stem.info1 & 0x007F) | (NJ_UINT16)((v) << 7))
292 #define NJ_GET_YLEN_FROM_STEM(s) ((NJ_UINT8)((s)->stem.info1 & 0x7F))
293 #define NJ_GET_KLEN_FROM_STEM(s) ((NJ_UINT8)((s)->stem.info2 & 0x7F))
294 #define NJ_SET_YLEN_TO_STEM(s,v) ((s)->stem.info1 = ((s)->stem
[all...]

Completed in 65 milliseconds