Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/debugserver/
H A DJSONTest.cpp26 void ParseAndTestJSON( in ParseAndTestJSON() function
34 ParseAndTestJSON<JSONString>("\"foo\"", [](JSONString &string_val) { in TEST()
38 ParseAndTestJSON<JSONNumber>("3", [](JSONNumber &number_val) { in TEST()
43 ParseAndTestJSON<JSONNumber>("-5", [](JSONNumber &number_val) { in TEST()
47 ParseAndTestJSON<JSONNumber>("-6.4", [](JSONNumber &number_val) { in TEST()
52 ParseAndTestJSON<JSONTrue>("true"); in TEST()
53 ParseAndTestJSON<JSONFalse>("false"); in TEST()
54 ParseAndTestJSON<JSONNull>("null"); in TEST()
55 ParseAndTestJSON<JSONObject>( in TEST()
68 ParseAndTestJSON<JSONArray>("[1, \"bar\", 3.14]", [](JSONArray &array_val) { in TEST()
[all …]