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

1 2 34 5 6 7 8 91011>>

  /external/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 113 * to an error, {@code throwable}. This will set the state of the future to
119 * @throws Error if the throwable was an {@link Error}.
127 // If it's an Error, we want to make sure it reaches the top of the
129 if (throwable instanceof Error) {
130 throw (Error) throwable;
231 * an error.
261 "Error, synchronizer in invalid state: " + state);
  /external/v8/test/mjsunit/
mirror-error.js 29 // Test the mirror object for regular error objects
59 assertEquals('error', mirror.type());
65 assertEquals('error', fromJSON.type);
66 assertEquals('Error', fromJSON.className);
86 testErrorMirror(new Error());
87 testErrorMirror(new Error('This does not work'));
88 testErrorMirror(new Error(123+456));
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
regress-181914.js 56 // make a user-defined version of the Error constructor
61 _Error.prototype = new Error();
145 if(e instanceof Error)
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
position-string.js 24 testFailed('Error callback invoked unexpectedly');
  /libcore/luni/src/main/java/java/util/jar/
Pack200.java 67 throw new Error("Can't load class " + className, e);
95 throw new Error("Can't load class " + className, e);
128 * a String representation for {@code error}.
130 static final String ERROR = "error";
  /external/skia/src/ports/
SkXMLParser_tinyxml.cpp 57 if (doc.Error())
59 printf("tinyxml error: <%s> row[%d] col[%d]\n", doc.ErrorDesc(), doc.ErrorRow(), doc.ErrorCol());
91 void SkXMLParser::GetNativeErrorString(int error, SkString* str)
  /external/srec/audio/AudioIn/UNIX/include/
audioin.h 101 FIFO and the codec. This state is caused by an error in the MMSystem. It is
249 const LHS_AUDIOIN_ERROR Error /*[in] The Error code.*/
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Object/
class-001.js 88 status = 'new Error()';
89 actual = getJSClass(new Error());
90 expect = 'Error';
class-002.js 84 status = 'Error';
85 actual = getJSClass(Error);
class-003.js 22 * SUMMARY: Testing the [[Class]] property of native error types.
25 * Same as class-001.js - but testing only the native error types here.
28 * ECMA expects the [[Class]] property to equal 'Error' in each case.
38 var summary = 'Testing the internal [[Class]] property of native error types';
46 * We expect 'Error' every time; see discussion above -
48 status = 'new Error()';
49 actual = getJSClass(new Error());
50 expect = 'Error';
55 expect = 'Error';
60 expect = 'Error';
    [all...]
class-004.js 22 * SUMMARY: Testing [[Class]] property of native error constructors.
25 * See ECMA-262 Edition 3, Section 15.11.6 for the native error types.
37 var summary = 'Testing the internal [[Class]] property of native error constructors';
47 status = 'Error';
48 actual = getJSClass(Error);
  /external/webkit/WebCore/bindings/js/
JSAudioConstructor.cpp 37 #include <runtime/Error.h>
JSDesktopNotificationsCustom.cpp 42 #include <runtime/Error.h>
JSEventSourceConstructor.cpp 42 #include <runtime/Error.h>
JSImageConstructor.cpp 28 #include <runtime/Error.h>
JSSharedWorkerConstructor.cpp 40 #include <runtime/Error.h>
JSWebGLArrayHelper.h 34 #include <runtime/Error.h>
JSWebGLByteArrayConstructor.cpp 37 #include <runtime/Error.h>
JSWebGLByteArrayCustom.cpp 35 #include <runtime/Error.h>
JSWebGLFloatArrayConstructor.cpp 37 #include <runtime/Error.h>
JSWebGLIntArrayConstructor.cpp 37 #include <runtime/Error.h>
JSWebGLShortArrayConstructor.cpp 38 #include <runtime/Error.h>
JSWebGLUnsignedByteArrayConstructor.cpp 37 #include <runtime/Error.h>
JSWebGLUnsignedIntArrayConstructor.cpp 37 #include <runtime/Error.h>
JSWebGLUnsignedShortArrayConstructor.cpp 37 #include <runtime/Error.h>

Completed in 473 milliseconds

1 2 34 5 6 7 8 91011>>