HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 1526 - 1550 of 2577) sorted by null

<<61626364656667686970>>

  /external/emma/core/java12/com/vladium/emma/data/
MergeProcessor.java 19 import com.vladium.util.exception.Exceptions;
182 // TODO: throw exception or exit quietly?
  /external/emma/core/java12/com/vladium/emma/report/
ReportProcessor.java 20 import com.vladium.util.exception.Exceptions;
  /external/emma/core/java12/com/vladium/util/exception/
ExceptionCommon.java 9 package com.vladium.util.exception;
45 * it possible to extend the set of exception error codes across independently
84 * @throws Error if 'namespace' does not correspond to an exception class derived
95 // bail out if the some other exception hierarchy attempts
122 // ignored intentionally: if the exception codes rb is absent,
241 * Provides support for lookup of exception error codes from {@link AbstractException}
248 * @param code the message string value that was passed into exception
293 * Provides support for lookup of exception error codes from {@link AbstractException}
300 * @param code the message string value that was passed into exception
462 private static final String NESTED_THROWABLE_HEADER = "[NESTED EXCEPTION]:"
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Futures.java 69 * and a {@link Function} that maps from {@link Exception} instances into the
74 * {@link ExecutionException} with the actual cause of the exception.
79 public static <V, X extends Exception> CheckedFuture<V, X> makeChecked(
80 ListenableFuture<V> future, Function<Exception, X> mapper) {
104 public static <V, X extends Exception> CheckedFuture<V, X>
108 return Futures.makeChecked(future, new Function<Exception, X>() {
110 public X apply(Exception e) {
117 * Returns a {@code ListenableFuture} which has an exception set immediately
136 * Returns a {@code CheckedFuture} which has an exception set immediately upon
143 * provided exception itself
    [all...]
  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 656 * @exception IllegalStateException
666 * @exception IllegalStateException
721 } catch (CloneNotSupportedException exception) {
  /external/jsoncpp/src/jsontestrunner/
main.cpp 285 catch ( const std::exception &e )
287 printf( "Unhandled exception:\n%s\n", e.what() );
  /external/libcxx/test/language.support/support.exception/propagation/
current_exception.pass.cpp 10 // <exception>
14 #include <exception>
  /external/libcxxabi/src/
cxa_vector.cpp 16 #include <exception> // for std::terminate
32 // A pair of classes to simplify exception handling and control flow.
37 // call 'release'. If any of the setup operations fail, or an exception is
129 // If alloc throws an exception, rethrow the exception. If alloc returns
130 // NULL, return NULL. If the constructor throws an exception, call
132 // exception. If the destructor throws an exception, call std::terminate.
199 // address, respectively. If an exception occurs, call the given destructor
201 // throws an exception, call terminate(). The constructor and or destructo
    [all...]
  /external/libcxxabi/test/
unwind_06.cpp 10 #include <exception>
  /external/libunwind/doc/
unw_get_proc_info.tex 36 language-specific information needed during exception handling. If
38 \item[\Type{unw\_word\_t} \Var{handler}] The address of the exception
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextDarwin_arm.h 149 uint32_t exception; member in struct:RegisterContextDarwin_arm::EXC
  /external/lldb/tools/debugserver/source/
DNBDefs.h 271 } exception; member in union:DNBThreadStopInfo::__anon29155
  /external/llvm/test/MC/ARM/
eh-directive-section-comdat.s 8 @ instantiation. When the exception handling is enabled on those function,
eh-directive-section-multiple-func.s 7 @ after it have emitted the exception handling indices and tables. In this
  /external/llvm/tools/bugpoint/
ToolRunner.h 25 #include <exception>
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Job.java 83 .exception(e)
  /external/oprofile/pp/
common_option.cpp 212 catch (exception const & e) {
216 cerr << argv[0] << " unknown exception" << endl;
  /external/protobuf/python/google/protobuf/internal/
text_format_test.py 273 """Same as assertRaises, but also compares the exception message."""
  /external/qemu/android/config/linux-x86/asm/
kvm.h 220 __u32 exception; member in struct:kvm_debug_exit_arch
  /external/qemu/android/config/linux-x86_64/asm/
kvm.h 220 __u32 exception; member in struct:kvm_debug_exit_arch
  /external/skia/gm/rebaseline_server/
compare_configs.py 162 logging.exception(
163 'got exception while creating ImagePair for image_name '
compare_rendered_pictures.py 162 """Raises Exception if the dict is not the type/version we know how to read.
173 raise Exception('expected header_type "%s", but got "%s"' % (
177 raise Exception('expected header_revision %d, but got %d' % (
236 logging.exception(
237 'got exception while creating ImagePair for'
  /frameworks/base/media/jni/
android_media_MediaPlayer.cpp 92 jniThrowException(env, "java/lang/Exception", NULL);
127 ALOGW("An exception occurred while notifying an event.");
156 // If exception is NULL and opStatus is not OK, this method sends an error
157 // event to the client application; otherwise, if exception is not NULL and
158 // opStatus is not OK, this method throws the given exception to the client
160 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message)
162 if (exception == NULL) { // Don't throw exception. Instead, send an event.
167 } else { // Throw exception!
175 jniThrowException( env, exception, message)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 423 if (ar.exception == null) {
425 } else if (isCommandExceptionRadioNotAvailable(ar.exception)) {
888 if (ar.exception != null) {
900 if (ar.exception != null) {
901 // An exception occurred...just treat the disconnect
905 "Exception during getLastCallFailCause, assuming normal disconnect");
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V30.java 20 import com.android.vcard.exception.VCardException;

Completed in 1836 milliseconds

<<61626364656667686970>>