Home
last modified time | relevance | path

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

/freebsd-src/contrib/libucl/include/
H A Dlua_ucl.h72 const ucl_object_t *obj, bool allow_array);
81 bool allow_array);
/freebsd-src/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-src/contrib/libucl/lua/
H A Dlua_ucl.c305 ucl_object_push_lua (lua_State *L, const ucl_object_t *obj, bool allow_array) in ucl_object_push_lua() argument
308 allow_array ? LUA_UCL_ALLOW_ARRAY : LUA_UCL_DEFAULT_FLAGS); in ucl_object_push_lua()
312 ucl_object_push_lua_filter_nil (lua_State *L, const ucl_object_t *obj, bool allow_array) in ucl_object_push_lua_filter_nil() argument
315 allow_array ? (LUA_UCL_ALLOW_ARRAY|LUA_UCL_CONVERT_NIL) : in ucl_object_push_lua_filter_nil()
/freebsd-src/contrib/libucl/src/
H A Ducl_util.c3575 ucl_object_copy_internal (const ucl_object_t *other, bool allow_array) argument
3628 else if (allow_array && other->next != NULL) {