HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 226 - 250 of 712) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/
debug-scopes.js 38 var exception; variable
53 exception = e;
66 exception = null;
74 assertNull(exception, test_name + " / " + exception);
864 throw 'Exception';
875 CheckScopeContent({e:'Exception'}, 0, exec_state);
884 throw 'Exception';
899 CheckScopeContent({e:'Exception'}, 1, exec_state);
911 throw 'Exception';
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 77 @Override protected void setUp() throws Exception {
83 @Override protected void tearDown() throws Exception {
95 public void testImmediateFuture() throws Exception {
102 public void testMultipleImmediateFutures() throws Exception {
111 public void testImmediateFailedFuture() throws Exception {
112 Exception exception = new Exception(); local
114 Futures.immediateFailedFuture(exception);
121 assertSame(exception, expected.getCause())
150 MyException exception = new MyException(); local
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 294 ExceptionInfo exception = exceptions[i]; local
297 if (pos >= exception.start && pos < exception.end) {
300 newFrame.push(exception.type);
301 merge(queue, newFrame, exception.handler);
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextDarwin_arm.h 149 uint32_t exception; member in struct:RegisterContextDarwin_arm::EXC
  /external/qemu/target-arm/
op_helper.c 75 /* try to fill the TLB and return an exception if error. If retaddr is
272 void HELPER(exception)(CPUARMState *env, uint32_t excp) function
  /external/qemu/target-mips/
helper.c 212 int exception = 0, error_code = 0; local
220 exception = EXCP_AdES;
222 exception = EXCP_AdEL;
227 exception = EXCP_TLBS;
229 exception = EXCP_TLBL;
235 exception = EXCP_TLBS;
237 exception = EXCP_TLBL;
241 exception = EXCP_LTLBL;
245 /* Raise exception */
257 env->exception_index = exception;
    [all...]
  /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...]
  /frameworks/base/core/java/android/net/http/
Connection.java 161 Exception exception = null; local
236 exception = e;
239 exception = e;
242 exception = e;
245 if (exception != null) {
246 if (httpFailure(req, error, exception) &&
252 exception = null;
284 exception = e;
287 exception = e
352 Exception exception = null; local
    [all...]
  /frameworks/base/tools/aidl/
AST.h 273 Variable* exception; member in struct:CatchStatement
275 CatchStatement(Variable* exception);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
PreferencesTest.java 55 protected void setUp() throws Exception {
65 protected void tearDown() throws Exception {
70 public void testSystemNodeForPackage() throws Exception {
142 public void testImportPreferences() throws Exception {
171 } catch (Exception e) {
176 public void testImportPreferencesException() throws Exception {
191 stream.setResult(MockInputStream.exception);
210 static final int exception = 1; field in class:PreferencesTest.MockInputStream
226 case exception:
  /prebuilts/tools/common/easymock-tools/
easymock-3.1-tests.jar 
  /art/runtime/
class_linker_test.cc 52 mirror::Object* exception = self->GetException(NULL); local
56 EXPECT_TRUE(exception->InstanceOf(exception_class));
    [all...]
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...]
  /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/robolectric/src/test/java/com/xtremelabs/robolectric/res/
ViewLoaderTest.java 36 public void setUp() throws Exception {
60 public void testCreatesCorrectClasses() throws Exception {
68 public void testChoosesLayoutBasedOnDefaultScreenSize() throws Exception {
75 public void testChoosesLayoutBasedOnSearchPath_choosesFirstFileFoundOnPath() throws Exception {
83 public void testChoosesLayoutBasedOnSearchPath_respectsOrderOfPath() throws Exception {
91 public void testChoosesLayoutBasedOnDefaultVersion() throws Exception {
99 public void testChoosesLayoutBasedOnNewestVersion() throws Exception {
107 public void testChoosesLayoutBasedOnSearchPath_choosesFirstFileFoundOnPathWithVersionNumber() throws Exception {
116 public void testChoosesLayoutBasedOnSearchPath_choosesBestFileFoundOnPathWithVersionNumber() throws Exception {
125 public void testWebView() throws Exception {
343 IllegalStateException exception = null; local
    [all...]
  /frameworks/base/core/java/android/appwidget/
AppWidgetHostView.java 233 } catch (Exception e) {
344 Exception exception = null; local
388 exception = e;
398 exception = e;
411 Log.w(TAG, "updateAppWidget couldn't find any view, using error view", exception);
537 Exception exception = null; local
565 exception = e;
568 if (exception != null)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSocketTest.java 53 public void testConstructor() throws Exception {
62 public void testConstructor_InetAddressI() throws Exception {
90 public void testConstructor_InetAddressIInetAddressI() throws Exception {
137 public void testConstructor_StringI() throws Exception {
171 public void testConstructor_StringIInetAddressI() throws Exception {
208 public void test_creationStressTest() throws Exception {
491 Exception e = server.getException();
519 private Exception exception; field in class:SSLSocketTest.TestServer
570 } catch (Exception ex)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileUtils.java 118 * or an exception will have been thrown.
120 * An exception is thrown if the file does not exist.
121 * An exception is thrown if the file object exists but is a directory.
122 * An exception is thrown if the file exists but cannot be read.
151 * or an exception will have been thrown.
155 * An exception is thrown if the file object exists but is a directory.
156 * An exception is thrown if the file exists but cannot be written to.
157 * An exception is thrown if the parent directory cannot be created.
1044 IOException exception = null; local
1454 IOException exception = null; local
    [all...]
  /frameworks/base/core/java/android/view/
ViewDebug.java 510 } catch (Exception e) {
818 } catch (Exception e) {
847 } catch (Exception e) {
1603 final AtomicReference<Throwable> exception = new AtomicReference<Throwable>(); local
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
commons-logging-1.1.1.jar 
  /external/robolectric/lib/main/
commons-logging-1.1.1.jar 

Completed in 1978 milliseconds

1 2 3 4 5 6 7 8 91011>>