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

1 2 3

  /external/chromium/testing/gmock/scripts/generator/cpp/
keywords.py 46 EXCEPTION = set('try catch throw'.split())
49 ALL = TYPES | TYPE_MODIFIERS | ACCESS | CASTS | OTHERS | OTHER_TYPES | CONTROL | EXCEPTION | LOOP
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTransformTest.java 49 throw new UndeclaredThrowableException(EXCEPTION);
54 public void testFutureGetThrowsFunctionException() throws Exception {
56 listener.assertException(EXCEPTION);
AbstractChainedListenableFutureTest.java 36 protected static final Exception EXCEPTION = new Exception("Test exception");
43 protected void setUp() throws Exception {
52 public void testFutureGetBeforeCallback() throws Exception {
53 // Verify that get throws a timeout exception before the callback is called.
60 public void testFutureGetThrowsWrappedException() throws Exception {
61 inputFuture.setException(EXCEPTION);
62 listener.assertException(EXCEPTION);
    [all...]
AbstractServiceTest.java 56 public void testNoOpServiceStartAndWaitStopAndWait() throws Exception {
66 public void testNoOpServiceStartStopIdempotence() throws Exception {
78 public void testNoOpServiceStartStopIdempotenceAfterWait() throws Exception {
90 public void testNoOpServiceStartStopIdempotenceDoubleWait() throws Exception {
103 throws Exception {
295 + "Exception status (possibly stale): " + thrownByExecutionThread,
340 public void testStopUnstartedService() throws Exception {
351 public void testThrowingServiceStartAndWait() throws Exception {
358 assertEquals(EXCEPTION, e.getCause());
362 public void testThrowingServiceStopAndWait_stopThrowing() throws Exception {
    [all...]
FuturesTransformAsyncFunctionTest.java 67 default: throw new UndeclaredThrowableException(EXCEPTION);
73 public void testFutureGetThrowsFunctionException() throws Exception {
75 listener.assertException(EXCEPTION);
79 throws Exception {
89 throws Exception {
99 public void testFutureCancelBeforeInputCompletion() throws Exception {
111 public void testFutureCancellableBeforeOutputCompletion() throws Exception {
124 public void testFutureCancellableBeforeFunctionCompletion() throws Exception {
153 public void testFutureCancelAfterCompletion() throws Exception {
162 public void testFutureGetThrowsRuntimeException() throws Exception {
    [all...]
  /external/guava/guava-tests/test/com/google/common/testing/
TestLogHandlerTest.java 35 @Override protected void setUp() throws Exception {
47 public void tearDown() throws Exception {
54 public void test() throws Exception {
60 assertSame(EXCEPTION, record.getThrown());
63 public void testConcurrentModification() throws Exception {
87 static final Exception EXCEPTION = new Exception();
94 logger.log(Level.INFO, "message", EXCEPTION);
  /external/elfutils/
Makefile.am 36 EXTRA_DIST = elfutils.spec GPG-KEY NOTES EXCEPTION
  /packages/apps/Email/tests/src/com/android/email/
RefreshManagerTest.java 43 private static final MessagingException EXCEPTION = new MessagingException("test");
52 protected void setUp() throws Exception {
65 protected void tearDown() throws Exception {
117 s.onCallback(EXCEPTION, 0, mClock);
203 // Done with exception.
204 mController.mListener.updateMailboxListCallback(EXCEPTION, ACCOUNT_2, 0);
210 assertEquals(MessagingExceptionStrings.getErrorString(mContext, EXCEPTION),
301 // Done with exception.
302 mController.mListener.updateMailboxCallback(EXCEPTION, ACCOUNT_2, MAILBOX_2, 0, 0, null);
308 assertEquals(MessagingExceptionStrings.getErrorString(mContext, EXCEPTION),
    [all...]
  /packages/apps/Email/emailsync/src/com/android/emailsync/
AbstractSyncService.java 96 * functionality, success is indicated by a failure to throw an Exception
149 static final int EXCEPTION = 3;
155 Exception exception = null; field in class:AbstractSyncService.ValidationResult
167 ValidationResult(Exception e) {
169 failure = EXCEPTION;
170 exception = e;
206 public void userLog(String str, Exception e) {
  /external/chromium_org/v8/src/
json-stringifier.h 52 enum Result { UNCHANGED, SUCCESS, EXCEPTION, CIRCULAR, STACK_OVERFLOW };
281 return Failure::Exception();
371 // Return empty handle to signal an exception.
407 if (object.is_null()) return EXCEPTION;
474 if (has_exception) return EXCEPTION;
499 if (has_exception) return EXCEPTION;
503 if (has_exception) return EXCEPTION;
604 RETURN_IF_EMPTY_HANDLE_VALUE(isolate_, element, EXCEPTION);
655 if (property.is_null()) return EXCEPTION;
659 if (result >= EXCEPTION) return result
    [all...]
regexp-macro-assembler.h 200 // EXCEPTION: Something failed during execution. If no exception has been
202 // throw the exception.
206 enum Result { RETRY = -2, EXCEPTION = -1, FAILURE = 0, SUCCESS = 1 };
regexp-macro-assembler.cc 184 if (result == EXCEPTION && !isolate->has_pending_exception()) {
186 // but haven't created the exception yet.
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
Dbg.stg 202 "DBG->recognitionException(DBG, EXCEPTION);<\n>"
218 "DBG->recognitionException(DBG, EXCEPTION);"
220 @newNVException.noViableAltException() ::= "DBG->recognitionException(DBG, EXCEPTION);"
226 DBG->recognitionException(DBG, EXCEPTION);
236 // DBG->recognitionException(DBG, EXCEPTION);
C.stg 175 * and so on. The exception (in my book at least) is for generated code, where you are
219 #undef EXCEPTION
263 #define EXCEPTION LEXSTATE->exception
342 #undef EXCEPTION
378 #define EXCEPTION PSRSTATE->exception
421 #undef EXCEPTION
456 #define EXCEPTION PSRSTATE->exception
    [all...]
ASTParser.stg 45 retval.tree = (<ASTLabelType>)(ADAPTOR->errorNode(ADAPTOR, INPUT, retval.start, LT(-1), EXCEPTION));
AST.stg 384 EXCEPTION->type = ANTLR3_REWRITE_EARLY_EXCEPTION;
385 EXCEPTION->name = (void *)ANTLR3_REWRITE_EARLY_EXCEPTION_NAME;
  /external/chromium_org/v8/tools/testrunner/local/
execution.py 39 EXCEPTION = -2
66 except Exception, e:
67 print(">>> EXCEPTION: %s" % e)
68 return (-1, EXCEPTION, 0)
107 except Exception, e:
108 # If this failed, save the exception and re-raise it later (after
154 except Exception, e:
155 print("Exception: %s" % e)
179 class BreakNowException(Exception):
  /external/v8/src/
regexp-macro-assembler.h 185 // EXCEPTION: Something failed during execution. If no exception has been
187 // throw the exception.
191 enum Result { RETRY = -2, EXCEPTION = -1, FAILURE = 0, SUCCESS = 1 };
regexp-macro-assembler.cc 183 if (result == EXCEPTION && !isolate->has_pending_exception()) {
185 // but haven't created the exception yet.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/network/chrome-firephp/
devtools.js 100 case "EXCEPTION":
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.event_1.2.0.v20100503.jar 
  /external/chromium_org/v8/src/arm/
regexp-macro-assembler-arm.cc 648 // Exit with OutOfMemory exception. There is not enough space on the stack
650 __ mov(r0, Operand(EXCEPTION));
854 // must exit with a stack-overflow exception.
864 // If any of the code above needed to exit with an exception.
866 // Exit with Result EXCEPTION(-1) to signal thrown exception.
867 __ mov(r0, Operand(EXCEPTION));
    [all...]
  /external/chromium_org/v8/src/ia32/
regexp-macro-assembler-ia32.cc 678 // Exit with OutOfMemory exception. There is not enough space on the stack
680 __ mov(eax, EXCEPTION);
904 // must exit with a stack-overflow exception.
916 // If any of the code above needed to exit with an exception.
918 // Exit with Result EXCEPTION(-1) to signal thrown exception.
919 __ mov(eax, EXCEPTION);
    [all...]
  /external/chromium_org/v8/src/mips/
regexp-macro-assembler-mips.cc 137 // If the code gets too big or corrupted, an internal exception will be
598 // space on trampolines, an internal exception flag is set. If this case
643 // Exit with OutOfMemory exception. There is not enough space on the stack
645 __ li(v0, Operand(EXCEPTION));
862 // must exit with a stack-overflow exception.
    [all...]
  /external/chromium_org/v8/src/x64/
regexp-macro-assembler-x64.cc 729 // Exit with OutOfMemory exception. There is not enough space on the stack
731 __ Set(rax, EXCEPTION);
    [all...]

Completed in 682 milliseconds

1 2 3