Adaptive Framework
0.9.0
|
Adaptive data type null header. More...
Go to the source code of this file.
Data Structures | |
struct | afw_value_null_s |
struct for data type null values. More... | |
Macros | |
#define | AFW_DATA_TYPE_ID_Q_null "null" |
Quoted data type id for null. | |
#define | AFW_DATA_TYPE_ID_U_null null |
Unquoted data type id for null. | |
#define | AFW_DATA_TYPE_ID_S_null afw_s_null |
String for data type id null. | |
#define | AFW_DATA_TYPE_CTYPE_Q_null "void *" |
Quoted c type for data type id null. | |
#define | afw_data_type_is_null(A_DATA_TYPE) |
Macro to determine if data type is null. More... | |
#define | afw_value_is_null(A_VALUE) |
Macro to determine if value is evaluated null. More... | |
#define | afw_value_is_list_of_null(A_VALUE) |
Macro to determine if value is evaluated list of null. More... | |
#define | afw_object_old_get_property_as_null(object, property_name, xctx) |
Get property function for data type null value. More... | |
#define | afw_object_get_property_as_null(object, property_name, p, xctx) |
Get property function for data type null value. More... | |
#define | afw_object_old_get_next_property_as_null(object, iterator, property_name, xctx) |
Get next property function for data type null value. More... | |
#define | afw_object_get_next_property_as_null(object, iterator, property_name, p, xctx) |
Get next property function for data type null value. More... | |
#define | afw_list_of_null_get_next(list, iterator, xctx) |
Get next value from list of null. More... | |
Functions | |
void | afw_data_type_null_to_internal (void **to_internal, const afw_utf8_t *from_utf8, const afw_pool_t *p, afw_xctx_t *xctx) |
Convert data type null string to void * *. More... | |
const afw_utf8_t * | afw_data_type_null_to_utf8 (void *internal, const afw_pool_t *p, afw_xctx_t *xctx) |
Convert data type null internal representation to utf-8. More... | |
void * | afw_value_as_null (const afw_value_t *value, afw_xctx_t *xctx) |
Typesafe cast of data type null. More... | |
afw_value_null_t * | afw_value_allocate_null (const afw_pool_t *p, afw_xctx_t *xctx) |
Allocate function for unmanaged data type null value. More... | |
const afw_value_t * | afw_value_create_null (void *internal, const afw_pool_t *p, afw_xctx_t *xctx) |
Create function for unmanaged data type null value. More... | |
afw_value_null_t * | afw_value_allocate_managed_null (const afw_pool_t *p, afw_xctx_t *xctx) |
Allocate function for managed data type null value. More... | |
const afw_value_t * | afw_value_create_managed_null (void *internal, const afw_pool_t *p, afw_xctx_t *xctx) |
Create function for managed data type null value. More... | |
afw_value_null_t * | afw_value_allocate_permanent_null (const afw_pool_t *p, afw_xctx_t *xctx) |
Allocate function for permanent data type null value. More... | |
const afw_value_t * | afw_value_create_permanent_null (void *internal, const afw_pool_t *p, afw_xctx_t *xctx) |
Create function for permanent data type null value. More... | |
void * | afw_object_get_property_as_null_source (const afw_object_t *object, const afw_utf8_t *property_name, const afw_utf8_z_t *source_z, const afw_pool_t *p, afw_xctx_t *xctx) |
Get property function for data type null value. More... | |
void * | afw_object_get_next_property_as_null_source (const afw_object_t *object, const afw_iterator_t **iterator, const afw_utf8_t **property_name, const afw_utf8_z_t *source_z, const afw_pool_t *p, afw_xctx_t *xctx) |
Get property function for data type null value. More... | |
void | afw_object_set_property_as_null (const afw_object_t *object, const afw_utf8_t *property_name, void *internal, afw_xctx_t *xctx) |
Set property function for data type null values. More... | |
void * | afw_list_of_null_get_next_source (const afw_list_t *instance, const afw_iterator_t **iterator, const afw_utf8_z_t *source_z, afw_xctx_t *xctx) |
Get next value from list of null. More... | |
void | afw_list_of_null_add (const afw_list_t *instance, const void *value, afw_xctx_t *xctx) |
Add value from list of null. More... | |
void | afw_list_of_null_remove (const afw_list_t *instance, const void *value, afw_xctx_t *xctx) |
Remove value from list of null. More... | |
Variables | |
afw_data_type_null_id_value | |
Adaptive string value for "null". | |
afw_data_type_null | |
Data type struct for null. | |
afw_value_evaluated_null_inf | |
Unmanaged evaluated value inf for data type null. More... | |
afw_value_managed_null_inf | |
Managed evaluated value inf for data type null. More... | |
afw_value_permanent_null_inf | |
Permanent managed (life of afw environment) value inf for data type null. More... | |
afw_data_type_null_direct | |
extern for data type null struct. More... | |
afw_data_type_null_inf | |
extern for data type null inf. More... | |
Adaptive data type null header.
Definition in file afw_data_type_null_binding.h.