Home
last modified time | relevance | path

Searched refs:SDLSKK_Dictionary (Results 1 – 8 of 8) sorted by relevance

/dports/devel/sdlskk/sdlskk-0.5/
H A Dsdlskk.h14 typedef struct SDLSKK_Dictionary SDLSKK_Dictionary; typedef
57 SDLSKK_Context* SDLSKK_Context_new( SDLSKK_Dictionary* dict,
89 SDLSKK_Dictionary* SDLSKK_Dict_new( void );
90 int SDLSKK_Dict_load( SDLSKK_Dictionary* dict, char* filename, int users );
91 int SDLSKK_Dict_save_user_dict( SDLSKK_Dictionary* dict, char* filename );
92 void SDLSKK_Dict_delete( SDLSKK_Dictionary* dict );
93 void SDLSKK_Dict_delete_all( SDLSKK_Dictionary* dict );
H A Ddictionary.c41 SDLSKK_Dictionary* SDLSKK_Dict_new( void ) in SDLSKK_Dict_new()
43 SDLSKK_Dictionary* dict; in SDLSKK_Dict_new()
45 dict = SDLSKK_malloc( sizeof(SDLSKK_Dictionary) ); in SDLSKK_Dict_new()
51 int SDLSKK_Dict_load( SDLSKK_Dictionary* dict, char* filename, int users ) in SDLSKK_Dict_load()
67 void SDLSKK_Dict_delete( SDLSKK_Dictionary* dict ) in SDLSKK_Dict_delete()
72 void SDLSKK_Dict_delete_all( SDLSKK_Dictionary* dict ) in SDLSKK_Dict_delete_all()
78 SDLSKK_DictionaryItem* SDLSKK_Dict_get( SDLSKK_Dictionary* dict, in SDLSKK_Dict_get()
95 void SDLSKK_Dict_add_empty_yomi( SDLSKK_Dictionary* dict, in SDLSKK_Dict_add_empty_yomi()
180 int SDLSKK_Dict_save_user_dict( SDLSKK_Dictionary* dict, char* filename ) in SDLSKK_Dict_save_user_dict()
H A Dtestdict.c19 void print_Dict( SDLSKK_Dictionary *dict ) in print_Dict()
39 void check_DictItem( SDLSKK_Dictionary* dict ) in check_DictItem()
72 SDLSKK_Dictionary* dict; in main()
H A Dsdlskk_internal.h49 struct SDLSKK_Dictionary { struct
54 SDLSKK_Dictionary *dict; argument
97 SDLSKK_Dictionary *dict;
145 SDLSKK_DictionaryItem* SDLSKK_Dict_get( SDLSKK_Dictionary* dict,
147 void SDLSKK_Dict_add_empty_yomi( SDLSKK_Dictionary* dict,
H A Dtestinput.c9 SDLSKK_Dictionary* dict; in main()
H A Dtestrender.c9 SDLSKK_Dictionary* dict;
H A Dunittest.c73 SDLSKK_Dictionary* dict; in test_SDLSKK_DictItem()
833 SDLSKK_Dictionary* dict = context->dict; in test_SDLSKK_Dict_save_user_jisyo()
846 SDLSKK_Dictionary* dict; in test_SDLSKK_Dict_load()
1165 SDLSKK_Dictionary* dict; in setup_SDLSKK_Context()
1182 SDLSKK_Dictionary* dict; in setup_SDLSKK_Context_use_minibuffer()
1199 SDLSKK_Dictionary* dict; in teardown_SDLSKK_Context()
H A Dcontext.c13 SDLSKK_Context* SDLSKK_Context_new( SDLSKK_Dictionary* dict, in SDLSKK_Context_new()