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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementException.h 57 static void throwException(Reason, const AtomicString& type, ExceptionState&);
CustomElementRegistry.cpp 70 CustomElementException::throwException(CustomElementException::CannotRegisterFromExtension, type, exceptionState);
75 CustomElementException::throwException(CustomElementException::InvalidName, type, exceptionState);
87 CustomElementException::throwException(CustomElementException::TypeAlreadyRegistered, type, exceptionState);
98 CustomElementException::throwException(CustomElementException::ContextDestroyedCreatingCallbacks, type, exceptionState);
112 CustomElementException::throwException(CustomElementException::ContextDestroyedRegisteringDefinition, type, exceptionState);
CustomElementException.cpp 44 void CustomElementException::throwException(Reason reason, const AtomicString& type, ExceptionState& 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;
  /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 164 throwException(id);
185 throwException(id);
204 throwException(id);
227 throwException(id);
271 throwException(id);
305 throwException(id);
350 throwException(id);
378 throwException(id);
406 throwException(id);
438 throwException(id)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementConstructorBuilder.cpp 80 CustomElementException::throwException(CustomElementException::PrototypeNotAnObject, type, exceptionState);
96 CustomElementException::throwException(CustomElementException::ContextDestroyedCheckingPrototype, type, exceptionState);
110 CustomElementException::throwException(CustomElementException::ExtendsIsInvalidName, type, exceptionState);
114 CustomElementException::throwException(CustomElementException::ExtendsIsCustomElementName, type, exceptionState);
119 CustomElementException::throwException(CustomElementException::ExtendsIsInvalidName, type, exceptionState);
179 CustomElementException::throwException(CustomElementException::ContextDestroyedRegisteringDefinition, definition->descriptor().type(), exceptionState);
219 CustomElementException::throwException(CustomElementException::PrototypeInUse, type, exceptionState);
224 CustomElementException::throwException(CustomElementException::ConstructorPropertyNotConfigurable, type, exceptionState);
  /libcore/harmony-tests/src/test/java/tests/api/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);
  /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);
  /art/test/044-proxy/src/
WrappedThrow.java 75 if1.throwException();
135 public void throwException() throws BaseException;
147 public void throwException() throws SubException;
167 public void throwException() throws SubException {}
220 if (method.getName().equals("throwException"))
  /art/test/MyClassNatives/
MyClassNatives.java 18 native void throwException();
  /dalvik/tests/044-proxy/src/
WrappedThrow.java 75 if1.throwException();
135 public void throwException() throws BaseException;
147 public void throwException() throws SubException;
167 public void throwException() throws SubException {}
220 if (method.getName().equals("throwException"))
  /frameworks/base/services/jni/
com_android_server_connectivity_Vpn.cpp 307 static void throwException(JNIEnv *env, int error, const char *message)
320 throwException(env, tun, "Cannot create interface");
330 throwException(env, SYSTEM_ERROR, "Cannot get interface name");
355 throwException(env, count, "Cannot set address");
388 throwException(env, count, "Cannot set route");
410 throwException(env, SYSTEM_ERROR, "Cannot reset interface");
  /external/chromium_org/v8/test/webkit/
stack-unwinding.js 46 function throwException() {
53 throwException();
  /ndk/sources/cxx-stl/gabi++/src/
cxxabi.cc 113 void throwException(__cxa_exception *header) {
184 throwException(header);
202 throwException(header);
  /libcore/luni/src/main/java/java/nio/charset/
CoderResult.java 219 public void throwException() throws BufferUnderflowException,
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 158 * @param throwException If true, throws EncodeException on invalid char.
160 * @throws EncodeException encode error when throwException is true
164 charToGsm(char c, boolean throwException) throws EncodeException {
173 if (throwException) {
371 * @param throwException If true, throws EncodeException on invalid char.
381 boolean throwException, int languageTable, int languageShiftTable)
384 int septetCount = countGsmSeptetsUsingTables(data, !throwException,
405 if (throwException) {
    [all...]

Completed in 517 milliseconds

1 2 3