|
Adaptive Framework
0.9.0
|
Adaptive data type boolean header. More...
Go to the source code of this file.
Data Structures | |
| struct | afw_value_boolean_s |
| struct for data type boolean values. More... | |
Macros | |
| #define | AFW_DATA_TYPE_ID_Q_boolean "boolean" |
| Quoted data type id for boolean. | |
| #define | AFW_DATA_TYPE_ID_U_boolean boolean |
| Unquoted data type id for boolean. | |
| #define | AFW_DATA_TYPE_ID_S_boolean afw_s_boolean |
| String for data type id boolean. | |
| #define | AFW_DATA_TYPE_CTYPE_Q_boolean "afw_boolean_t" |
| Quoted c type for data type id boolean. | |
| #define | afw_data_type_is_boolean(A_DATA_TYPE) |
| Macro to determine if data type is boolean. More... | |
| #define | afw_value_is_boolean(A_VALUE) |
| Macro to determine if value is evaluated boolean. More... | |
| #define | afw_value_is_list_of_boolean(A_VALUE) |
| Macro to determine if value is evaluated list of boolean. More... | |
| #define | afw_object_old_get_property_as_boolean(object, property_name, found, xctx) |
| Get property function for data type boolean value. More... | |
| #define | afw_object_get_property_as_boolean(object, property_name, found, p, xctx) |
| Get property function for data type boolean value. More... | |
| #define | afw_object_old_get_next_property_as_boolean(object, iterator, property_name, found, xctx) |
| Get next property function for data type boolean value. More... | |
| #define | afw_object_get_next_property_as_boolean(object, iterator, property_name, found, p, xctx) |
| Get next property function for data type boolean value. More... | |
| #define | afw_list_of_boolean_get_next(list, iterator, found, xctx) |
| Get next value from list of boolean. More... | |
Functions | |
| void | afw_data_type_boolean_to_internal (afw_boolean_t *to_internal, const afw_utf8_t *from_utf8, const afw_pool_t *p, afw_xctx_t *xctx) |
| Convert data type boolean string to afw_boolean_t *. More... | |
| const afw_utf8_t * | afw_data_type_boolean_to_utf8 (afw_boolean_t internal, const afw_pool_t *p, afw_xctx_t *xctx) |
| Convert data type boolean internal representation to utf-8. More... | |
| afw_boolean_t | afw_value_as_boolean (const afw_value_t *value, afw_xctx_t *xctx) |
| Typesafe cast of data type boolean. More... | |
| afw_value_boolean_t * | afw_value_allocate_boolean (const afw_pool_t *p, afw_xctx_t *xctx) |
| Allocate function for unmanaged data type boolean value. More... | |
| const afw_value_t * | afw_value_create_boolean (afw_boolean_t internal, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create function for unmanaged data type boolean value. More... | |
| afw_value_boolean_t * | afw_value_allocate_managed_boolean (const afw_pool_t *p, afw_xctx_t *xctx) |
| Allocate function for managed data type boolean value. More... | |
| const afw_value_t * | afw_value_create_managed_boolean (afw_boolean_t internal, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create function for managed data type boolean value. More... | |
| afw_value_boolean_t * | afw_value_allocate_permanent_boolean (const afw_pool_t *p, afw_xctx_t *xctx) |
| Allocate function for permanent data type boolean value. More... | |
| const afw_value_t * | afw_value_create_permanent_boolean (afw_boolean_t internal, const afw_pool_t *p, afw_xctx_t *xctx) |
| Create function for permanent data type boolean value. More... | |
| afw_boolean_t | afw_object_get_property_as_boolean_source (const afw_object_t *object, const afw_utf8_t *property_name, afw_boolean_t *found, const afw_utf8_z_t *source_z, const afw_pool_t *p, afw_xctx_t *xctx) |
| Get property function for data type boolean value. More... | |
| afw_boolean_t | afw_object_get_next_property_as_boolean_source (const afw_object_t *object, const afw_iterator_t **iterator, const afw_utf8_t **property_name, afw_boolean_t *found, const afw_utf8_z_t *source_z, const afw_pool_t *p, afw_xctx_t *xctx) |
| Get property function for data type boolean value. More... | |
| void | afw_object_set_property_as_boolean (const afw_object_t *object, const afw_utf8_t *property_name, afw_boolean_t internal, afw_xctx_t *xctx) |
| Set property function for data type boolean values. More... | |
| afw_boolean_t | afw_list_of_boolean_get_next_source (const afw_list_t *instance, const afw_iterator_t **iterator, afw_boolean_t *found, const afw_utf8_z_t *source_z, afw_xctx_t *xctx) |
| Get next value from list of boolean. More... | |
| void | afw_list_of_boolean_add (const afw_list_t *instance, const afw_boolean_t *value, afw_xctx_t *xctx) |
| Add value from list of boolean. More... | |
| void | afw_list_of_boolean_remove (const afw_list_t *instance, const afw_boolean_t *value, afw_xctx_t *xctx) |
| Remove value from list of boolean. More... | |
Variables | |
| afw_data_type_boolean_id_value | |
| Adaptive string value for "boolean". | |
| afw_data_type_boolean | |
| Data type struct for boolean. | |
| afw_value_evaluated_boolean_inf | |
| Unmanaged evaluated value inf for data type boolean. More... | |
| afw_value_managed_boolean_inf | |
| Managed evaluated value inf for data type boolean. More... | |
| afw_value_permanent_boolean_inf | |
| Permanent managed (life of afw environment) value inf for data type boolean. More... | |
| afw_data_type_boolean_direct | |
| extern for data type boolean struct. More... | |
| afw_data_type_boolean_inf | |
| extern for data type boolean inf. More... | |
Adaptive data type boolean header.
Definition in file afw_data_type_boolean_binding.h.