Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/libucl/tests/
H A Dtest_generate.c244 assert (ucl_object_type (it_obj) == UCL_FLOAT); in main()
247 assert (ucl_object_type (it_obj) == UCL_STRING); in main()
250 assert (ucl_object_type (it_obj) == UCL_STRING); in main()
253 assert (ucl_object_type (it_obj) == UCL_STRING); in main()
258 assert (ucl_object_type (it_obj) == UCL_FLOAT); in main()
260 assert (ucl_object_type (it_obj) == UCL_INT); in main()
262 assert (ucl_object_type (it_obj) == UCL_FLOAT); in main()
264 assert (ucl_object_type (it_obj) == UCL_BOOLEAN); in main()
/freebsd-12.1/contrib/libucl/haskell/
H A Dhucl.hs30 foreign import ccall "ucl_object_type" ucl_object_type :: UCLObjectHandle -> CUInt
93 ucl_to_msgpack_object o = toMsgPackObj (ucl_object_type o) o
111 iterateObject obj it vec = if ucl_object_type obj == ucl_NULL
120 iterateArray obj it vec = if ucl_object_type obj == ucl_NULL
/freebsd-12.1/contrib/libucl/src/
H A Ducl_util.c1086 ucl_object_type(old_obj) == UCL_ARRAY) {
1087 if (ucl_object_type(old_obj) == UCL_ARRAY) {
1138 if (ucl_object_type (old_obj) == UCL_OBJECT) {
1418 if (ucl_object_type(param) == UCL_STRING) {
1731 if (parent == NULL || ucl_object_type (parent) != UCL_OBJECT) {
1738 ucl_object_type (parser->stack->obj) != UCL_OBJECT) {
2707 ucl_object_type (const ucl_object_t *obj) function
/freebsd-12.1/contrib/libucl/include/
H A Ducl.h313 UCL_EXTERN ucl_type_t ucl_object_type (const ucl_object_t *obj);
H A Ducl++.h328 return ucl_object_type (obj.get ()); in type()
/freebsd-12.1/contrib/libucl/lua/
H A Dlua_ucl.c877 if (schema && obj && ucl_object_type (schema) == UCL_OBJECT) { in lua_ucl_object_validate()