Home
last modified time | relevance | path

Searched refs:lcount (Results 1 – 2 of 2) sorted by relevance

/packages/inputmethods/OpenWnn/libs/libwnnDictionary/
DOpenWnnDictionaryImplJni.c792 NJ_UINT16 lcount = 0, rcount = 0; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_setLeftPartOfSpeech() local
799 njd_r_get_count( work->dicSet.rHandle[ NJ_MODE_TYPE_HENKAN ], &lcount, &rcount ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_setLeftPartOfSpeech()
801 if( leftPartOfSpeech < 1 || leftPartOfSpeech > lcount ) { in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_setLeftPartOfSpeech()
826 NJ_UINT16 lcount = 0, rcount = 0; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_setRightPartOfSpeech() local
833 njd_r_get_count( work->dicSet.rHandle[ NJ_MODE_TYPE_HENKAN ], &lcount, &rcount ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_setRightPartOfSpeech()
1059 NJ_UINT16 lcount = 0, rcount = 0; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray() local
1067 njd_r_get_count( work->dicSet.rHandle[ NJ_MODE_TYPE_HENKAN ], &lcount, &rcount ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray()
1069 if( leftPartOfSpeech < 0 || leftPartOfSpeech > lcount ) { in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray()
1132 NJ_UINT16 lcount = 0, rcount = 0; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getNumberOfLeftPOS() local
1134 njd_r_get_count( work->dicSet.rHandle[ NJ_MODE_TYPE_HENKAN ], &lcount, &rcount ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getNumberOfLeftPOS()
[all …]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DOpenWnnDictionaryImpl.java782 int lcount, i; in getConnectMatrix() local
786 lcount = OpenWnnDictionaryImplJni.getNumberOfLeftPOS( this.mWnnWork ); in getConnectMatrix()
787 result = new byte[ lcount + 1 ][ ]; in getConnectMatrix()
790 for( i = 0 ; i < lcount + 1 ; i++ ) { in getConnectMatrix()