Home
last modified time | relevance | path

Searched refs:ucl_object_fromstring (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/libucl/tests/
H A Dtest_generate.c100 cur = ucl_object_fromstring ("abc"); in main()
102 cur = ucl_object_fromstring ("cde"); in main()
104 cur = ucl_object_fromstring ("абв"); /* UTF8 */ in main()
106 cur = ucl_object_fromstring ("Ебв"); /* UTF8 */ in main()
115 cur = ucl_object_fromstring ("��"); /* everybody likes emoji in the code */ in main()
188 ucl_array_append (test_obj, ucl_object_fromstring ("test")); in main()
192 cur = ucl_object_fromstring ("test"); in main()
217 cur = ucl_object_fromstring ("test"); in main()
218 cur = ucl_elt_append (cur, ucl_object_fromstring ("test1")); in main()
220 test = ucl_array_replace_index (ar1, ucl_object_fromstring ("test2"), 0); in main()
/freebsd/contrib/libucl/python/src/
H A Duclmodule.c150 ucl_str = ucl_object_fromstring (PyBytes_AsString (str)); in _iterate_python()
156 return ucl_object_fromstring (PyString_AsString (obj)); in _iterate_python()
/freebsd/contrib/libucl/include/
H A Ducl.h348 UCL_EXTERN ucl_object_t *ucl_object_fromstring (const char *str) UCL_WARN_UNUSED_RESULT;
/freebsd/contrib/libucl/src/
H A Ducl_util.c3069 ucl_object_fromstring (const char *str) function
3929 ucl_object_insert_key (comments, ucl_object_fromstring (comment),
/freebsd/contrib/libucl/doc/
H A Dapi.md353 - `ucl_object_fromstring` - converts `const char *` to UCL object (this string should be NULL termi…