Lines Matching defs:j
20 json j {{"foo", 1}, {"bar", false}}; variable
27 json j {"foo", 1, 42.23, false}; variable
48 json j("Hello world"); variable
55 json j(42); variable
62 json j(42u); variable
69 json j(42.23); variable
76 json j = json::binary({1, 2, 3}); variable
84 json j {{"foo", "bar"}, {"baz", {1, 2, 3, 4}}, {"a", 42u}, {"b", 42.23}, {"c", nullptr}}; variable
95 json j {{"foo", 1}, {"bar", false}}; variable
103 json j {"foo", 1, 42.23, false}; variable
127 json j("Hello world"); variable
135 json j(42); variable
143 json j(42u); variable
151 json j(42.23); variable
159 json j = json::binary({1, 2, 3}); variable
170 … auto* j = new json {{"foo", 1}, {"bar", false}}; // NOLINT(cppcoreguidelines-owning-memory) variable
176 … auto* j = new json {"foo", 1, 1u, false, 23.42}; // NOLINT(cppcoreguidelines-owning-memory) variable
182 auto* j = new json("Hello world"); // NOLINT(cppcoreguidelines-owning-memory) variable