• Home
  • Raw
  • Download

Lines Matching refs:result

218 		NJ_INT16		result;  in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()  local
262 result = njx_init( &( work->wnnClass ) ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()
264 if( result >= 0 ) { in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()
409 jint result; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_searchWord() local
427 result = ( jint )njx_search_word( &( work->wnnClass ), &( work->cursor ) ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_searchWord()
430 if( result == 1 ) { in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_searchWord()
437 return result; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_searchWord()
460 jint result; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getNextWord() local
464result = ( jint )njx_get_word( &( work->wnnClass ), &( work->cursor ), &( work->result ) ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getNextWord()
467result = ( jint )njx_get_word( &( work->wnnClass ), &( work->cursor ), &( work->result ) ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getNextWord()
468 …if( length == ( NJ_GET_YLEN_FROM_STEM( &( work->result.word ) ) + NJ_GET_YLEN_FROM_FZK( &( work->r… in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getNextWord()
471 } while( result > 0 ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getNextWord()
475 if( result > 0 ) { in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getNextWord()
480 return result; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getNextWord()
508 …if( njx_get_stroke( &( work->wnnClass ), &( work->result ), stroke, sizeof( NJ_CHAR ) * ( NJ_MAX_L… in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getStroke()
541 …if( njx_get_candidate( &( work->wnnClass ), &( work->result ), candidate, sizeof( NJ_CHAR ) * ( NJ… in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getCandidate()
570 return ( jint )( work->result.word.stem.hindo ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getFrequency()
733 return NJ_GET_FPOS_FROM_STEM( &( work->result.word ) ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getLeftPartOfSpeech()
752 return NJ_GET_BPOS_FROM_STEM( &( work->result.word ) ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getRightPartOfSpeech()
772 memset( &( work->result ), 0x00, sizeof( NJ_RESULT ) ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_clearResult()
806 NJ_SET_FPOS_TO_STEM( &( work->result.word ), leftPartOfSpeech ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_setLeftPartOfSpeech()
840 NJ_SET_BPOS_TO_STEM( &( work->result.word ), rightPartOfSpeech ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_setRightPartOfSpeech()
932 return ( jint )njx_select( &( work->wnnClass ), &( work->result ) ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_selectWord()
1078 jbyte *result; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray() local
1079 result = ( *env )->GetByteArrayElements( env, resultJ, NULL ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray()
1081 if( result != NULL ) { in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray()
1087 result[ i ] = 0; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray()
1094 result[ 0 ] = 0; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray()
1098 result[ i + 1 ] = 1; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray()
1100 result[ i + 1 ] = 0; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray()
1105 ( *env )->ReleaseByteArrayElements( env, resultJ, result, 0 ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_getConnectArray()