HomeSort by relevance Sort by last modified time
    Searched refs:ErrorType (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
NumberParseException.java 26 public enum ErrorType {
43 private ErrorType errorType;
46 public NumberParseException(ErrorType errorType, String message) {
49 this.errorType = errorType;
55 public ErrorType getErrorType() {
56 return errorType;
61 return "Error type: " + errorType + ". " + message
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebServiceWorkerError.h 39 enum ErrorType {
47 WebServiceWorkerError(ErrorType errorType, const WebString& message)
48 : errorType(errorType), message(message) { }
50 ErrorType errorType;
  /external/skia/gm/
gm_error.h 22 enum ErrorType {
39 * Returns the name of the given ErrorType.
41 static const char *getErrorTypeName(ErrorType type) {
64 * Fills in "type" with the ErrorType associated with name "name".
67 static bool getErrorTypeByName(const char name[], ErrorType *type) {
69 ErrorType thisType = static_cast<ErrorType>(typeInt);
85 ErrorCombination(const ErrorType type) : fBitfield(1 << type) {}
95 * Adds this ErrorType to this ErrorCombination.
97 void add(const ErrorType type)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLErrors.h 44 enum ErrorType { warning, nonFatal, fatal };
45 void handleError(ErrorType, const char* message, int lineNumber, int columnNumber);
46 void handleError(ErrorType, const char* message, TextPosition);
  /external/chromium_org/components/autofill/content/browser/wallet/
form_field_error.h 22 enum ErrorType {
56 FormFieldError(ErrorType error_type, Location location);
59 ErrorType error_type() const { return error_type_; }
77 ErrorType error_type_;
wallet_client_delegate.h 76 virtual void OnWalletError(WalletClient::ErrorType error_type) = 0;
form_field_error.cc 17 FormFieldError::ErrorType ErrorTypeFromString(const std::string& error_type) {
53 FormFieldError::FormFieldError(ErrorType error_type, Location location)
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerError.cpp 37 String ServiceWorkerError::errorString(WebServiceWorkerError::ErrorType type)
ServiceWorkerError.h 47 RefPtr<DOMError> error = DOMError::create(errorString(webError->errorType), webError->message);
52 static String errorString(blink::WebServiceWorkerError::ErrorType);
  /external/chromium_org/content/browser/service_worker/
service_worker_registration_status.h 24 blink::WebServiceWorkerError::ErrorType* error_type,
service_worker_registration_status.cc 21 blink::WebServiceWorkerError::ErrorType* error_type,
  /external/chromium_org/sync/api/
sync_error.h 29 enum ErrorType {
48 ErrorType error_type,
73 ErrorType error_type() const;
90 ErrorType error_type);
99 ErrorType error_type_;
sync_error.cc 20 ErrorType error_type,
88 ErrorType error_type) {
115 SyncError::ErrorType SyncError::error_type() const {
  /external/chromium/chrome/browser/ssl/
ssl_error_info.h 23 enum ErrorType {
39 // Converts a network error code to an ErrorType.
40 static ErrorType NetErrorToErrorType(int net_error);
42 static SSLErrorInfo CreateError(ErrorType error_type,
  /external/chromium_org/content/common/
service_worker_messages.h 18 IPC_ENUM_TRAITS(blink::WebServiceWorkerError::ErrorType)
51 blink::WebServiceWorkerError::ErrorType /* code */,
  /external/chromium_org/remoting/protocol/
jingle_messages.h 93 enum ErrorType {
103 JingleMessageReply(ErrorType error);
104 JingleMessageReply(ErrorType error, const std::string& text);
114 ErrorType error_type;
  /external/chromium_org/chrome/browser/extensions/
extension_creator.h 40 enum ErrorType { kOtherError, kCRXExists };
51 ErrorType error_type() { return error_type_; }
98 ErrorType error_type_;
pack_extension_job.h 28 ExtensionCreator::ErrorType error_type) = 0;
61 ExtensionCreator::ErrorType error_type);
startup_helper.h 26 ExtensionCreator::ErrorType type) OVERRIDE;
  /external/chromium_org/chrome/browser/ssl/
ssl_error_info.h 24 enum ErrorType {
44 // Converts a network error code to an ErrorType.
45 static ErrorType NetErrorToErrorType(int net_error);
47 static SSLErrorInfo CreateError(ErrorType error_type,
  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode.h 103 enum ErrorType {
132 ErrorType error_type() const { return error_type_; }
168 ErrorType error_type_;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_weighting.cpp 26 ErrorType TypingWeighting::getErrorType(const CorrectionType correctionType,
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 61 enum ErrorType {
140 ArgStream addError(const SourceRange &Range, ErrorType Error);
154 ErrorType Type;
  /external/chromium_org/chrome/browser/local_discovery/
privet_http_impl.h 33 PrivetURLFetcher::ErrorType error) OVERRIDE;
60 PrivetURLFetcher::ErrorType error) OVERRIDE;
83 PrivetURLFetcher::ErrorType error) OVERRIDE;
133 PrivetURLFetcher::ErrorType error) OVERRIDE;
180 PrivetURLFetcher::ErrorType error) OVERRIDE;
privet_url_fetcher.h 31 enum ErrorType {
50 virtual void OnError(PrivetURLFetcher* fetcher, ErrorType error) = 0;

Completed in 4565 milliseconds

1 2 3 4