Lines Matching refs:decoded
16 decoded: &toml_test_harness::Decoded, in decoded_to_document()
18 let item = root_from_decoded(decoded)?; in decoded_to_document()
25 decoded: &toml_test_harness::Decoded, in root_from_decoded()
27 match decoded { in root_from_decoded()
46 decoded: &toml_test_harness::Decoded, in from_decoded()
48 let value = match decoded { in from_decoded()
59 decoded: &toml_test_harness::DecodedValue, in from_decoded_value()
61 let value: toml_edit::Value = match decoded { in from_decoded_value()
96 decoded: &std::collections::HashMap<String, toml_test_harness::Decoded>, in from_table()
98 decoded in from_table()
108 decoded: &[toml_test_harness::Decoded], in from_array()
110 decoded.iter().map(from_decoded).collect() in from_array()