Searched refs:allow_array (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/libucl/lua/ |
| H A D | lua_ucl.c | 75 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 D | lua_api.md | 45 > [`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 D | lua_ucl.h | 64 const ucl_object_t *obj, bool allow_array);
|
| /freebsd-12.1/contrib/libucl/src/ |
| H A D | ucl_util.c | 3201 ucl_object_copy_internal (const ucl_object_t *other, bool allow_array) argument 3254 else if (allow_array && other->next != NULL) {
|