/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-exceptions.c | 44 ecma_standard_error_t error_type; /**< Native error type */ member 79 ecma_new_standard_error (ecma_standard_error_t error_type) /**< native error type */ in ecma_new_standard_error() argument 84 switch (error_type) in ecma_new_standard_error() 124 JERRY_ASSERT (error_type == ECMA_ERROR_COMMON); in ecma_new_standard_error() 131 JERRY_UNUSED (error_type); in ecma_new_standard_error() 186 return ecma_error_mappings[idx].error_type; in ecma_get_error_type() 200 ecma_new_standard_error_with_message (ecma_standard_error_t error_type, /**< native error type */ in ecma_new_standard_error_with_message() argument 203 ecma_object_t *new_error_obj_p = ecma_new_standard_error (error_type); in ecma_new_standard_error_with_message() 224 ecma_raise_standard_error (ecma_standard_error_t error_type, /**< error type */ in ecma_raise_standard_error() argument 233 error_obj_p = ecma_new_standard_error_with_message (error_type, error_msg_ in ecma_raise_standard_error() 254 ecma_raise_standard_error_with_format(ecma_standard_error_t error_type, const char *format, ...) ecma_raise_standard_error_with_format() argument [all...] |
H A D | ecma-exceptions.h | 54 ecma_object_t *ecma_new_standard_error (ecma_standard_error_t error_type); 55 ecma_object_t *ecma_new_standard_error_with_message (ecma_standard_error_t error_type, ecma_string_t *message_string_p); 57 ecma_value_t ecma_raise_standard_error_with_format (ecma_standard_error_t error_type, const char *msg_p, ...);
|
/third_party/mesa3d/src/compiler/ |
H A D | glsl_types.cpp | 405 return error_type; in get_base_type() 419 if (scalar_type == error_type) in get_scalar_type() 632 return error_type; in vec() 756 return error_type; in get_instance() 762 return error_type; in get_instance() 787 default: return error_type; in get_instance() 801 default: return error_type; in get_instance() 815 default: return error_type; in get_instance() 818 default: return error_type; in get_instance() 823 return error_type; in get_instance() [all...] |
H A D | nir_types.cpp | 625 assert(t != glsl_type::error_type); in glsl_vector_type() 633 assert(t != glsl_type::error_type); in glsl_matrix_type() 646 assert(t != glsl_type::error_type); in glsl_explicit_matrix_type()
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
H A D | util.cc | 89 std::string error_type; in LogWgslError() local 92 error_type = "WGSL -> SPV"; in LogWgslError() 95 error_type = "WGSL -> MSL"; in LogWgslError() 98 error_type = "WGSL -> HLSL"; in LogWgslError() 101 error_type = "WGSL -> WGSL"; in LogWgslError() 105 LogError(wgsl_count++, error_type, message, in LogWgslError()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-helpers-error.c | 41 ecma_builtin_helper_error_dispatch_call (ecma_standard_error_t error_type, /**< native error type */ in ecma_builtin_helper_error_dispatch_call() argument 57 ecma_object_t *new_error_object_p = ecma_new_standard_error_with_message (error_type, in ecma_builtin_helper_error_dispatch_call() 64 ecma_object_t *new_error_object_p = ecma_new_standard_error (error_type); in ecma_builtin_helper_error_dispatch_call()
|
/third_party/python/Python/ |
H A D | frame.c | 30 PyObject *error_type, *error_value, *error_traceback; in _PyFrame_MakeAndSetFrameObject() local 31 PyErr_Fetch(&error_type, &error_value, &error_traceback); in _PyFrame_MakeAndSetFrameObject() 35 Py_XDECREF(error_type); in _PyFrame_MakeAndSetFrameObject() 40 PyErr_Restore(error_type, error_value, error_traceback); in _PyFrame_MakeAndSetFrameObject()
|
/third_party/skia/third_party/externals/imgui/examples/example_emscripten_wgpu/ |
H A D | main.cpp | 33 static void print_wgpu_error(WGPUErrorType error_type, const char* message, void*); 233 static void print_wgpu_error(WGPUErrorType error_type, const char* message, void*) in print_wgpu_error() argument 236 switch (error_type) in print_wgpu_error()
|
/third_party/jerryscript/tests/unit-core/ |
H A D | test-api-errortype.cpp | 89 jerry_error_t error_type = jerry_get_error_type (test_values[idx]); in HWTEST_F() local 90 TEST_ASSERT (error_type == JERRY_ERROR_NONE); in HWTEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | Error.h | 636 typedef std::unique_ptr<ErrorInfoBase> error_type; typedef in llvm::Expected 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;
|
/third_party/ffmpeg/libavcodec/ |
H A D | error_resilience.c | 895 int i, mb_x, mb_y, error, error_type, dc_error, mv_error, ac_error; in ff_er_frame_end() local 980 for (error_type = 1; error_type <= 3; error_type++) { in ff_er_frame_end() 987 if (error & (1 << error_type)) in ff_er_frame_end() 989 if (error & (8 << error_type)) in ff_er_frame_end() 993 s->error_status_table[mb_xy] |= 1 << error_type; in ff_er_frame_end() 1053 for (error_type = 1; error_type <= 3; error_type in ff_er_frame_end() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | Error.h | 441 using error_type = std::unique_ptr<ErrorInfoBase>; 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;
|
/third_party/mesa3d/src/compiler/glsl/ |
H A 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() 512 * glsl_type::error_type. 526 return glsl_type::error_type; in bit_logic_result_type() 538 return glsl_type::error_type; in bit_logic_result_type() [all...] |
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | descriptor_pool_test.py | 253 error_type = TypeError 255 error_type = AttributeError 256 self.assertRaises(error_type, self.pool.FindMessageTypeByName, 0) 257 self.assertRaises(error_type, self.pool.FindFieldByName, 0) 258 self.assertRaises(error_type, self.pool.FindExtensionByName, 0) 259 self.assertRaises(error_type, self.pool.FindEnumTypeByName, 0) 260 self.assertRaises(error_type, self.pool.FindOneofByName, 0) 261 self.assertRaises(error_type, self.pool.FindServiceByName, 0) 262 self.assertRaises(error_type, self.pool.FindMethodByName, 0) 263 self.assertRaises(error_type, sel [all...] |
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | phonenumberutil.cc | 3135 ErrorType error_type = in IsNumberMatchWithTwoStrings() local 3137 if (error_type == NO_PARSING_ERROR) { in IsNumberMatchWithTwoStrings() 3140 if (error_type == INVALID_COUNTRY_CODE_ERROR) { in IsNumberMatchWithTwoStrings() 3142 ErrorType error_type = Parse(second_number, RegionCode::GetUnknown(), in IsNumberMatchWithTwoStrings() local 3144 if (error_type == NO_PARSING_ERROR) { in IsNumberMatchWithTwoStrings() 3147 if (error_type == INVALID_COUNTRY_CODE_ERROR) { in IsNumberMatchWithTwoStrings() 3148 error_type = ParseHelper(first_number, RegionCode::GetUnknown(), false, in IsNumberMatchWithTwoStrings() 3150 if (error_type == NO_PARSING_ERROR) { in IsNumberMatchWithTwoStrings() 3151 error_type = ParseHelper(second_number, RegionCode::GetUnknown(), false, in IsNumberMatchWithTwoStrings() 3153 if (error_type in IsNumberMatchWithTwoStrings() 3170 ErrorType error_type = IsNumberMatchWithOneString() local [all...] |
/third_party/jerryscript/jerry-ext/module/ |
H A D | module.c | 37 jerryx_module_create_error (jerry_error_t error_type, /**< the type of error to create */ in jerryx_module_create_error() argument 41 jerry_value_t ret = jerry_create_error (error_type, message); in jerryx_module_create_error()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
H A D | ikev2.c | 385 data->error_type = INVALID_KE_PAYLOAD; in ikev2_process_kei() 573 data->error_type = AUTHENTICATION_FAILED; in ikev2_process_auth_secret() 739 data->error_type = 0; in ikev2_responder_process() 1027 if (data->error_type == 0) { in ikev2_build_notification() 1039 wpabuf_put_be16(msg, data->error_type); in ikev2_build_notification() 1041 switch (data->error_type) { in ikev2_build_notification() 1057 "%d", data->error_type); in ikev2_build_notification()
|
H A D | ikev2.h | 49 u16 error_type; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
H A 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()
|
H A D | ikev2.h | 49 u16 error_type; member
|
/third_party/mesa3d/.gitlab-ci/lava/ |
H A D | lava_job_submitter.py | 315 if "error_type" in metadata: 316 error_type = metadata["error_type"] 317 if error_type == "Infrastructure": 321 if error_type == "Job":
|
/third_party/python/Modules/_io/ |
H A D | iobase.c | 255 PyObject *error_type, *error_value, *error_traceback; in iobase_finalize() local 259 PyErr_Fetch(&error_type, &error_value, &error_traceback); in iobase_finalize() 300 PyErr_Restore(error_type, error_value, error_traceback); in iobase_finalize()
|
/third_party/libphonenumber/cpp/test/phonenumbers/ |
H A D | shortnumberinfo_test.cc | 43 PhoneNumberUtil::ErrorType error_type = phone_util_.Parse( in ParseNumberForTesting() local 45 CHECK_EQ(error_type, PhoneNumberUtil::NO_PARSING_ERROR); in ParseNumberForTesting() 46 IGNORE_UNUSED(error_type); in ParseNumberForTesting()
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | descriptor_pool.cc | 221 char* name, char* error_type) { in SetErrorFromCollector() 226 error_type, name, error_collector->error_message.c_str()); in SetErrorFromCollector() 230 PyErr_Format(PyExc_KeyError, "Couldn't find %s %.200s", error_type, name); in SetErrorFromCollector() 220 SetErrorFromCollector(DescriptorPool::ErrorCollector* self, char* name, char* error_type) SetErrorFromCollector() argument
|
/third_party/ltp/testcases/kernel/mce-test/lib/ |
H A D | apei-inject.sh | 99 echo $TYPE > $APEI_IF/error_type
|