HomeSort by relevance Sort by last modified time
    Searched refs:Error (Results 26 - 50 of 406) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/net/base/
net_errors.h 12 // Error domain of the net module's error codes.
15 // Error values are negative.
16 enum Error {
17 // No error.
24 // The value of the first certificate error code.
28 // Returns a textual representation of the error code for logging purposes.
29 const char* ErrorToString(int error);
31 // Returns true if |error| is a certificate error code
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
15.11.4.4-1.js 38 * SUMMARY: Testing Error.prototype.toString()
44 * Error.prototype.toString() returns an implementation-dependent string.
49 * js> err = new Error()
52 * js> err = new Error("msg")
58 * js> err = new Error()
59 * Error
61 * js> err = new Error("msg")
62 * Error: msg
73 var summary = 'Testing Error.prototype.toString()';
85 var err1 = new Error('msg1')
    [all...]
15.11.1.1.js 38 * SUMMARY: Ensuring normal function call of Error (ECMA-262 Ed.3 15.11.1.1).
43 var summary = 'Ensuring normal function call of Error (ECMA-262 Ed.3 15.11.1.1)';
56 return Error(msg);
61 var err1 = Error('msg1');
79 var err4 = eval("Error('msg4')");
  /frameworks/base/tools/localize/
SourcePos.h 20 int Error(const char* fmt, ...) const;
  /libcore/luni/src/main/java/java/lang/annotation/
AnnotationFormatError.java 28 public class AnnotationFormatError extends Error {
36 * the details of the error.
46 * the details of the error.
48 * the cause of the error or {@code null} if none.
57 * error's message.
60 * the cause of the error or {@code null} if none.
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
SneakyThrow.java 37 * } else if (thrown instanceof Error) {
38 * throw (Error) thrown;
59 SneakyThrow.<Error>sneakyThrow2(t);
  /external/emma/core/java12/com/vladium/emma/rt/
RTExitHook.java 58 throw new Error ("packaging failure: closure resource not found");
65 throw new Error ("packaging failure: " + e.toString ());
76 throw new Error ("packaging failure: no closure mapping");
95 throw new Error ("packaging failure: class [" + className + "] not found {" + e.toString () + "}");
  /frameworks/base/media/libeffects/lvm/lib/Bundle/src/
LVM_API_Specials.c 45 /* LVM_WRONGAUDIOTIME Failure due to audio time error */
143 LVM_ReturnStatus_en Error;
146 Error = LVM_SetControlParameters(hInstance,pParams);
148 return Error;
  /external/v8/test/mjsunit/
error-constructors.js 28 var e = new Error();
30 Error.prototype.toString = Object.prototype.toString;
31 assertEquals("[object Error]", Error.prototype.toString());
32 assertEquals(Object.prototype, Error.prototype.__proto__);
  /external/webkit/JavaScriptCore/runtime/
Error.cpp 25 #include "Error.h"
41 JSObject* Error::create(ExecState* exec, ErrorType type, const UString& message, int lineNumber, intptr_t sourceID, const UString& sourceURL)
48 name = "Evaluation error";
52 name = "Range error";
56 name = "Reference error";
60 name = "Syntax error";
64 name = "Type error";
68 name = "URI error";
72 name = "Error";
83 JSObject* error = construct(exec, constructor, constructType, constructData, args) local
108 JSObject* error = Error::create(exec, type, UString(), -1, -1, UString()); local
115 JSObject* error = Error::create(exec, type, message, -1, -1, UString()); local
122 JSObject* error = Error::create(exec, type, message, -1, -1, UString()); local
129 JSObject* error = Error::create(exec, type, message, line, sourceID, sourceURL); local
    [all...]
  /external/protobuf/python/google/protobuf/
message.py 40 class Error(Exception): pass
41 class DecodeError(Error): pass
42 class EncodeError(Error): pass
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Schema.java 80 throw new Error("Attribute " + attrName +
97 throw new Error("No child " + name + " for parent " + parentName);
100 throw new Error("No parent " + parentName + " for child " + name);
  /external/emma/core/java14/com/vladium/util/
IJREVersion.java 68 catch (Error ignore) {}
  /external/webkit/JavaScriptCore/wrec/
Quantifier.h 43 Error,
  /libcore/luni/src/main/java/java/lang/
AssertionError.java 25 public class AssertionError extends Error {
40 * this error.
  /libcore/luni/src/main/java/javax/xml/parsers/
FactoryConfigurationError.java 24 * exists. This error will typically be thrown when the class of a
32 public class FactoryConfigurationError extends Error {
35 *<code>Exception</code> that represents the error.
51 * the <code>String </code> specified as an error message.
53 * @param msg The error message for the exception.
64 * given <code>Exception</code> base cause of the error.
91 * Return the message (if any) for this error . If there is no
97 * @return The error message.
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerFactoryConfigurationError.java 24 * exists. This error will typically be thrown when the class of a
28 public class TransformerFactoryConfigurationError extends Error {
49 * the <code>String</code> specified as an error message.
51 * @param msg The error message for the exception.
62 * given <code>Exception</code> base cause of the error.
90 * Return the message (if any) for this error . If there is no
94 * @return The error message.
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
SecurityUtils.java 68 * @throws Error if context is null AND if null context is already stored
83 throw new Error("null context may be stored only once");
  /external/apache-http/src/org/apache/http/util/
EncodingUtils.java 137 throw new Error("HttpClient requires ASCII support");
160 throw new Error("HttpClient requires ASCII support");
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Exceptions/
regress-123002.js 38 * SUMMARY: Testing Error.length
41 * NOTE: Error.length should equal the length of FormalParameterList of the
42 * Error constructor. This is currently 1 in Rhino, 3 in SpiderMonkey.
46 * parameters to Error constructors:
48 * Rhino: new Error (message)
49 * SpiderMonkey: new Error (message, fileName, lineNumber)
52 * have to be changed if the Error FormalParameterList is ever changed again.
61 var summary = 'Testing Error.length';
81 var errObjects = [new Error(), new EvalError(), new RangeError(),
89 actual = Error.length
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
InformationObjectSet.java 64 throw new Error(); //FIXME message
70 throw new Error(); //FIXME message
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParser.java 128 throw new Error("Missing return statement in function");
136 throw new Error("Missing return statement in function");
167 throw new Error("Missing return statement in function");
199 throw new Error("Missing return statement in function");
208 throw new Error("Missing return statement in function");
215 throw new Error("Missing return statement in function");
273 throw new Error("Missing return statement in function");
280 throw new Error("Missing return statement in function");
299 throw new Error("Missing return statement in function");
306 throw new Error("Missing return statement in function")
    [all...]
  /external/guava/src/com/google/common/base/
Throwables.java 59 * instance of {@link RuntimeException} or {@link Error}. Example usage:
72 propagateIfInstanceOf(throwable, Error.class);
78 * instance of {@link RuntimeException}, {@link Error}, or
103 * instance of {@link RuntimeException}, {@link Error}, {@code aDeclaredType},
124 * {@link RuntimeException} or {@link Error}, or else as a last resort, wraps
152 * chain provides context from when the error or exception was initially
236 if (cause instanceof Error) {
237 throw (Error) cause;
  /cts/tools/vm-tests/src/dot/junit/opcodes/opc_throw/d/
T_opc_throw_8.d 30 new-instance v1, java/lang/Error
31 invoke-direct {v1}, java/lang/Error/<init>()V
  /external/apache-http/src/org/apache/http/client/utils/
CloneUtils.java 59 throw new Error("Unexpected exception", cause);

Completed in 1187 milliseconds

12 3 4 5 6 7 8 91011>>