Lines Matching defs:j1
13 - j1 = from_bjdata(data)
14 - vec = to_bjdata(j1)
16 - assert(j1 == j2)
17 - vec2 = to_bjdata(j1, use_size = true, use_type = false)
19 - assert(j1 == j3)
20 - vec3 = to_bjdata(j1, use_size = true, use_type = true)
22 - assert(j1 == j4)
41 json j1 = json::from_bjdata(vec1);
46 std::vector<uint8_t> vec2 = json::to_bjdata(j1, false, false);
49 std::vector<uint8_t> vec3 = json::to_bjdata(j1, true, false);
52 std::vector<uint8_t> vec4 = json::to_bjdata(j1, true, true);