Home
last modified time | relevance | path

Searched refs:allow_array (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/libucl/lua/
H A Dlua_ucl.c75 static int ucl_object_lua_push_scalar (lua_State *L, const ucl_object_t *obj, bool allow_array);
140 bool allow_array) in ucl_object_lua_push_object() argument
146 if (allow_array && obj->next != NULL) { in ucl_object_lua_push_object()
215 bool allow_array) in ucl_object_lua_push_scalar() argument
219 if (allow_array && obj->next != NULL) { in ucl_object_lua_push_scalar()
273 ucl_object_push_lua (lua_State *L, const ucl_object_t *obj, bool allow_array) in ucl_object_push_lua() argument
277 return ucl_object_lua_push_object (L, obj, allow_array); in ucl_object_push_lua()
281 return ucl_object_lua_push_scalar (L, obj, allow_array); in ucl_object_push_lua()
/freebsd-12.1/contrib/libucl/doc/
H A Dlua_api.md45 > [`ucl_object_push_lua(L, obj, allow_array)`](#function-ucl_object_push_lual-obj-allow_array)
64 ### Function `ucl_object_push_lua(L, obj, allow_array)`
79 - `allow_array {bool}`: expand implicit arrays (should be true for all but partial arrays)
/freebsd-12.1/contrib/libucl/include/
H A Dlua_ucl.h64 const ucl_object_t *obj, bool allow_array);
/freebsd-12.1/contrib/libucl/src/
H A Ducl_util.c3201 ucl_object_copy_internal (const ucl_object_t *other, bool allow_array) argument
3254 else if (allow_array && other->next != NULL) {