Home
last modified time | relevance | path

Searched refs:error_type (Results 1 – 25 of 128) sorted by relevance

123456

/external/chromium_org/components/autofill/content/browser/wallet/
Dform_field_error.cc17 FormFieldError::ErrorType ErrorTypeFromString(const std::string& error_type) { in ErrorTypeFromString() argument
18 if (LowerCaseEqualsASCII(error_type, "unknown_error")) in ErrorTypeFromString()
20 if (LowerCaseEqualsASCII(error_type, "invalid_phone_number")) in ErrorTypeFromString()
22 if (LowerCaseEqualsASCII(error_type, "invalid_postal_code")) in ErrorTypeFromString()
24 if (LowerCaseEqualsASCII(error_type, "invalid_address")) in ErrorTypeFromString()
26 if (LowerCaseEqualsASCII(error_type, "invalid_card_details")) in ErrorTypeFromString()
28 if (LowerCaseEqualsASCII(error_type, "invalid_city")) in ErrorTypeFromString()
30 if (LowerCaseEqualsASCII(error_type, "invalid_instrument")) in ErrorTypeFromString()
32 if (LowerCaseEqualsASCII(error_type, "invalid_state")) in ErrorTypeFromString()
34 if (LowerCaseEqualsASCII(error_type, "required_field_not_set")) in ErrorTypeFromString()
[all …]
Dwallet_client.cc67 WalletClient::ErrorType StringToErrorType(const std::string& error_type) { in StringToErrorType() argument
69 TrimWhitespaceASCII(error_type, in StringToErrorType()
145 WalletClient::ErrorType error_type) { in ErrorTypeToUmaMetric() argument
146 switch (error_type) { in ErrorTypeToUmaMetric()
608 WalletClient::ErrorType error_type = in OnURLFetchComplete() local
610 if (error_type == BUYER_ACCOUNT_ERROR) { in OnURLFetchComplete()
617 error_type = BuyerErrorStringToErrorType( in OnURLFetchComplete()
622 HandleWalletError(error_type); in OnURLFetchComplete()
735 void WalletClient::HandleWalletError(WalletClient::ErrorType error_type) { in HandleWalletError() argument
737 switch (error_type) { in HandleWalletError()
[all …]
Dform_field_error.h56 FormFieldError(ErrorType error_type, Location location);
59 ErrorType error_type() const { return error_type_; } in error_type() function
/external/chromium_org/chrome/browser/ui/translate/
Dtranslate_bubble_factory.cc15 TranslateErrors::Type error_type) { in ShowDefault() argument
19 window->ShowTranslateBubble(web_contents, view_state, error_type); in ShowDefault()
31 TranslateErrors::Type error_type) { in Show() argument
34 error_type); in Show()
38 ShowDefault(window, web_contents, view_state, error_type); in Show()
Dtranslate_bubble_factory.h27 TranslateErrors::Type error_type);
39 TranslateErrors::Type error_type) = 0;
/external/chromium_org/sync/api/
Dsync_error.cc20 ErrorType error_type, in SyncError() argument
24 switch (error_type) { in SyncError()
41 Init(location, type_message + custom_message, model_type, error_type); in SyncError()
65 other.error_type()); in Copy()
88 ErrorType error_type) { in Init() argument
92 error_type_ = error_type; in Init()
115 SyncError::ErrorType SyncError::error_type() const { in error_type() function in syncer::SyncError
Dsync_error.h48 ErrorType error_type,
73 ErrorType error_type() const;
90 ErrorType error_type);
/external/chromium_org/chrome/app/nibs/
DPRESUBMIT.py28 def _CheckXIBSystemAndXcodeVersions(input_api, output_api, error_type): argument
76 problems.append(error_type(
80 problems.append(error_type(
89 error_type=output_api.PresubmitPromptWarning)
93 error_type=output_api.PresubmitError)
/external/chromium_org/chrome/browser/sync/test/integration/
Dsync_errors_test.cc67 protocol_error.error_type = syncer::TRANSIENT_ERROR; in IN_PROC_BROWSER_TEST_F()
79 ASSERT_EQ(status.sync_protocol_error.error_type, protocol_error.error_type); in IN_PROC_BROWSER_TEST_F()
90 protocol_error.error_type = syncer::TRANSIENT_ERROR; in IN_PROC_BROWSER_TEST_F()
126 protocol_error.error_type = syncer::NOT_MY_BIRTHDAY; in IN_PROC_BROWSER_TEST_F()
137 ASSERT_EQ(status.sync_protocol_error.error_type, protocol_error.error_type); in IN_PROC_BROWSER_TEST_F()
/external/chromium_org/content/browser/service_worker/
Dservice_worker_registration_status.cc21 blink::WebServiceWorkerError::ErrorType* error_type, in GetServiceWorkerRegistrationStatusResponse() argument
30 *error_type = WebServiceWorkerError::InstallError; in GetServiceWorkerRegistrationStatusResponse()
35 *error_type = WebServiceWorkerError::ActivateError; in GetServiceWorkerRegistrationStatusResponse()
/external/chromium_org/sync/engine/
Dsyncer_proto_util.cc109 const sync_pb::SyncEnums::ErrorType& error_type) { in ConvertSyncProtocolErrorTypePBToLocalType() argument
110 switch (error_type) { in ConvertSyncProtocolErrorTypePBToLocalType()
177 sync_protocol_error.error_type = ConvertSyncProtocolErrorTypePBToLocalType( in ConvertErrorPBToLocalType()
178 error.error_type()); in ConvertErrorPBToLocalType()
186 DCHECK_EQ(error.error_type(), sync_pb::SyncEnums::THROTTLED); in ConvertErrorPBToLocalType()
326 const sync_pb::SyncEnums::ErrorType& error_type) { in ConvertLegacyErrorCodeToNewError() argument
328 error.error_type = ConvertSyncProtocolErrorTypePBToLocalType(error_type); in ConvertLegacyErrorCodeToNewError()
329 if (error_type == sync_pb::SyncEnums::CLEAR_PENDING || in ConvertLegacyErrorCodeToNewError()
330 error_type == sync_pb::SyncEnums::NOT_MY_BIRTHDAY) { in ConvertLegacyErrorCodeToNewError()
332 } else if (error_type == sync_pb::SyncEnums::DISABLED_BY_ADMIN) { in ConvertLegacyErrorCodeToNewError()
[all …]
/external/chromium_org/chrome/browser/extensions/
Dpack_extension_job.cc72 creator.error_message(), creator.error_type())); in Run()
75 creator.error_type()); in Run()
87 ExtensionCreator::ErrorType error_type) { in ReportFailureOnClientThread() argument
89 client_->OnPackFailure(error, error_type); in ReportFailureOnClientThread()
/external/chromium_org/chrome/browser/translate/
Dtranslate_tab_helper.cc60 TranslateErrors::Type error_type) { in OnPageTranslated() argument
66 details.error_type = error_type; in OnPageTranslated()
Dtranslate_ui_delegate.cc91 void TranslateUIDelegate::OnErrorShown(TranslateErrors::Type error_type) { in OnErrorShown() argument
92 DCHECK_LE(TranslateErrors::NONE, error_type); in OnErrorShown()
93 DCHECK_LT(error_type, TranslateErrors::TRANSLATE_ERROR_MAX); in OnErrorShown()
95 if (error_type == TranslateErrors::NONE) in OnErrorShown()
98 UMA_HISTOGRAM_ENUMERATION(kShowErrorUI, error_type, in OnErrorShown()
Dtranslate_manager.cc601 if ((details->error_type == TranslateErrors::NONE) && in PageTranslated()
604 details->error_type = TranslateErrors::UNSUPPORTED_LANGUAGE; in PageTranslated()
609 (details->error_type == TranslateErrors::NONE) ? in PageTranslated()
612 ShowBubble(web_contents, view_state, details->error_type); in PageTranslated()
618 (details->error_type == TranslateErrors::NONE) ? in PageTranslated()
621 details->source_language, details->target_language, details->error_type, in PageTranslated()
625 if (details->error_type != TranslateErrors::NONE && in PageTranslated()
630 error_details.error = details->error_type; in PageTranslated()
707 TranslateErrors::Type error_type) { in ShowBubble() argument
715 TranslateBubbleFactory::Show(NULL, web_contents, view_state, error_type); in ShowBubble()
[all …]
Dtranslate_infobar_delegate.h68 TranslateErrors::Type error_type,
87 TranslateErrors::Type error_type() const { return error_type_; } in error_type() function
181 TranslateErrors::Type error_type,
/external/wpa_supplicant_8/src/ap/
Dpeerkey_auth.c52 u16 mui, u16 error_type) in wpa_smk_send_error() argument
70 error.error_type = host_to_be16(error_type); in wpa_smk_send_error()
332 u16 mui, error_type; in wpa_smk_error() local
359 error_type = be_to_host16(error.error_type); in wpa_smk_error()
363 MAC2STR(kde.mac_addr), mui, error_type); in wpa_smk_error()
365 wpa_smk_send_error(wpa_auth, search.sm, sm->addr, mui, error_type); in wpa_smk_error()
/external/chromium_org/chrome/browser/guestview/adview/
Dadview_guest.cc67 std::string error_type; in DidFailProvisionalLoad() local
68 base::RemoveChars(net::ErrorToString(error_code), "net::", &error_type); in DidFailProvisionalLoad()
73 args->SetString(guestview::kReason, error_type); in DidFailProvisionalLoad()
/external/chromium/chrome/browser/translate/
Dpage_translated_details.h20 error_type(in_error_type) { } in PageTranslatedDetails()
24 TranslateErrors::Type error_type; member
/external/mesa3d/src/glsl/
Dast_to_hir.cpp181 return glsl_type::error_type; in arithmetic_result_type()
194 return glsl_type::error_type; in arithmetic_result_type()
211 return glsl_type::error_type; in arithmetic_result_type()
254 return glsl_type::error_type; in arithmetic_result_type()
303 assert(type != glsl_type::error_type); in arithmetic_result_type()
320 assert(type != glsl_type::error_type); in arithmetic_result_type()
339 assert(type != glsl_type::error_type); in arithmetic_result_type()
346 return glsl_type::error_type; in arithmetic_result_type()
353 return glsl_type::error_type; in arithmetic_result_type()
372 return glsl_type::error_type; in unary_arithmetic_result_type()
[all …]
Dglsl_types.cpp322 return error_type; in get_base_type()
402 return error_type; in get_instance()
417 return error_type; in get_instance()
421 return error_type; in get_instance()
444 default: return error_type; in get_instance()
449 return error_type; in get_instance()
563 return error_type; in field_type()
570 return error_type; in field_type()
/external/chromium_org/third_party/mesa/src/src/glsl/
Dast_to_hir.cpp181 return glsl_type::error_type; in arithmetic_result_type()
194 return glsl_type::error_type; in arithmetic_result_type()
211 return glsl_type::error_type; in arithmetic_result_type()
254 return glsl_type::error_type; in arithmetic_result_type()
303 assert(type != glsl_type::error_type); in arithmetic_result_type()
320 assert(type != glsl_type::error_type); in arithmetic_result_type()
339 assert(type != glsl_type::error_type); in arithmetic_result_type()
346 return glsl_type::error_type; in arithmetic_result_type()
353 return glsl_type::error_type; in arithmetic_result_type()
372 return glsl_type::error_type; in unary_arithmetic_result_type()
[all …]
Dglsl_types.cpp322 return error_type; in get_base_type()
402 return error_type; in get_instance()
417 return error_type; in get_instance()
421 return error_type; in get_instance()
444 default: return error_type; in get_instance()
449 return error_type; in get_instance()
563 return error_type; in field_type()
570 return error_type; in field_type()
/external/chromium_org/sync/protocol/
Dsync_protocol_error.cc47 : error_type(UNKNOWN_ERROR), in SyncProtocolError()
57 GetSyncErrorTypeString(error_type)); in ToValue()
/external/chromium_org/sandbox/linux/seccomp-bpf/
Dverifier.cc34 if (code.error_type() == ErrorCode::ET_SIMPLE || in EvaluateErrorCode()
35 code.error_type() == ErrorCode::ET_TRAP) { in EvaluateErrorCode()
37 } else if (code.error_type() == ErrorCode::ET_COND) { in EvaluateErrorCode()
85 if (code.error_type() == ErrorCode::ET_SIMPLE || in VerifyErrorCode()
86 code.error_type() == ErrorCode::ET_TRAP) { in VerifyErrorCode()
101 } else if (code.error_type() == ErrorCode::ET_COND) { in VerifyErrorCode()

123456