Searched refs:vU (Results 1 - 3 of 3) sorted by relevance
/third_party/mksh/ |
H A D | edit.c | 3487 #define vC 0x01 /* a valid command that isn't a vM, vE, vU */ 3491 #define vU 0x10 /* an UN-undoable command (that isn't a vM) */ macro 3497 #define is_cmd(c) (classify[rtt2asc(c) & 0x7F] & (vM | vE | vC | vU)) 3501 #define is_undoable(c) (!(classify[rtt2asc(c) & 0x7F] & vU)) 3508 vB, 0, 0, 0, 0, vC|vU, vC|vZ, 0, 3510 vM, vC|vZ, 0, 0, vC|vU, 0, vC, 0, 3512 vC, 0, vC|vU, 0, 0, 0, vC, 0, 3524 vC|vX, vC, vM, vC, vC, vM, vM|vX, vC|vU|vZ, 3526 0, vC, 0, 0, 0, 0, vC|vU, vU, [all...] |
/third_party/json/tests/src/ |
H A D | unit-bjdata.cpp | 2738 std::vector<uint8_t> vU = {'[', '#', 'U'}; variable 2740 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vU), "[json.exception.parse_error.110] parse error at byte 4: syntax error while parsing BJData number: unexpected end of input", json::parse_error&); 2741 CHECK(json::from_bjdata(vU, true, false).is_discarded()); 2807 std::vector<uint8_t> vU = {'[', '$', 'U'}; variable 2808 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vU), "[json.exception.parse_error.110] parse error at byte 4: syntax error while parsing BJData value: unexpected end of input", json::parse_error&); 2809 CHECK(json::from_bjdata(vU, true, false).is_discarded()); 2871 std::vector<uint8_t> vU = {'[', '$', 'U', '#', '[', '$', 'i', '#', 'i', 2, 2, 3, 1, 2, 3, 4, 5}; variable 2872 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vU), "[json.exception.parse_error.110] parse error at byte 18: syntax error while parsing BJData number: unexpected end of input", json::parse_error&); 2873 CHECK(json::from_bjdata(vU, true, false).is_discarded());
|
H A D | unit-ubjson.cpp | 1865 std::vector<uint8_t> vU = {'[', '#', 'U'}; variable 1867 CHECK_THROWS_WITH_AS(_ = json::from_ubjson(vU), "[json.exception.parse_error.110] parse error at byte 4: syntax error while parsing UBJSON number: unexpected end of input", json::parse_error&); 1868 CHECK(json::from_ubjson(vU, true, false).is_discarded());
|
Completed in 16 milliseconds