Home
last modified time | relevance | path

Searched refs:ucl_object_type (Results 1 – 8 of 8) sorted by relevance

/src/contrib/libucl/tests/
H A Dtest_generate.c245 assert (ucl_object_type (it_obj) == UCL_FLOAT); in main()
249 assert (ucl_object_type (it_obj) == UCL_STRING); in main()
253 assert (ucl_object_type (it_obj) == UCL_STRING); in main()
257 assert (ucl_object_type (it_obj) == UCL_STRING); in main()
264 assert (ucl_object_type (it_obj) == UCL_FLOAT); in main()
267 assert (ucl_object_type (it_obj) == UCL_INT); in main()
270 assert (ucl_object_type (it_obj) == UCL_FLOAT); in main()
273 assert (ucl_object_type (it_obj) == UCL_BOOLEAN); in main()
/src/contrib/libucl/src/
H A Ducl_util.c1239 if (ucl_object_type (old_obj) == UCL_ARRAY) {
1323 if (ucl_object_type (old_obj) == UCL_OBJECT) {
1332 ucl_object_type_to_string (ucl_object_type (old_obj)));
1628 if (ucl_object_type(param) == UCL_STRING) {
1945 if (parent == NULL || ucl_object_type (parent) != UCL_OBJECT) {
1952 ucl_object_type (parser->stack->obj) != UCL_OBJECT) {
3085 ucl_object_type (const ucl_object_t *obj) function
H A Ducl_hash.c624 if (ucl_object_type (elt->obj) == UCL_OBJECT) { in ucl_hash_sort()
H A Ducl_parser.c3219 if(stack == NULL || stack->obj == NULL || ucl_object_type (stack->obj) != UCL_OBJECT) in ucl_parser_get_current_stack_object()
3227 if(stack == NULL || stack->obj == NULL || ucl_object_type (stack->obj) != UCL_OBJECT) in ucl_parser_get_current_stack_object()
/src/contrib/libucl/lua/
H A Dlua_ucl.c1171 if (schema && obj && ucl_object_type (schema) == UCL_OBJECT) { in lua_ucl_object_validate()
1492 if (ucl_object_type (obj) == UCL_OBJECT) { in lua_ucl_to_format()
/src/usr.sbin/bhyve/
H A Dsnapshot.c433 if (ucl_object_type(devs) != UCL_ARRAY) { in lookup_dev()
461 if (ucl_object_type(basic_meta_obj) != UCL_OBJECT) { in lookup_basic_metadata_object()
/src/contrib/libucl/include/
H A Ducl.h316 UCL_EXTERN ucl_type_t ucl_object_type (const ucl_object_t *obj);
H A Ducl++.h340 return ucl_object_type (obj.get ()); in type()