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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementException.h 57 static void throwException(Reason, const AtomicString& type, ExceptionState&);
CustomElementRegistry.cpp 75 CustomElementException::throwException(CustomElementException::CannotRegisterFromExtension, type, exceptionState);
80 CustomElementException::throwException(CustomElementException::InvalidName, type, exceptionState);
85 CustomElementException::throwException(CustomElementException::TypeAlreadyRegistered, type, exceptionState);
102 CustomElementException::throwException(CustomElementException::ContextDestroyedCreatingCallbacks, type, exceptionState);
116 CustomElementException::throwException(CustomElementException::ContextDestroyedRegisteringDefinition, type, exceptionState);
  /external/proguard/src/proguard/evaluation/
BranchUnit.java 62 public void throwException();
BasicBranchUnit.java 119 public void throwException()
  /libcore/support/src/test/java/tests/support/
Support_ASimpleInputStream.java 29 public Support_ASimpleInputStream(boolean throwException) {
31 throwExceptionOnNextUse = throwException;
Support_ASimpleOutputStream.java 29 public Support_ASimpleOutputStream(boolean throwException) {
31 throwExceptionOnNextUse = throwException;
Support_ASimpleReader.java 29 public Support_ASimpleReader(boolean throwException) {
31 throwExceptionOnNextUse = throwException;
Support_ASimpleWriter.java 29 public Support_ASimpleWriter(boolean throwException) {
31 throwExceptionOnNextUse = throwException;
Support_OutputStream.java 29 public Support_OutputStream(boolean throwException) {
31 throwsException = throwException;
  /frameworks/ex/framesequence/jni/
BitmapDecoderJNI.cpp 27 void throwException(JNIEnv* env, const char* error) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
CountModifierDebuggee.java 44 public void throwException() throws TestException {
45 System.out.println("TestClass.throwException: exceptionCount=" + exceptionEventCount);
58 obj.throwException();
InstanceOnlyModifierDebuggee.java 41 throwException();
53 private void throwException() throws TestException {
55 "InstanceOnlyModifierDebuggee.TestClass.throwException()");
ThreadOnlyModifierDebuggee.java 61 throwException();
67 void throwException() throws TestException {
69 "ThreadOnlyModifierDebuggee.TestThread.throwException()");
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8ThrowException.cpp 87 return V8ThrowException::throwException(exception, isolate);
98 return V8ThrowException::throwException(exception, isolate);
109 return V8ThrowException::throwException(exception, isolate);
120 return V8ThrowException::throwException(exception, isolate);
131 return V8ThrowException::throwException(exception, isolate);
142 return V8ThrowException::throwException(exception, isolate);
145 v8::Handle<v8::Value> V8ThrowException::throwException(v8::Handle<v8::Value> exception, v8::Isolate* isolate)
148 isolate->ThrowException(exception);
CustomElementConstructorBuilder.cpp 79 CustomElementException::throwException(CustomElementException::PrototypeNotAnObject, type, exceptionState);
106 CustomElementException::throwException(CustomElementException::ContextDestroyedCheckingPrototype, type, exceptionState);
123 CustomElementException::throwException(CustomElementException::ExtendsIsInvalidName, type, exceptionState);
128 CustomElementException::throwException(CustomElementException::ExtendsIsCustomElementName, type, exceptionState);
134 CustomElementException::throwException(CustomElementException::ExtendsIsInvalidName, type, exceptionState);
186 CustomElementException::throwException(CustomElementException::ContextDestroyedRegisteringDefinition, definition->descriptor().type(), exceptionState);
226 CustomElementException::throwException(CustomElementException::PrototypeInUse, type, exceptionState);
231 CustomElementException::throwException(CustomElementException::ConstructorPropertyNotConfigurable, type, exceptionState);
PrivateScriptRunner.js 12 // throwException(PrivateScriptDOMException.IndexSizeError, "...");
13 // throwException(PrivateScriptJSError.TypeError, "...");
18 // you need to use throwException(PrivateScriptJSError.TypeError, "...").
19 function throwException(code, message)
ExceptionState.h 94 throwException();
119 void throwException();
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ListenableFutureTaskTest.java 41 protected volatile boolean throwException = false;
49 if (throwException) {
105 throwException = true;
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
BridgeResources.java 170 throwException(id);
191 throwException(id);
210 throwException(id);
233 throwException(id);
277 throwException(id);
311 throwException(id);
356 throwException(id);
384 throwException(id);
412 throwException(id);
444 throwException(id)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CoderResultTest.java 60 CoderResult.OVERFLOW.throwException();
80 CoderResult.UNDERFLOW.throwException();
223 * Test method throwException().
228 CoderResult.OVERFLOW.throwException();
234 CoderResult.UNDERFLOW.throwException();
240 CoderResult.malformedForLength(1).throwException();
246 CoderResult.unmappableForLength(1).throwException();
  /device/sample/frameworks/PlatformLibrary/jni/
PlatformLibrary.cpp 50 static void throwException(JNIEnv* env, const char* ex, const char* fmt,
80 throwException(env, "java/lang/IllegalStateException",
103 throwException(env, "java/lang/NullPointerException", NULL, 0);
  /frameworks/base/packages/PrintSpooler/jni/
com_android_printspooler_util_BitmapSerializeUtils.cpp 67 static void throwException(JNIEnv* env, const char* className, const char* message) {
74 throwException(env, className, message);
79 throwException(env, className, message);
  /libcore/luni/src/main/java/java/io/
OutputStreamWriter.java 184 result.throwException();
199 result.throwException();
216 result.throwException();
  /external/srec/srec_jni/
android_speech_srec_MicrophoneInputStream.cpp 42 static void throwException(JNIEnv *env, const char* ex, const char* fmt, int data) {
95 throwException(env, "java/io/IOException", "AudioRecord::read failed %d", length);
  /frameworks/opt/net/wifi/service/jni/
jni_helper.h 6 void throwException( JNIEnv *env, const char *message, int line );
32 #define THROW(env, message) throwException(env, message, __LINE__)

Completed in 1556 milliseconds

1 2 3 4 5