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

1 2 3 4 5

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
error_type_utils.h 28 // ErrorType is mainly decided by CorrectionType but it is also depending on if
30 typedef uint32_t ErrorType;
32 static const ErrorType NOT_AN_ERROR;
33 static const ErrorType MATCH_WITH_CASE_ERROR;
34 static const ErrorType MATCH_WITH_ACCENT_ERROR;
35 static const ErrorType MATCH_WITH_DIGRAPH;
38 static const ErrorType INTENTIONAL_OMISSION;
40 static const ErrorType EDIT_CORRECTION;
42 static const ErrorType PROXIMITY_CORRECTION;
44 static const ErrorType COMPLETION
    [all...]
error_type_utils.cpp 21 const ErrorTypeUtils::ErrorType ErrorTypeUtils::NOT_AN_ERROR = 0x0;
22 const ErrorTypeUtils::ErrorType ErrorTypeUtils::MATCH_WITH_CASE_ERROR = 0x1;
23 const ErrorTypeUtils::ErrorType ErrorTypeUtils::MATCH_WITH_ACCENT_ERROR = 0x2;
24 const ErrorTypeUtils::ErrorType ErrorTypeUtils::MATCH_WITH_DIGRAPH = 0x4;
25 const ErrorTypeUtils::ErrorType ErrorTypeUtils::INTENTIONAL_OMISSION = 0x8;
26 const ErrorTypeUtils::ErrorType ErrorTypeUtils::EDIT_CORRECTION = 0x10;
27 const ErrorTypeUtils::ErrorType ErrorTypeUtils::PROXIMITY_CORRECTION = 0x20;
28 const ErrorTypeUtils::ErrorType ErrorTypeUtils::COMPLETION = 0x40;
29 const ErrorTypeUtils::ErrorType ErrorTypeUtils::NEW_WORD = 0x80;
31 const ErrorTypeUtils::ErrorType ErrorTypeUtils::ERRORS_TREATED_AS_AN_EXACT_MATCH
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
NumberParseException.java 25 public enum ErrorType {
42 private ErrorType errorType;
45 public NumberParseException(ErrorType errorType, String message) {
48 this.errorType = errorType;
54 public ErrorType getErrorType() {
55 return errorType;
60 return "Error type: " + errorType + ". " + message
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebCredentialManagerError.h 15 enum ErrorType {
21 WebCredentialManagerError(ErrorType type, WebString message)
22 : errorType(type)
27 ErrorType errorType;
WebGeofencingError.h 13 enum ErrorType {
19 WebGeofencingError(ErrorType errorType, const WebString& message)
20 : errorType(errorType)
25 ErrorType errorType;
WebPushError.h 13 enum ErrorType {
19 WebPushError(ErrorType errorType, const WebString& message)
20 : errorType(errorType)
25 ErrorType errorType;
WebServiceWorkerError.h 39 enum ErrorType {
51 WebServiceWorkerError(ErrorType errorType, const WebString& message)
52 : errorType(errorType), message(message) { }
54 ErrorType errorType;
  /external/chromium_org/third_party/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/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/parser/
XMLErrors.h 47 enum ErrorType { ErrorTypeWarning, ErrorTypeNonFatal, ErrorTypeFatal };
48 void handleError(ErrorType, const char* message, int lineNumber, int columnNumber);
49 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_;
  /external/chromium_org/content/browser/service_worker/
service_worker_registration_status.h 17 blink::WebServiceWorkerError::ErrorType* error_type,
service_worker_cache.h 40 enum ErrorType {
47 typedef base::Callback<void(ErrorType)> ErrorCallback;
48 typedef base::Callback<void(ErrorType,
53 typedef base::Callback<void(ErrorType, scoped_ptr<Requests>)>
128 void InitDone(ErrorType error);
  /external/chromium_org/extensions/browser/api/cast_channel/
cast_auth_util.h 18 enum ErrorType {
38 ErrorType error_type);
40 ErrorType error_type,
46 ErrorType error_type;
51 ErrorType error_type,
cast_auth_util.cc 19 ErrorType error_type) {
25 ErrorType error_type,
31 ErrorType error_type,
  /external/chromium_org/sync/api/
sync_error.h 29 enum ErrorType {
62 ErrorType error_type,
87 ErrorType error_type() const;
109 ErrorType error_type);
118 ErrorType error_type_;
  /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/lldb/include/lldb/Core/
Error.h 35 /// associated type that is of type lldb::ErrorType. New types
70 Error (ValueType err, lldb::ErrorType type = lldb::eErrorTypeGeneric);
156 lldb::ErrorType
226 SetError (ValueType err, lldb::ErrorType type);
305 lldb::ErrorType m_type; ///< The type of the above error code.
  /external/lldb/include/lldb/API/
SBError.h 43 lldb::ErrorType
47 SetError (uint32_t err, lldb::ErrorType type);
  /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/lldb/scripts/Python/interface/
SBError.i 82 lldb::ErrorType
86 SetError (uint32_t err, lldb::ErrorType type);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
scoring.h 32 const ErrorTypeUtils::ErrorType containedErrorTypes, const bool forceCommit,
  /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_;
  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode.h 101 enum ErrorType {
130 ErrorType error_type() const { return error_type_; }
166 ErrorType error_type_;
  /external/chromium_org/media/cdm/ppapi/
cdm_file_io_impl.h 74 enum ErrorType {
156 void OnError(ErrorType error_type);
159 void NotifyClientOfError(int32_t result, ErrorType error_type);

Completed in 1012 milliseconds

1 2 3 4 5