|
const afw_list_t * | afw_list_create_with_options (int options, const afw_data_type_t *data_type, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create an list in memory with options. More...
|
|
const afw_list_t * | afw_list_const_create_array_of_objects (const afw_object_t *const *objects, afw_size_t count, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create an immutable list from an array of objects. More...
|
|
const afw_list_t * | afw_list_const_create_array_of_values (const afw_value_t *const *values, afw_size_t count, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create an immutable list from an array of values. More...
|
|
const afw_list_t * | afw_list_const_create_null_terminated_array_of_objects (const afw_object_t *const *objects, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create an immutable list from NULL terminated array of objects. More...
|
|
const afw_list_t * | afw_list_const_create_null_terminated_array_of_values (const afw_value_t *const *values, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create an immutable list from NULL terminated array of values. More...
|
|
const afw_list_t * | afw_list_create_or_clone (const afw_list_t *list, const afw_data_type_t *data_type, afw_boolean_t clone_values, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create a clone of a list in memory. More...
|
|
const afw_list_t * | afw_list_of_create_from_value (const afw_data_type_t *data_type, const afw_value_t *value, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create a typed list from a value. More...
|
|
const afw_list_t * | afw_list_convert_to_list_of_strings (const afw_list_t *list, const afw_pool_t *p, afw_xctx_t *xctx) |
| Convert a list to a list of strings. More...
|
|
| afw_list_create_wrapper_for_array (const void *array, afw_boolean_t indirect, const afw_data_type_t *data_type, afw_size_t count, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create a immutable list wrapper for an array. More...
|
|
| afw_list_of_utf8_get_next (const afw_list_t *instance, const afw_iterator_t **iterator, afw_xctx_t *xctx) |
| Get next value from list whose data type cType is afw_utf8_t. More...
|
|
void | afw_list_set_immutable (const afw_list_t *instance, afw_xctx_t *xctx) |
| Set a list to immutable if not already. More...
|
|
const afw_data_type_t * | afw_list_determine_data_type_and_set_immutable (const afw_list_t *instance, afw_xctx_t *xctx) |
| Set list to immutable and determine data type of entries. More...
|
|
void | afw_list_add_internal (const afw_list_t *instance, const afw_data_type_t *data_type, const void *internal, afw_xctx_t *xctx) |
| Call method add of interface afw_list_setter. More...
|
|
void | afw_list_add_value (const afw_list_t *instance, const afw_value_t *value, afw_xctx_t *xctx) |
| Call method add_value of interface afw_list_setter. More...
|
|
void | afw_list_remove_all_values (const afw_list_t *instance, afw_xctx_t *xctx) |
| Call method remove_all_values of interface afw_list_setter. More...
|
|
void | afw_list_remove_internal (const afw_list_t *instance, const afw_data_type_t *data_type, const void *internal, afw_xctx_t *xctx) |
| Call method remove of interface afw_list_setter. More...
|
|
void | afw_list_remove_value (const afw_list_t *instance, const afw_value_t *value, afw_xctx_t *xctx) |
| Call method remove_value of interface afw_list_setter. More...
|
|
void | afw_list_set_value_by_index (const afw_list_t *instance, afw_size_t index, const afw_value_t *value, afw_xctx_t *xctx) |
| Call method set_value_by_index of interface afw_list_setter. More...
|
|