OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ErrorType
(Results
1 - 5
of
5
) sorted by null
/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/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/webkit/Source/WebCore/dom/
XMLDocumentParser.h
54
enum
ErrorType
{ warning, nonFatal, fatal };
77
void error(
ErrorType
type, const char* m, int lineNumber, int columnNumber);
197
enum
ErrorType
{ warning, nonFatal, fatal };
198
void handleError(
ErrorType
, const char* message, int lineNumber, int columnNumber);
199
void handleError(
ErrorType
, const char* message, TextPosition1);
262
void error(
ErrorType
, const char* message, va_list args) WTF_ATTRIBUTE_PRINTF(3, 0);
/external/webkit/Source/WebCore/bindings/v8/
V8Proxy.h
127
enum
ErrorType
{
256
static v8::Handle<v8::Value> throwError(
ErrorType
, const char* message);
400
inline v8::Handle<v8::Primitive> throwError(const char* message, V8Proxy::
ErrorType
type = V8Proxy::TypeError)
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xlibint.h
836
typedef int (*
ErrorType
) (
877
ErrorType
error; /* who to call when an error occurs */
[
all
...]
Completed in 86 milliseconds