Searched refs:JSON_END (Results 1 - 3 of 3) sorted by relevance
/systemd/src/test/ |
H A D | test-json.c | 43 if (t == JSON_END || t < 0) 169 test_one("", JSON_END); 170 test_one(" ", JSON_END); 171 test_one("0", JSON_INTEGER, (intmax_t) 0, JSON_END); 172 test_one("1234", JSON_INTEGER, (intmax_t) 1234, JSON_END); 173 test_one("3.141", JSON_REAL, 3.141, JSON_END); 174 test_one("0.0", JSON_REAL, 0.0, JSON_END); 175 test_one("7e3", JSON_REAL, 7e3, JSON_END); 176 test_one("-7e-3", JSON_REAL, -7e-3, JSON_END); 177 test_one("true", JSON_BOOLEAN, true, JSON_END); [all...] |
/systemd/src/basic/ |
H A D | json.h | 30 JSON_END, enumerator in enum:__anon16
|
H A D | json.c | 502 return JSON_END; 791 else if (t == JSON_END)
|
Completed in 30 milliseconds