OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:partOfSpeech
(Results
1 - 7
of
7
) sorted by null
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnClause.java
51
stem.
partOfSpeech
,
67
new WnnPOS(stem.
partOfSpeech
.left, fzk.
partOfSpeech
.right),
WnnSentence.java
44
this.
partOfSpeech
= new WnnPOS();
55
this.
partOfSpeech
= headClause.
partOfSpeech
;
70
this.
partOfSpeech
= new WnnPOS(headClause.
partOfSpeech
.left, lastClause.
partOfSpeech
.right);
87
this.
partOfSpeech
= clause.
partOfSpeech
;
105
this.
partOfSpeech
= new WnnPOS(prev.
partOfSpeech
.left, clause.partOfSpeech.right)
[
all
...]
WnnWord.java
34
public WnnPOS
partOfSpeech
;
117
this.
partOfSpeech
= posTag;
OpenWnnDictionaryImplJni.java
338
* @param
partOfSpeech
The part of speech
342
public static final native int setLeftPartOfSpeech( long work, int
partOfSpeech
);
347
* @param
partOfSpeech
The part of speech
351
public static final native int setRightPartOfSpeech( long work, int
partOfSpeech
);
OpenWnnDictionaryImpl.java
577
if( wnnWord == null || wnnWord.
partOfSpeech
== null ) {
603
OpenWnnDictionaryImplJni.setLeftPartOfSpeech( this.mWnnWork, wnnWord.
partOfSpeech
.left );
604
OpenWnnDictionaryImplJni.setRightPartOfSpeech( this.mWnnWork, wnnWord.
partOfSpeech
.right );
647
result.
partOfSpeech
.left = mDbCursor.getInt( 2 );
648
result.
partOfSpeech
.right = mDbCursor.getInt( 3 );
683
result.
partOfSpeech
.left = OpenWnnDictionaryImplJni.getLeftPartOfSpeech( this.mWnnWork );
684
result.
partOfSpeech
.right = OpenWnnDictionaryImplJni.getRightPartOfSpeech( this.mWnnWork );
[
all
...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnClauseConverterJAJP.java
326
if (connectible(stem.
partOfSpeech
.right, terminal.left)) {
330
if (connectible(stem.
partOfSpeech
.right, fzk.
partOfSpeech
.left)
331
&& connectible(fzk.
partOfSpeech
.right, terminal.left)) {
443
if (connectible(word.
partOfSpeech
.right, follow.
partOfSpeech
.left)) {
444
fzks.add(new WnnWord(key, key, new WnnPOS(word.
partOfSpeech
.left, follow.
partOfSpeech
.right)));
498
if (w.
partOfSpeech
.right == word.
partOfSpeech
.right)
[
all
...]
OpenWnnEngineJAJP.java
492
if (word.
partOfSpeech
.right == 0) {
493
word.
partOfSpeech
= mDictionaryJP.getPOS(WnnDictionary.POS_TYPE_MEISI);
527
if (word.
partOfSpeech
.right == 0) {
528
word.
partOfSpeech
= mDictionaryJP.getPOS(WnnDictionary.POS_TYPE_MEISI);
Completed in 5986 milliseconds