/external/mesa3d/src/compiler/ |
D | glsl_types.cpp | 403 return error_type; in get_base_type() 417 if (scalar_type == error_type) in get_scalar_type() 629 return error_type; in vec() 752 return error_type; in VECN() 758 return error_type; in VECN() 783 default: return error_type; in VECN() 797 default: return error_type; in VECN() 811 default: return error_type; in VECN() 814 default: return error_type; in VECN() 819 return error_type; in VECN() [all …]
|
/external/rust/crates/thiserror/tests/ui/ |
D | concat-display.rs | 3 macro_rules! error_type { macro 13 error_type!(Error, "foo");
|
D | concat-display.stderr | 7 13 | error_type!(Error, "foo");
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_libcdep.cc | 49 void ReportErrorSummary(const char *error_type, StackTrace *stack) { in ReportErrorSummary() argument 54 ReportErrorSummary(error_type); in ReportErrorSummary() 61 ReportErrorSummary(error_type, frame->info); in ReportErrorSummary()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_symbolizer_report.cpp | 31 void ReportErrorSummary(const char *error_type, const AddressInfo &info, in ReportErrorSummary() argument 35 buff.append("%s ", error_type); in ReportErrorSummary() 73 void ReportErrorSummary(const char *error_type, const StackTrace *stack, in ReportErrorSummary() argument 79 ReportErrorSummary(error_type); in ReportErrorSummary() 86 ReportErrorSummary(error_type, frame->info, alt_tool_name); in ReportErrorSummary()
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ras/mc_event/ |
D | format | 9 field:unsigned int error_type; offset:8; size:4; signed:0; 22 …:%d syndrome:0x%08lx%s%s)", REC->error_count, mc_event_error_type(REC->error_type), REC->error_cou…
|
/external/libcxx/src/ |
D | regex.cpp | 18 make_error_type_string(regex_constants::error_type ecode) in make_error_type_string() 63 regex_error::regex_error(regex_constants::error_type ecode) in regex_error()
|
/external/protobuf/python/google/protobuf/internal/ |
D | descriptor_pool_test.py | 249 error_type = TypeError 251 error_type = AttributeError 252 self.assertRaises(error_type, self.pool.FindMessageTypeByName, 0) 253 self.assertRaises(error_type, self.pool.FindFieldByName, 0) 254 self.assertRaises(error_type, self.pool.FindExtensionByName, 0) 255 self.assertRaises(error_type, self.pool.FindEnumTypeByName, 0) 256 self.assertRaises(error_type, self.pool.FindOneofByName, 0) 257 self.assertRaises(error_type, self.pool.FindServiceByName, 0) 258 self.assertRaises(error_type, self.pool.FindMethodByName, 0) 259 self.assertRaises(error_type, self.pool.FindFileContainingSymbol, 0) [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Error.h | 636 typedef std::unique_ptr<ErrorInfoBase> error_type; typedef 658 new (getErrorStorage()) error_type(Err.takePayload()); in Expected() 715 getErrorStorage()->~error_type(); in ~Expected() 799 new (getErrorStorage()) error_type(std::move(*Other.getErrorStorage())); in moveConstruct() 830 error_type *getErrorStorage() { in getErrorStorage() 832 return reinterpret_cast<error_type *>(ErrorStorage.buffer); in getErrorStorage() 853 AlignedCharArrayUnion<error_type> ErrorStorage;
|
/external/llvm-project/libcxx/src/ |
D | regex.cpp | 17 make_error_type_string(regex_constants::error_type ecode) in make_error_type_string() 64 regex_error::regex_error(regex_constants::error_type ecode) in regex_error()
|
/external/openscreen/ |
D | PRESUBMIT.py | 68 error_type, argument 88 error(filename, linenum, error_type, 4,
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | Error.h | 446 using error_type = std::unique_ptr<ErrorInfoBase>; variable 468 new (getErrorStorage()) error_type(Err.takePayload()); in Expected() 524 getErrorStorage()->~error_type(); in ~Expected() 608 new (getErrorStorage()) error_type(std::move(*Other.getErrorStorage())); in moveConstruct() 639 error_type *getErrorStorage() { in getErrorStorage() 641 return reinterpret_cast<error_type *>(&ErrorStorage); in getErrorStorage() 644 const error_type *getErrorStorage() const { in getErrorStorage() 646 return reinterpret_cast<const error_type *>(&ErrorStorage); in getErrorStorage() 681 std::aligned_union_t<1, error_type> ErrorStorage;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Error.h | 441 using error_type = std::unique_ptr<ErrorInfoBase>; variable 463 new (getErrorStorage()) error_type(Err.takePayload()); in Expected() 520 getErrorStorage()->~error_type(); in ~Expected() 604 new (getErrorStorage()) error_type(std::move(*Other.getErrorStorage())); in moveConstruct() 635 error_type *getErrorStorage() { in getErrorStorage() 637 return reinterpret_cast<error_type *>(ErrorStorage.buffer); in getErrorStorage() 640 const error_type *getErrorStorage() const { in getErrorStorage() 642 return reinterpret_cast<const error_type *>(ErrorStorage.buffer); in getErrorStorage() 677 AlignedCharArrayUnion<error_type> ErrorStorage;
|
/external/python/cpython2/Objects/ |
D | genobject.c | 154 PyObject *error_type, *error_value, *error_traceback; in gen_del() local 166 PyErr_Fetch(&error_type, &error_value, &error_traceback); in gen_del() 176 PyErr_Restore(error_type, error_value, error_traceback); in gen_del()
|
D | frameobject.c | 908 PyObject *error_type, *error_value, *error_traceback; in PyFrame_FastToLocals() local 926 PyErr_Fetch(&error_type, &error_value, &error_traceback); in PyFrame_FastToLocals() 951 PyErr_Restore(error_type, error_value, error_traceback); in PyFrame_FastToLocals() 960 PyObject *error_type, *error_value, *error_traceback; in PyFrame_LocalsToFast() local 973 PyErr_Fetch(&error_type, &error_value, &error_traceback); in PyFrame_LocalsToFast() 992 PyErr_Restore(error_type, error_value, error_traceback); in PyFrame_LocalsToFast()
|
/external/openscreen/cast/receiver/channel/ |
D | device_auth_namespace_handler.cc | 33 CastMessage GenerateErrorMessage(AuthError::ErrorType error_type) { in GenerateErrorMessage() argument 36 error->set_error_type(error_type); in GenerateErrorMessage()
|
/external/llvm/include/llvm/Support/ |
D | Error.h | 605 typedef std::unique_ptr<ErrorInfoBase> error_type; typedef 679 getErrorStorage()->~error_type(); in ~Expected() 764 new (getErrorStorage()) error_type(std::move(*Other.getErrorStorage())); in moveConstruct() 795 error_type *getErrorStorage() { in getErrorStorage() 797 return reinterpret_cast<error_type *>(ErrorStorage.buffer); in getErrorStorage() 818 AlignedCharArrayUnion<error_type> ErrorStorage;
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | CheckCLDR-exceptions.txt | 4 # <error_type> ; <locale_regex> ; <matching_xpath_regex>
|
/external/mesa3d/src/compiler/glsl/ |
D | ast_to_hir.cpp | 363 return glsl_type::error_type; in arithmetic_result_type() 376 return glsl_type::error_type; in arithmetic_result_type() 393 return glsl_type::error_type; in arithmetic_result_type() 436 return glsl_type::error_type; in arithmetic_result_type() 471 if (type == glsl_type::error_type) { in arithmetic_result_type() 483 return glsl_type::error_type; in arithmetic_result_type() 502 return glsl_type::error_type; in unary_arithmetic_result_type() 526 return glsl_type::error_type; in bit_logic_result_type() 538 return glsl_type::error_type; in bit_logic_result_type() 543 return glsl_type::error_type; in bit_logic_result_type() [all …]
|
/external/wpa_supplicant_8/src/eap_peer/ |
D | ikev2.c | 387 data->error_type = INVALID_KE_PAYLOAD; in ikev2_process_kei() 575 data->error_type = AUTHENTICATION_FAILED; in ikev2_process_auth_secret() 741 data->error_type = 0; in ikev2_responder_process() 1029 if (data->error_type == 0) { in ikev2_build_notification() 1041 wpabuf_put_be16(msg, data->error_type); in ikev2_build_notification() 1043 switch (data->error_type) { in ikev2_build_notification() 1059 "%d", data->error_type); in ikev2_build_notification()
|
D | ikev2.h | 49 u16 error_type; member
|
/external/clang/tools/scan-build-py/libscanbuild/ |
D | runner.py | 186 error_type = 'crash' if child.returncode & 127 else 'other_error' 188 'error_type': error_type,
|
/external/llvm-project/compiler-rt/lib/scudo/standalone/include/scudo/ |
D | interface.h | 87 enum scudo_error_type error_type; member
|
/external/scudo/standalone/include/scudo/ |
D | interface.h | 88 enum scudo_error_type error_type; member
|
/external/libabigail/tests/data/test-diff-filter/ |
D | test31-pr18535-libstdc++-report-0.txt | 26 [A] 'method std::regex_error::regex_error(std::regex_constants::error_type)' 75 …[C] 'function void std::__throw_regex_error(std::regex_constants::error_type)' has some indirect s… 76 parameter 1 of type 'enum std::regex_constants::error_type' has sub-type changes: 79 'std::regex_constants::error_type::_S_error_last' value '13'
|