Home
last modified time | relevance | path

Searched refs:ucl_object_fromstring_common (Results 1 – 9 of 9) 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()
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()
158 cur = ucl_object_fromstring_common ("gslin@gslin.org", 0, UCL_STRING_PARSE_INT); in main()
[all …]
H A Dtest_streamline.c58 cur = ucl_object_fromstring_common (" test string ", 0, UCL_STRING_TRIM); in main()
60 …cur = ucl_object_fromstring_common (" test \nstring\n ", 0, UCL_STRING_TRIM | UCL_STRING_ESCAP… in main()
62 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/doc/
H A Dapi.md35 - [ucl_object_fromstring_common](#ucl_object_fromstring_common)
356 …a string performing various parsing or conversion operations called `ucl_object_fromstring_common`.
358 ## ucl_object_fromstring_common section in Generation functions
360 ucl_object_t * ucl_object_fromstring_common (const char *str,
/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.c1863 obj = ucl_object_fromstring_common (buf, buflen, flags);
2213 ucl_object_fromstring_common (const char *str, size_t len, enum ucl_string_flags flags) function
3071 return ucl_object_fromstring_common (str, 0, UCL_STRING_ESCAPE);
3077 return ucl_object_fromstring_common (str, len, UCL_STRING_ESCAPE);
H A Ducl_parser.c101 nobj = ucl_object_fromstring_common (begin, len, 0); in ucl_save_comment()
/freebsd/contrib/libucl/lua/
H A Dlua_ucl.c482 obj = ucl_object_fromstring_common (str, sz, flags); in ucl_object_lua_fromelt()