Home
last modified time | relevance | path

Searched refs:ucl_object_fromstring_common (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/libucl/tests/
H A Dtest_generate.c74 cur = ucl_object_fromstring_common ("value1", 0, UCL_STRING_TRIM); in main()
80 cur = ucl_object_fromstring_common (" test string ", 0, UCL_STRING_TRIM); in main()
82 cur = ucl_object_fromstring_common (" test \nstring\n\r\n\b\t\f\\\" ", 0, in main()
85 cur = ucl_object_fromstring_common (" test string \n", 0, 0); in main()
143 cur = ucl_object_fromstring_common (" ", 0, UCL_STRING_TRIM); in main()
145 cur = ucl_object_fromstring_common ("", 0, UCL_STRING_ESCAPE); in main()
147 cur = ucl_object_fromstring_common (" \n", 0, UCL_STRING_ESCAPE); in main()
150 cur = ucl_object_fromstring_common ("1mb", 0, UCL_STRING_ESCAPE | UCL_STRING_PARSE); in main()
152 cur = ucl_object_fromstring_common ("3.14", 0, UCL_STRING_PARSE); in main()
154 cur = ucl_object_fromstring_common ("true", 0, UCL_STRING_PARSE); in main()
[all …]
H A Dtest_streamline.c83 cur = ucl_object_fromstring_common (" test string ", 0, UCL_STRING_TRIM); in main()
85 …cur = ucl_object_fromstring_common (" test \nstring\n ", 0, UCL_STRING_TRIM | UCL_STRING_ESCAP… in main()
87 cur = ucl_object_fromstring_common (" test string \n", 0, 0); in main()
H A Dtest_msgpack.c264 ucl_array_append (res, ucl_object_fromstring_common (str, cur_len % 128, in ucl_test_string()
270 ucl_array_append (res, ucl_object_fromstring_common (str, cur_len % 512, in ucl_test_string()
276 elt = ucl_object_fromstring_common (str, cur_len % 128, in ucl_test_string()
284 elt = ucl_object_fromstring_common (str, cur_len % 512, in ucl_test_string()
293 elt = ucl_object_fromstring_common (str, 65537, in ucl_test_string()
456 res = ucl_object_fromstring_common (str, cur_len % 100000, in ucl_test_large_string()
/freebsd/contrib/libucl/lua/
H A Dlua_ucl.c493 obj = ucl_object_fromstring_common(str, sz, flags); in ucl_object_lua_fromelt()
496 obj = ucl_object_fromstring_common("", sz, flags); in ucl_object_lua_fromelt()
525 obj = ucl_object_fromstring_common(t->start, t->len, 0); in ucl_object_lua_fromelt()
528 obj = ucl_object_fromstring_common("", 0, 0); in ucl_object_lua_fromelt()
/freebsd/contrib/libucl/include/
H A Ducl++.h299 obj.reset (ucl_object_fromstring_common (value.data (), value.size (), in Ucl()
303 obj.reset (ucl_object_fromstring_common (value, 0, UCL_STRING_RAW)); in Ucl()
H A Ducl.h340 UCL_EXTERN ucl_object_t * ucl_object_fromstring_common (const char *str, size_t len,
/freebsd/contrib/libucl/src/
H A Ducl_util.c1887 obj = ucl_object_fromstring_common (buf, buflen, flags);
2237 ucl_object_fromstring_common (const char *str, size_t len, enum ucl_string_flags flags) function
3097 return ucl_object_fromstring_common (str, 0, UCL_STRING_RAW);
3103 return ucl_object_fromstring_common (str, len, UCL_STRING_RAW);
H A Ducl_parser.c104 nobj = ucl_object_fromstring_common (begin, len, 0); in ucl_save_comment()