Home
last modified time | relevance | path

Searched refs:unexp (Results 1 – 11 of 11) sorted by relevance

/external/rust/crates/serde_cbor/src/
Derror.rs226 fn invalid_type(unexp: de::Unexpected<'_>, exp: &dyn de::Expected) -> Error { in invalid_type()
227 if let de::Unexpected::Unit = unexp { in invalid_type()
230 Error::custom(format_args!("invalid type: {}, expected {}", unexp, exp)) in invalid_type()
/external/rust/crates/serde_json/src/
Derror.rs364 fn invalid_type(unexp: de::Unexpected, exp: &dyn de::Expected) -> Self { in invalid_type()
365 if let de::Unexpected::Unit = unexp { in invalid_type()
368 Error::custom(format_args!("invalid type: {}, expected {}", unexp, exp)) in invalid_type()
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp23.cpp14 …auto unexp = [values] {}; // expected-error{{initializer contains unexpanded parameter pack 'value… in unexpanded_capture() local
/external/llvm-project/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp23.cpp15 …auto unexp = [values] {}; // expected-error{{initializer contains unexpanded parameter pack 'value… in unexpanded_capture() local
/external/rust/crates/csv/src/
Ddeserializer.rs593 let unexp = Unexpected::UnitVariant; in newtype_variant_seed() localVariable
594 Err(DeserializeError::invalid_type(unexp, &"newtype variant")) in newtype_variant_seed()
602 let unexp = Unexpected::UnitVariant; in tuple_variant() localVariable
603 Err(DeserializeError::invalid_type(unexp, &"tuple variant")) in tuple_variant()
611 let unexp = Unexpected::UnitVariant; in struct_variant() localVariable
612 Err(DeserializeError::invalid_type(unexp, &"struct variant")) in struct_variant()
/external/rust/crates/serde/src/de/
Dmod.rs206 fn invalid_type(unexp: Unexpected, exp: &Expected) -> Self {
207 Error::custom(format_args!("invalid type: {}, expected {}", unexp, exp))
224 fn invalid_value(unexp: Unexpected, exp: &Expected) -> Self {
225 Error::custom(format_args!("invalid value: {}, expected {}", unexp, exp))
/external/python/cpython2/Lib/test/
Dtest_tempfile.py89 unexp = []
92 unexp.append(key)
93 self.assertTrue(len(unexp) == 0,
94 "unexpected keys: %s" % unexp)
/external/python/cpython3/Lib/test/
Dtest_tempfile.py139 unexp = []
142 unexp.append(key)
143 self.assertTrue(len(unexp) == 0,
144 "unexpected keys: %s" % unexp)
/external/libcxx/
DAndroid.bp174 unexported_symbols_list: "lib/libc++unexp.exp",
/external/llvm-project/libcxx/src/
DCMakeLists.txt224 "-Wl,-unexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/../lib/libc++unexp.exp"
/external/libcxx/lib/
DCMakeLists.txt164 "-Wl,-unexported_symbols_list,\"${CMAKE_CURRENT_SOURCE_DIR}/libc++unexp.exp\""