Adaptive Framework
0.9.0
|
Adaptive data type double header. More...
Go to the source code of this file.
Data Structures | |
struct | afw_value_double_s |
struct for data type double values. More... | |
Macros | |
#define | AFW_DATA_TYPE_ID_Q_double "double" |
Quoted data type id for double. | |
#define | AFW_DATA_TYPE_ID_U_double double |
Unquoted data type id for double. | |
#define | AFW_DATA_TYPE_ID_S_double afw_s_double |
String for data type id double. | |
#define | AFW_DATA_TYPE_CTYPE_Q_double "double" |
Quoted c type for data type id double. | |
#define | afw_data_type_is_double(A_DATA_TYPE) |
Macro to determine if data type is double. More... | |
#define | afw_value_is_double(A_VALUE) |
Macro to determine if value is evaluated double. More... | |
#define | afw_value_is_list_of_double(A_VALUE) |
Macro to determine if value is evaluated list of double. More... | |
#define | afw_object_old_get_property_as_double(object, property_name, found, xctx) |
Get property function for data type double value. More... | |
#define | afw_object_get_property_as_double(object, property_name, found, p, xctx) |
Get property function for data type double value. More... | |
#define | afw_object_old_get_next_property_as_double(object, iterator, property_name, found, xctx) |
Get next property function for data type double value. More... | |
#define | afw_object_get_next_property_as_double(object, iterator, property_name, found, p, xctx) |
Get next property function for data type double value. More... | |
#define | afw_list_of_double_get_next(list, iterator, found, xctx) |
Get next value from list of double. More... | |
Functions | |
void | afw_data_type_double_to_internal (double *to_internal, const afw_utf8_t *from_utf8, const afw_pool_t *p, afw_xctx_t *xctx) |
Convert data type double string to double *. More... | |
const afw_utf8_t * | afw_data_type_double_to_utf8 (double internal, const afw_pool_t *p, afw_xctx_t *xctx) |
Convert data type double internal representation to utf-8. More... | |
double | afw_value_as_double (const afw_value_t *value, afw_xctx_t *xctx) |
Typesafe cast of data type double. More... | |
afw_value_double_t * | afw_value_allocate_double (const afw_pool_t *p, afw_xctx_t *xctx) |
Allocate function for unmanaged data type double value. More... | |
const afw_value_t * | afw_value_create_double (double internal, const afw_pool_t *p, afw_xctx_t *xctx) |
Create function for unmanaged data type double value. More... | |
afw_value_double_t * | afw_value_allocate_managed_double (const afw_pool_t *p, afw_xctx_t *xctx) |
Allocate function for managed data type double value. More... | |
const afw_value_t * | afw_value_create_managed_double (double internal, const afw_pool_t *p, afw_xctx_t *xctx) |
Create function for managed data type double value. More... | |
afw_value_double_t * | afw_value_allocate_permanent_double (const afw_pool_t *p, afw_xctx_t *xctx) |
Allocate function for permanent data type double value. More... | |
const afw_value_t * | afw_value_create_permanent_double (double internal, const afw_pool_t *p, afw_xctx_t *xctx) |
Create function for permanent data type double value. More... | |
double | afw_object_get_property_as_double_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 double value. More... | |
double | afw_object_get_next_property_as_double_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 double value. More... | |
void | afw_object_set_property_as_double (const afw_object_t *object, const afw_utf8_t *property_name, double internal, afw_xctx_t *xctx) |
Set property function for data type double values. More... | |
double | afw_list_of_double_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 double. More... | |
void | afw_list_of_double_add (const afw_list_t *instance, const double *value, afw_xctx_t *xctx) |
Add value from list of double. More... | |
void | afw_list_of_double_remove (const afw_list_t *instance, const double *value, afw_xctx_t *xctx) |
Remove value from list of double. More... | |
Variables | |
afw_data_type_double_id_value | |
Adaptive string value for "double". | |
afw_data_type_double | |
Data type struct for double. | |
afw_value_evaluated_double_inf | |
Unmanaged evaluated value inf for data type double. More... | |
afw_value_managed_double_inf | |
Managed evaluated value inf for data type double. More... | |
afw_value_permanent_double_inf | |
Permanent managed (life of afw environment) value inf for data type double. More... | |
afw_data_type_double_direct | |
extern for data type double struct. More... | |
afw_data_type_double_inf | |
extern for data type double inf. More... | |
Adaptive data type double header.
Definition in file afw_data_type_double_binding.h.