| /external/chromium_org/ppapi/proxy/ |
| ppp_class_proxy.cc | 47 bool HasProperty(void* object, PP_Var name, PP_Var* exception) { 53 ReceiveSerializedException se(obj->dispatcher, exception); 60 bool HasMethod(void* object, PP_Var name, PP_Var* exception) { 66 ReceiveSerializedException se(obj->dispatcher, exception); 75 PP_Var* exception) { 80 ReceiveSerializedException se(obj->dispatcher, exception); 91 PP_Var* exception) { 99 PP_Var* exception) { 104 ReceiveSerializedException se(obj->dispatcher, exception); 113 PP_Var* exception) { [all...] |
| /external/chromium_org/ppapi/tests/ |
| test_instance_deprecated.cc | 28 bool HasMethod(const pp::Var& name, pp::Var* exception); 31 pp::Var* exception); 80 bool InstanceSO::HasMethod(const pp::Var& name, pp::Var* exception) { 90 pp::Var* exception) { 97 *exception = pp::Var("Bad argument to SetValue(<string>)"); 102 *exception = pp::Var("Bad argument to SetException(<string>)"); 104 *exception = args[0]; 107 *exception = pp::Var("Need single arg to call ReturnValue"); 111 *exception = pp::Var("Bad function call"); 162 pp::Var exception; local 262 pp::Var exception; local [all...] |
| /art/runtime/entrypoints/portable/ |
| portable_throw_entrypoints.cc | 51 extern "C" void art_portable_throw_exception_from_code(mirror::Throwable* exception) 55 if (exception == NULL) { 56 ThrowNullPointerException(NULL, "throw with null exception"); 58 self->SetException(throw_location, exception); 66 mirror::Throwable* exception = self->GetException(NULL); local 68 return exception; 76 mirror::Throwable* exception = self->GetException(&throw_location); local 77 // Check for special deoptimization exception. 78 if (UNLIKELY(reinterpret_cast<intptr_t>(exception) == -1)) { 81 mirror::Class* exception_type = exception->GetClass() [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
| ShortTest.java | 82 boolean exception = false; 87 exception = true; 90 exception); 92 exception = false; 97 exception = true; 99 assertTrue("Failed to throw exception for MAX_VALUE + 1", exception); 101 exception = false; 106 exception = true; 108 assertTrue("Failed to throw exception for MIN_VALUE - 1", exception) [all...] |
| IllegalArgumentExceptionTest.java | 49 Throwable emptyThrowable = new Exception(); 55 Throwable exception = new Exception("msg"); local 56 IllegalArgumentException e = new IllegalArgumentException(exception); 57 assertEquals(exception.getClass().getName() + ": " + "msg", e.getMessage()); 58 assertEquals(exception.getClass().getName(), emptyException.getLocalizedMessage()); 59 assertEquals(exception.getClass().getName(), emptyException.getCause().toString()); 77 public void testSerializationSelf() throws Exception { 84 public void testSerializationCompatibility() throws Exception {
|
| IllegalStateExceptionTest.java | 49 Throwable emptyThrowable = new Exception(); 55 Throwable throwable = new Exception("msg"); 56 IllegalStateException exception = new IllegalStateException(throwable); local 57 assertEquals(throwable.getClass().getName() + ": " + "msg", exception.getMessage()); 66 Throwable emptyThrowable = new Exception(); 72 Throwable throwable = new Exception("msg_exception"); 73 IllegalStateException exception = new IllegalStateException("msg", throwable); local 74 assertEquals("msg", exception.getMessage()); 75 assertEquals("msg", exception.getLocalizedMessage()); 76 assertEquals(throwable.getClass().getName() + ": " + throwable.getMessage(), exception [all...] |
| UnsupportedOperationExceptionTest.java | 49 Throwable emptyThrowable = new Exception(); 56 Throwable throwable = new Exception("msg"); 57 UnsupportedOperationException exception = new UnsupportedOperationException(throwable); local 58 assertEquals(throwable.getClass().getName() + ": " + "msg", exception.getMessage()); 67 Throwable emptyThrowable = new Exception(); 74 Throwable throwable = new Exception("msg_exception"); 75 UnsupportedOperationException exception = new UnsupportedOperationException( local 77 assertEquals("msg", exception.getMessage()); 78 assertEquals("msg", exception.getLocalizedMessage()); 79 assertEquals(throwable.getClass().getName() + ": " + throwable.getMessage(), exception [all...] |
| /external/libcxx/test/language.support/support.exception/propagation/ |
| Android.mk | 17 test_makefile := external/libcxx/test/language.support/support.exception/propagation/Android.mk 19 test_name := language.support/support.exception/propagation/current_exception 23 test_name := language.support/support.exception/propagation/exception_ptr 27 test_name := language.support/support.exception/propagation/make_exception_ptr 31 test_name := language.support/support.exception/propagation/rethrow_exception
|
| /frameworks/base/core/java/android/os/ |
| Registrant.java | 55 notifyException(Throwable exception) 57 internalNotifyRegistrant (null, exception); 66 internalNotifyRegistrant (ar.result, ar.exception); 70 internalNotifyRegistrant (Object result, Throwable exception) 81 msg.obj = new AsyncResult(userObj, result, exception);
|
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
| InvokeMethodTest.java | 47 * Case 2: nonvirtual child method without exception and nonvirtual super method without exception 142 TaggedObject exception = reply.getNextValueAsTaggedObject(); local 143 logWriter.println(" ClassType.NewInstance: exception.tag=" 144 + exception.tag + " exception.objectID=" + exception.objectID); 152 assertTrue("exception must be != null", exception != null); 153 assertTrue("exception.objectID must be == 0", exception.objectID == 0) 219 TaggedObject exception = reply.getNextValueAsTaggedObject(); local 335 TaggedObject exception = reply.getNextValueAsTaggedObject(); local [all...] |
| /external/chromium_org/content/renderer/pepper/ |
| ppb_var_deprecated_impl.cc | 100 // given PP_Var. The module from the object will be used for the exception 104 // an exception if it's invalid. At the end of construction, if there is no 105 // exception, you know that there is no previously set exception, that the 111 ObjectAccessorTryCatch(PP_Var object, PP_Var* exception) 112 : TryCatch(exception), object_(NPObjectVar::FromPPVar(object)) { 135 // exception if it's invalid. 137 // At the end of construction, if there is no exception, you know that there is 138 // no previously set exception, that the object passed in is valid and ready to 146 PP_Var* exception) [all...] |
| /external/chromium_org/v8/test/mjsunit/ |
| function-call.js | 158 // Test that all natives using the ToObject call throw the right exception. 163 var exception = false; 173 exception = true; 176 assertTrue(exception); 178 exception = false; 182 exception = true; 185 assertTrue(exception); 187 exception = false; 191 exception = true; 194 assertTrue(exception); [all...] |
| strict-mode-eval.js | 45 var exception = false; 49 exception = true; 52 assertTrue(exception); 55 var exception = false; 59 exception = true; 62 assertTrue(exception); 65 var exception = false; 69 exception = true; 72 assertTrue(exception); 75 var exception = false [all...] |
| /development/ndk/sources/android/libportable/arch-mips/ |
| fenv.c | 25 int exception = flags & FE_ALL_EXCEPT_PORTABLE; local 27 // exception flags 28 if (exception & FE_INVALID_PORTABLE) 30 if (exception & FE_DIVBYZERO_PORTABLE) 32 if (exception & FE_OVERFLOW_PORTABLE) 34 if (exception & FE_UNDERFLOW_PORTABLE) 36 if (exception & FE_INEXACT_PORTABLE) 69 int exception = mipsflags & FE_ALL_EXCEPT; local 71 // exception flags 72 if (exception & FE_INVALID [all...] |
| /development/ndk/sources/android/libportable/arch-x86_64/ |
| fenv.c | 36 int exception = flag & FE_ALL_EXCEPT_PORTABLE; local 38 if (exception & FE_INVALID_PORTABLE) 40 if (exception & FE_DIVBYZERO_PORTABLE) 42 if (exception & FE_OVERFLOW_PORTABLE) 44 if (exception & FE_UNDERFLOW_PORTABLE) 46 if (exception & FE_INEXACT_PORTABLE) 80 int exception = x86_64flag & FE_ALL_EXCEPT; local 82 if (exception & FE_INVALID) 84 if (exception & FE_DIVBYZERO) 86 if (exception & FE_OVERFLOW [all...] |
| /external/apache-http/src/org/apache/commons/logging/impl/ |
| Jdk14Logger.java | 121 * @param exception log this cause 124 public void debug(Object message, Throwable exception) { 125 log(Level.FINE, String.valueOf(message), exception); 144 * @param exception log this cause 147 public void error(Object message, Throwable exception) { 148 log(Level.SEVERE, String.valueOf(message), exception); 167 * @param exception log this cause 170 public void fatal(Object message, Throwable exception) { 171 log(Level.SEVERE, String.valueOf(message), exception); 201 * @param exception log this caus [all...] |
| /frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
| AsyncRunner.java | 36 private Exception mException; 40 public Exception exception; field in class:AsyncRunner.RunnerResult 82 } catch (Exception exception) { 83 result.exception = exception; 90 } catch (Exception exception) { 91 result.exception = exception [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/ |
| WeakReferenceTest.java | 42 } catch (Exception e) { 43 fail("Exception during test : " + e.getMessage()); 48 boolean exception = false; 52 exception = true; 54 assertTrue("Should not throw NullPointerException", !exception); 68 } catch (Exception e) { 69 fail("Exception during test : " + e.getMessage());
|
| /external/smack/src/org/xbill/DNS/ |
| Tokenizer.java | 221 throw exception("unbalanced parentheses"); 262 throw exception("EOF in " + 276 throw exception("invalid " + 324 throw exception("unterminated escape sequence"); 327 throw exception("newline in quoted string"); 374 throw exception("expected a string"); 383 throw exception("expected " + expected); 409 throw exception("expected an integer"); 413 throw exception("expected an integer"); 429 throw exception("expected an 32 bit unsigned integer") 690 exception(String s) { method in class:Tokenizer [all...] |
| /external/stlport/stlport/ |
| exception | 19 // the native header <exception>. 40 * call to the native exception header: 43 # include_next <exception> 47 # include <../include/exception> 49 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception)
|
| /ndk/sources/cxx-stl/stlport/stlport/ |
| exception | 19 // the native header <exception>. 40 * call to the native exception header: 43 # include_next <exception> 47 # include <../include/exception> 49 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception)
|
| /prebuilts/misc/common/swig/include/2.0.11/go/ |
| std_except.i | 5 * These typemaps are used when methods are declared with an STL exception specification, such as 15 %ignore exception; 16 struct exception {}; 21 %typemap(throws) std::exception %{_swig_gopanic($1.what());%}
|
| /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/ |
| exception | 19 // the native header <exception>. 40 * call to the native exception header: 43 # include_next <exception> 47 # include <../include/exception> 49 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception)
|
| /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/ |
| exception | 19 // the native header <exception>. 40 * call to the native exception header: 43 # include_next <exception> 47 # include <../include/exception> 49 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception)
|
| /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/ |
| exception | 19 // the native header <exception>. 40 * call to the native exception header: 43 # include_next <exception> 47 # include <../include/exception> 49 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception)
|