Home
last modified time | relevance | path

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

/external/rust/crates/uuid/src/parser/
Dmod.rs68 expected: error::ExpectedLength::Any(&[ in parse_str()
86 expected: error::ExpectedLength::Any(&[ in parse_str()
95 expected: error::ExpectedLength::Any(&[1, 5]), in parse_str()
125 expected: error::ExpectedLength::Exact( in parse_str()
165 expected: error::ExpectedLength::Exact( in parse_str()
192 expected: error::ExpectedLength::Exact(GROUP_LENS[4]), in parse_str()
209 const EXPECTED_UUID_LENGTHS: error::ExpectedLength = in test_parse_uuid_v4()
210 error::ExpectedLength::Any(&[ in test_parse_uuid_v4()
215 const EXPECTED_GROUP_COUNTS: error::ExpectedLength = in test_parse_uuid_v4()
216 error::ExpectedLength::Any(&[1, 5]); in test_parse_uuid_v4()
[all …]
Derror.rs34 expected: ExpectedLength,
43 expected: ExpectedLength,
57 expected: ExpectedLength,
65 pub(crate) enum ExpectedLength { enum
90 impl fmt::Display for ExpectedLength { implementation
93 ExpectedLength::Any(crits) => write!(f, "one of {:?}", crits), in fmt()
94 ExpectedLength::Exact(crit) => write!(f, "{}", crit), in fmt()
/external/llvm-project/llvm/unittests/DebugInfo/DWARF/
DDWARFDebugLineTest.cpp232 uint64_t ExpectedLength = Prologue.PrologueLength + 10; in TEST_P() local
235 ExpectedLength += 2; in TEST_P()
238 ExpectedLength += 12; in TEST_P()
243 EXPECT_EQ((*ExpectedLineTable)->Prologue.getLength(), ExpectedLength); in TEST_P()