Home
last modified time | relevance | path

Searched refs:option_list_t (Results 1 – 13 of 13) sorted by relevance

/dports/games/polyglot/polyglot-1.4.70b/
H A Doption.h53 } option_list_t; typedef
57 extern option_list_t Option[1];
62 extern void option_init (option_list_t *option);
66 extern bool option_set (option_list_t *option,
69 extern bool option_set_default (option_list_t *option,
73 extern const char * option_get (option_list_t *option, const char var[]);
81 extern void option_from_ini (option_list_t *option,
85 extern bool option_is_ok (const option_list_t *option);
87 extern void option_clear (option_list_t *option);
90 extern void option_start_iter (option_list_t *option);
[all …]
H A Doption.c24 option_list_t Option[1];
109 bool option_is_ok(const option_list_t *option) { in option_is_ok()
153 void option_init(option_list_t *option){ in option_init()
162 void option_insert(option_list_t *option, option_t *new_option){ in option_insert()
191 bool option_set(option_list_t *option, in option_set()
217 bool option_set_default(option_list_t *option, in option_set_default()
305 int option_get_int(option_list_t *option, const char name[]) { in option_get_int()
345 void option_start_iter(option_list_t *option){ in option_start_iter()
351 option_t * option_next(option_list_t *option){ in option_next()
377 void option_clear(option_list_t *option){ in option_clear()
[all …]
H A Duci.h32 option_list_t option[1];
/dports/audio/gtick/gtick-0.5.5/src/
H A Doption.h47 typedef struct option_list_t option_list_t; typedef
48 struct option_list_t { struct
55 option_list_t* next; argument
56 option_list_t* previous; argument
59 option_list_t* option_list_new(void);
60 void option_list_delete(option_list_t* list);
61 int option_register(option_list_t** list,
69 int option_set(option_list_t* list, const char* name, const char* value);
70 int option_get_n(option_list_t* list, const char* prefix);
73 int option_restore_all(option_list_t* list);
[all …]
H A Doption.c48 option_list_t* option_list_new(void) { in option_list_new()
56 void option_list_delete(option_list_t* list) { in option_list_delete()
57 option_list_t* temp; in option_list_delete()
82 int option_register(option_list_t** list, in option_register()
91 option_list_t* temp; in option_register()
93 temp = g_malloc(sizeof(option_list_t)); in option_register()
118 int option_set(option_list_t* list, const char* name, const char* value) { in option_set()
141 int option_get_n(option_list_t* list, const char* prefix) { in option_get_n()
159 const char* option_get(option_list_t* list, const char* prefix, int n, in option_get()
180 int option_restore_all(option_list_t* list) { in option_restore_all()
[all …]
H A Doptions.h34 option_list_t* option_list; /* list of available rc options */
/dports/games/xcowsay/xcowsay-1.5.1/src/
H A Dsettings.c46 } option_list_t; typedef
48 static option_list_t *options = NULL;
50 static option_list_t *alloc_node() in alloc_node()
52 option_list_t *node = (option_list_t*)malloc(sizeof(option_list_t)); in alloc_node()
60 option_list_t *it; in get_option()
118 option_list_t *node = alloc_node(); in add_option()
/dports/x11/xstroke/xstroke-0.5.12/
H A Doption.h31 typedef struct option_list option_list_t; typedef
36 int option_list_init(option_list_t *list);
37 void option_list_deinit(option_list_t *list);
39 int option_list_append(option_list_t *list, option_t *option);
H A Doption.c36 int option_list_init(option_list_t *list) in option_list_init()
44 int option_list_append(option_list_t *list, option_t *option) in option_list_append()
63 void option_list_deinit(option_list_t *list) in option_list_deinit()
H A Drec_parse.y65 option_list_t option_list;
/dports/devel/wf-config/wf-config-0.7.1/include/wayfire/config/
H A Dsection.hpp45 using option_list_t = std::vector<std::shared_ptr<option_base_t>>; typedef in wf::config::section_t
49 option_list_t get_registered_options() const;
/dports/devel/wf-config/wf-config-0.7.1/src/
H A Dsection.cpp54 wf::config::section_t::option_list_t wf::config::section_t::get_registered_options() in get_registered_options()
57 option_list_t list; in get_registered_options()
/dports/shells/fish/fish-3.3.1/src/
H A Dcomplete.cpp127 using option_list_t = std::list<complete_entry_opt_t>; typedef
131 option_list_t options;
142 const option_list_t &get_options() const;
183 const option_list_t &completion_entry_t::get_options() const { return options; } in get_options()
883 static size_t short_option_pos(const wcstring &arg, const option_list_t &options) { in short_option_pos()
968 std::vector<option_list_t> all_options; in complete_param_for_command()
982 for (const option_list_t &options : all_options) { in complete_param_for_command()
1852 const option_list_t &options = e.get_options(); in complete_print()