Home
last modified time | relevance | path

Searched refs:partOfSpeech (Results 1 – 7 of 7) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DWnnSentence.java44 this.partOfSpeech = new WnnPOS(); in WnnSentence()
55 this.partOfSpeech = headClause.partOfSpeech; in WnnSentence()
70 … this.partOfSpeech = new WnnPOS(headClause.partOfSpeech.left, lastClause.partOfSpeech.right); in WnnSentence()
87 this.partOfSpeech = clause.partOfSpeech; in WnnSentence()
105 this.partOfSpeech = new WnnPOS(prev.partOfSpeech.left, clause.partOfSpeech.right); in WnnSentence()
126 this.partOfSpeech = head.partOfSpeech; in WnnSentence()
136 this.partOfSpeech = new WnnPOS(head.partOfSpeech.left, tail.partOfSpeech.right); in WnnSentence()
DOpenWnnDictionaryImpl.java581 if( wnnWord == null || wnnWord.partOfSpeech == null ) { in searchWord()
607 OpenWnnDictionaryImplJni.setLeftPartOfSpeech( this.mWnnWork, wnnWord.partOfSpeech.left ); in searchWord()
608 OpenWnnDictionaryImplJni.setRightPartOfSpeech( this.mWnnWork, wnnWord.partOfSpeech.right ); in searchWord()
651 result.partOfSpeech.left = mDbCursor.getInt( 2 ); in getNextWord()
652 result.partOfSpeech.right = mDbCursor.getInt( 3 ); in getNextWord()
687 … result.partOfSpeech.left = OpenWnnDictionaryImplJni.getLeftPartOfSpeech( this.mWnnWork ); in getNextWord()
688 … result.partOfSpeech.right = OpenWnnDictionaryImplJni.getRightPartOfSpeech( this.mWnnWork ); in getNextWord()
900 content.put( COLUMN_NAME_POS_LEFT, word[index].partOfSpeech.left ); in addWordToUserDictionary()
901 … content.put( COLUMN_NAME_POS_RIGHT, word[index].partOfSpeech.right ); in addWordToUserDictionary()
1067 content.put( COLUMN_NAME_POS_LEFT, word.partOfSpeech.left ); in learnWord()
[all …]
DWnnClause.java51 stem.partOfSpeech, in WnnClause()
67 new WnnPOS(stem.partOfSpeech.left, fzk.partOfSpeech.right), in WnnClause()
DWnnWord.java34 public WnnPOS partOfSpeech; field in WnnWord
117 this.partOfSpeech = posTag; in WnnWord()
DOpenWnnDictionaryImplJni.java342 public static final native int setLeftPartOfSpeech( long work, int partOfSpeech ); in setLeftPartOfSpeech() argument
351 public static final native int setRightPartOfSpeech( long work, int partOfSpeech ); in setRightPartOfSpeech() argument
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DOpenWnnClauseConverterJAJP.java326 if (connectible(stem.partOfSpeech.right, terminal.left)) { in addClause()
330 if (connectible(stem.partOfSpeech.right, fzk.partOfSpeech.left) in addClause()
331 && connectible(fzk.partOfSpeech.right, terminal.left)) { in addClause()
443 if (connectible(word.partOfSpeech.right, follow.partOfSpeech.left)) { in getAncillaryPattern()
444 … fzks.add(new WnnWord(key, key, new WnnPOS(word.partOfSpeech.left, follow.partOfSpeech.right))); in getAncillaryPattern()
498 if (w.partOfSpeech.right == word.partOfSpeech.right) { in getIndependentWords()
DOpenWnnEngineJAJP.java495 if (word.partOfSpeech.right == 0) { in learn()
496 word.partOfSpeech = mDictionaryJP.getPOS(WnnDictionary.POS_TYPE_MEISI); in learn()
530 if (word.partOfSpeech.right == 0) { in addWord()
531 word.partOfSpeech = mDictionaryJP.getPOS(WnnDictionary.POS_TYPE_MEISI); in addWord()