Lines Matching defs:methods
40 static XLCd create (const char *name, XLCdMethods methods);
78 XLCdMethods methods)
94 memcpy(new,methods,sizeof(XLCdPublicMethodsRec));
95 lcd->methods = (XLCdMethods) new;
144 XLCdMethods methods = lcd->methods;
147 if (methods->close == NULL)
148 methods->close = core->close;
150 if (methods->map_modifiers == NULL)
151 methods->map_modifiers = core->map_modifiers;
153 if (methods->open_om == NULL)
160 if (methods->open_im == NULL)
167 if (methods->init_parse_info == NULL)
168 methods->init_parse_info = core->init_parse_info;
170 if (methods->mb_text_prop_to_list == NULL)
171 methods->mb_text_prop_to_list = core->mb_text_prop_to_list;
173 if (methods->wc_text_prop_to_list == NULL)
174 methods->wc_text_prop_to_list = core->wc_text_prop_to_list;
176 if (methods->utf8_text_prop_to_list == NULL)
177 methods->utf8_text_prop_to_list = core->utf8_text_prop_to_list;
179 if (methods->mb_text_list_to_prop == NULL)
180 methods->mb_text_list_to_prop = core->mb_text_list_to_prop;
182 if (methods->wc_text_list_to_prop == NULL)
183 methods->wc_text_list_to_prop = core->wc_text_list_to_prop;
185 if (methods->utf8_text_list_to_prop == NULL)
186 methods->utf8_text_list_to_prop = core->utf8_text_list_to_prop;
188 if (methods->wc_free_string_list == NULL)
189 methods->wc_free_string_list = core->wc_free_string_list;
191 if (methods->default_string == NULL)
192 methods->default_string = core->default_string;
201 XLCdPublicMethodsPart *methods = XLC_PUBLIC_METHODS(lcd);
245 if (methods->get_values == NULL)
246 methods->get_values = pub_methods->get_values;
248 if (methods->get_resource == NULL)
249 methods->get_resource = pub_methods->get_resource;
264 Xfree(lcd->methods);