Lines Matching defs:v_F
2289 std::vector<uint8_t> v_F = {'[', '#', 'i', 2, 'F', 'F'};
2306 CHECK(json::from_bjdata(v_F) == json({false, false}));
2322 CHECK(json::to_bjdata(json::from_bjdata(v_F), true) == v_F);
2682 std::vector<uint8_t> v_F = {'[', '$', 'F', '#', '[', '#', 'i', 2, 'i', 1, 'i', 2};
2691 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(v_F), "[json.exception.parse_error.112] parse error at byte 3: syntax error while parsing BJData type: marker 0x46 is not a permitted optimized array type", json::parse_error&);
2692 CHECK(json::from_bjdata(v_F, true, false).is_discarded());
2703 std::vector<uint8_t> v_F = {'[', '$', 'F', '#', '[', 'i', 1, 'i', 2, ']'};
2712 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(v_F), "[json.exception.parse_error.112] parse error at byte 3: syntax error while parsing BJData type: marker 0x46 is not a permitted optimized array type", json::parse_error&);
2713 CHECK(json::from_bjdata(v_F, true, false).is_discarded());