HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 151 - 175 of 282) sorted by null

1 2 3 4 5 67 8 91011>>

  /art/runtime/
jni_internal_test.cc 57 jthrowable exception = env_->ExceptionOccurred(); local
58 EXPECT_NE(nullptr, exception);
60 EXPECT_TRUE(env_->IsInstanceOf(exception, exception_class));
278 // a pending exception.
341 // a pending exception
1556 jthrowable exception = reinterpret_cast<jthrowable>(env_->AllocObject(exception_class)); local
    [all...]
runtime.cc 249 mirror::Throwable* exception = self->GetException(&throw_location); local
250 os << "Pending exception " << PrettyTypeOf(exception)
252 << exception->Dump();
    [all...]
check_jni.cc 804 // Verify that, if an exception has been raised, the native code doesn't
805 // make any JNI calls other than the Exception* methods.
808 mirror::Throwable* exception = self->GetException(&throw_location); local
809 std::string type(PrettyTypeOf(exception));
810 JniAbortF(function_name_, "JNI %s called with pending exception '%s' thrown in %s",
    [all...]
thread.h 131 // throwing the StackOverflow exception.
314 return tlsPtr_.exception != nullptr;
322 return tlsPtr_.exception;
332 tlsPtr_.exception = new_exception;
337 tlsPtr_.exception = nullptr;
342 // Find catch block and perform long jump to appropriate exception handle
377 // If 'msg' is NULL, no detail message is set. An exception must be pending, and will be
378 // used as the new exception's cause.
556 return ThreadOffsetFromTlsPtr<pointer_size>(OFFSETOF_MEMBER(tls_ptr_sized_values, exception));
714 // Returns the fake exception used to activate deoptimization
1039 mirror::Throwable* exception; variable
    [all...]
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 413 IClassReference exception = (IClassReference) constructor.getExceptions().iterator().next(); local
414 assertEquals("java.lang.NullPointerException", exception.getClassDefinition().getQualifiedName());
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketImplTest.java 46 public void setUp() throws Exception {
54 private SSLSocket createSSLSocket() throws Exception {
58 private SSLSocket createSSLSocket(int port) throws Exception {
66 public void testSSLSocketImpl1() throws Exception {
85 } catch (Exception e) {
97 } catch (Exception e) {
132 public void testSSLSocketImpl2() throws Exception {
149 } catch (Exception e) {
161 } catch (Exception e) {
196 public void testSSLSocketImpl3() throws Exception {
922 final Exception[] exception = new Exception[1]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptDebugServer.cpp 196 v8::Handle<v8::Value> exception; local
198 handleProgramBreak(m_pausedScriptState.get(), m_executionState, exception, hitBreakpoints);
430 v8::Handle<v8::Value> exception; local
432 thisPtr->handleProgramBreak(pausedScriptState, v8::Handle<v8::Object>::Cast(info[0]), exception, hitBreakpoints);
435 void ScriptDebugServer::handleProgramBreak(ScriptState* pausedScriptState, v8::Handle<v8::Object> executionState, v8::Handle<v8::Value> exception, v8::Handle<v8::Array> hitBreakpointNumbers)
457 ScriptDebugListener::SkipPauseRequest result = listener->didPause(pausedScriptState, currentCallFrames(), ScriptValue(pausedScriptState, exception), breakpointIds);
498 if (event != v8::AsyncTaskEvent && event != v8::Break && event != v8::Exception && event != v8::AfterCompile && event != v8::BeforeCompile && event != v8::CompileError && event != v8::PromiseEvent)
516 } else if (event == v8::Exception) {
518 v8::Handle<v8::Value> exception = callInternalGetterFunction(eventData, "exception", m_isolate) local
519 handleProgramBreak(ScriptState::from(eventContext), eventDetails.GetExecutionState(), exception, v8::Handle<v8::Array>()); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 50 // Expect no exception to be thrown
66 // Expect the unchecked exception to propagate as-is
86 // Expect the undeclared exception to have been chained inside another
109 // Expect no exception to be thrown
126 // Expect the unchecked exception to propagate as-is
146 // Expect the checked exception to propagate as-is
167 // Expect the undeclared exception to have been chained inside another
190 // Expect no exception to be thrown
209 // Expect the unchecked exception to propagate as-is
232 // Expect the checked exception to propagate as-i
428 SomeCheckedException exception = new SomeCheckedException(); local
434 SomeChainingException exception = new SomeChainingException(cause); local
440 SomeChainingException exception = local
    [all...]
  /external/mockito/src/org/mockito/exceptions/
Reporter.java 36 * One of the key points of mocking library is proper verification/exception
41 * Generally, exception messages are full of line breaks to make them easy to
48 "Checked exception is invalid for this method!",
68 " when(mock.isOk()).thenThrow(exception);",
69 " doThrow(exception).when(mock).someVoidMethod();",
84 " when(mock.isOk()).thenReturn(true).thenReturn(false).thenThrow(exception);",
85 " when(mock.isOk()).thenReturn(true, false).thenThrow(exception);",
107 UnfinishedVerificationException exception = new UnfinishedVerificationException(join( local
119 throw exception;
232 "This exception may occur if matchers are combined with raw values:"
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
commons-logging-1.1.1.jar 
  /dalvik/dx/src/com/android/dx/ssa/
EscapeAnalysis.java 585 // Throw an exception if the index is out of bounds
604 // Throw an exception if the index is out of bounds
726 * Replaces instructions that trigger an ArrayIndexOutofBounds exception
727 * with an actual throw of the exception.
729 * @param insn {@code non-null;} instruction causing the exception
737 CstType exception = local
740 RegOps.NEW_INSTANCE, exception);
742 // Add a successor block with a move result pseudo for the exception
748 RegisterSpec.make(ssaMeth.makeNewSsaReg(), exception);
752 // Add another successor block to initialize the exception
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
content_settings_handler.cc 147 base::DictionaryValue* exception = new base::DictionaryValue(); local
148 exception->SetString(kOrigin, pattern.ToString());
149 exception->SetString(kEmbeddingOrigin,
153 exception->SetString(kSetting, ContentSettingToString(setting));
154 exception->SetString(kSource, provider_name);
155 return exception;
165 base::DictionaryValue* exception = new base::DictionaryValue(); local
166 exception->SetString(kSetting, ContentSettingToString(setting));
167 exception->SetString(kOrigin, origin.ToString());
168 exception->SetString(kEmbeddingOrigin, embedding_origin.ToString())
184 base::DictionaryValue* exception = new base::DictionaryValue(); local
205 base::DictionaryValue* exception = new base::DictionaryValue(); local
922 base::DictionaryValue* exception = new base::DictionaryValue(); local
    [all...]
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/
nacltest.js 259 this.exception = function(test_name, err, from_completed_test) {
263 var full_message = '[' + test_name + ' EXCEPTION] ' + message;
413 // Ideally there'd be some way to identify what exception was thrown, but JS
415 // TODO(ncbray) allow manual validation of exception types?
621 return '<exception>';
744 // If we get this exception, we can assume any callbacks or next
749 // A special exception that terminates the test with a failure
755 // This is not a special type of exception, it is an error.
756 this.tester.rpc.exception(this.name, err, !this.running);
805 // spuriously pass. Throwing this exception forces us to behave like a
    [all...]
  /external/chromium_org/ppapi/proxy/
ppb_instance_proxy.cc 290 PP_Var* exception) {
291 ReceiveSerializedException se(dispatcher(), exception); local
    [all...]
  /external/chromium_org/v8/src/
accessors.cc 265 Handle<Object> exception; local
268 if (!maybe.ToHandle(&exception)) {
273 isolate->ScheduleThrow(*exception);
1360 Handle<Object> exception; local
1387 Handle<Object> exception; local
    [all...]
  /external/chromium_org/v8/test/mjsunit/
object-define-property.js 32 // Check that an exception is thrown when null is passed as object.
33 var exception = false; variable
37 exception = true;
40 assertTrue(exception);
42 // Check that an exception is thrown when undefined is passed as object.
43 exception = false;
47 exception = true;
50 assertTrue(exception);
52 // Check that an exception is thrown when non-object is passed as object.
53 exception = false
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
EscapeAnalysis.java 586 // Throw an exception if the index is out of bounds
605 // Throw an exception if the index is out of bounds
727 * Replaces instructions that trigger an ArrayIndexOutofBounds exception
728 * with an actual throw of the exception.
730 * @param insn {@code non-null;} instruction causing the exception
738 CstType exception = local
741 RegOps.NEW_INSTANCE, exception);
743 // Add a successor block with a move result pseudo for the exception
749 RegisterSpec.make(ssaMeth.makeNewSsaReg(), exception);
753 // Add another successor block to initialize the exception
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.logging_1.0.4.v201005080501.jar 
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /art/compiler/driver/
compiler_driver.cc 739 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
741 // Do this here so that exception classes appear to have been specified image classes.
1570 mirror::Throwable* exception = self->GetException(nullptr); local
1715 mirror::Throwable* exception = soa.Self()->GetException(nullptr); local
1929 mirror::Throwable* exception = soa.Self()->GetException(&throw_location); local
    [all...]
  /art/runtime/verifier/
method_verifier.cc 470 // Flag instructions guarded by a "try" block and check exception handlers.
614 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad exception entry: startAddr=" << start
638 << "exception handler starts at bad address (" << dex_pc << ")";
642 // Ensure exception types are resolved so that they don't need resolution to be delivered,
643 // unresolved exception types will be ignored by exception delivery
3004 RegType& exception = ResolveClassAndCheckAccess(iterator.GetHandlerTypeIndex()); local
    [all...]
  /bionic/libc/kernel/uapi/asm-x86/asm/
kvm.h 264 __u32 exception; member in struct:kvm_debug_exit_arch
311 } exception; member in struct:kvm_vcpu_events
  /cts/tests/tests/media/src/android/media/cts/
ExtractDecodeEditEncodeMuxTest.java 260 private void extractDecodeEditEncodeMux() throws Exception {
261 // Exception that may be thrown during release.
262 Exception exception = null; local
272 // configure() call to throw an unhelpful exception.
364 // case we save the first exception we got and re-throw at the end (unless something
365 // other exception has already been thrown). This guarantees the first exception thrown
372 } catch(Exception e) {
374 if (exception == null)
    [all...]
  /development/ndk/platforms/android-L/arch-x86/include/asm/
kvm.h 264 __u32 exception; member in struct:kvm_debug_exit_arch
311 } exception; member in struct:kvm_vcpu_events
  /development/ndk/platforms/android-L/arch-x86_64/include/asm/
kvm.h 264 __u32 exception; member in struct:kvm_debug_exit_arch
311 } exception; member in struct:kvm_vcpu_events

Completed in 2482 milliseconds

1 2 3 4 5 67 8 91011>>