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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/mac/
BlockExceptions.mm 31 void ReportBlockedObjCException(NSException *exception)
34 ASSERT_WITH_MESSAGE(0, "Uncaught exception - %@", exception);
36 NSLog(@"*** WebKit discarding exception: <%@> %@", [exception name], [exception reason]);
  /external/chromium_org/third_party/icu/source/common/
utypeinfo.h 13 // Windows header <typeinfo> does not define 'exception' in 'std' namespace.
16 // include <exception> explicilty and add using statement below.
20 // with exception disabled, you have to suppress warning 4275.
22 #include <exception>
23 using std::exception;
  /external/libcxxabi/src/
exception.cpp 1 //===---------------------------- exception.cpp ---------------------------===//
10 #include <exception>
17 // exception
19 exception::~exception() _NOEXCEPT
23 const char* exception::what() const _NOEXCEPT
25 return "std::exception";
cxa_unexpected.cpp 10 #include <exception>
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Failure.java 23 private final Throwable exception; field in class:Failure
27 this.exception = builder.exception;
34 public Throwable exception() { method in class:Failure
35 return exception;
40 private Throwable exception; field in class:Failure.Builder
47 public Builder exception(Throwable exception) { method in class:Failure.Builder
48 this.exception = exception;
    [all...]
  /external/chromium_org/tools/idl_parser/test_parser/
exception_web.idl 5 /* Test Exception productions
34 *Exception(MyExc)
36 exception MyExc { };
39 *Exception(MyExcInherit)
42 exception MyExcInherit : Foo {};
44 /* ERROR Unexpected keyword "exception" after keyword "partial". */
45 partial exception MyExcPartial { };
48 *Exception(MyExcBig)
57 exception MyExcBig {
64 /* ERROR Unexpected "{" after keyword "exception". *
    [all...]
  /external/libcxx/test/language.support/support.exception/exception/
Android.mk 17 test_makefile := external/libcxx/test/language.support/support.exception/exception/Android.mk
19 test_name := language.support/support.exception/exception/exception
20 test_src := exception.pass.cpp
exception.pass.cpp 10 // test exception
12 #include <exception>
18 static_assert(std::is_polymorphic<std::exception>::value,
19 "std::is_polymorphic<std::exception>::value");
20 std::exception b;
21 std::exception b2 = b;
  /external/fdlibm/
s_matherr.c 17 int ieee_matherr(struct exception *x)
20 struct exception *x;
  /external/icu/icu4c/source/common/
utypeinfo.h 13 // Windows header <typeinfo> does not define 'exception' in 'std' namespace.
16 // include <exception> explicilty and add using statement below.
20 // with exception disabled, you have to suppress warning 4275.
22 #include <exception>
23 using std::exception;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtException.java 1 package org.bouncycastle.jce.exception;
5 * This is an extended exception. Java before version 1.4 did not offer the
6 * possibility the attach a cause to an exception. The cause of an exception is
8 * exception. This interface must be implemented by all exceptions to accomplish
16 * Returns the cause of the exception.
18 * @return The cause of the exception.
  /external/emma/core/java12/com/vladium/util/exception/
ICodedException.java 9 package com.vladium.util.exception;
19 * An error code is a compact string representing the nature of exception
22 * the exception classes mentioned above.
32 * Returns the String that was passed as 'message' argument to an exception
33 * constructor. For a coded exception this will be the compact error code
  /external/libcxx/test/depr/exception.unexpected/unexpected.handler/
unexpected_handler.pass.cpp 12 #include <exception>
  /external/libcxx/test/language.support/support.exception/exception.terminate/terminate.handler/
terminate_handler.pass.cpp 12 #include <exception>
  /external/libcxx/test/language.support/support.exception/
version.pass.cpp 10 // <exception>
12 #include <exception>
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
DialogHelper.java 26 public void showErrorMessageDialog(int titleId, Exception exception);
28 public void showErrorMessageDialog(String title, Exception exception);
DialogHelperImpl.java 46 * mDialogHelper.showErrorMessageDialog(&quot;An exception occurred!&quot;, e);
72 private static final String KEY_EXCEPTION = "exception";
82 public void showErrorMessageDialog(int titleId, Exception exception) {
83 showErrorMessageDialog(mActivity.getString(titleId), exception); local
87 public void showErrorMessageDialog(String title, Exception exception) {
90 bundle.putSerializable(KEY_EXCEPTION, exception);
99 Exception exception = (Exception) args.getSerializable(KEY_EXCEPTION) local
    [all...]
  /external/chromium_org/ppapi/c/dev/
ppp_class_deprecated.h 39 * |name| is guaranteed to be an integer or string type var. Exception is
46 struct PP_Var* exception);
49 * |name| is guaranteed to be a string-type. Exception is guaranteed non-NULL.
50 * If the method does not exist, return false and don't set the exception.
52 * if you need to throw an exception, still return false.
56 struct PP_Var* exception);
59 * |name| is guaranteed to be a string-type or an integer-type var. Exception
62 * exception and return a var of type Void. A property does not exist if
67 struct PP_Var* exception);
70 * Exception is guaranteed non-NULL
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
scriptable_object_deprecated.h 39 virtual bool HasProperty(const Var& name, Var* exception);
42 virtual bool HasMethod(const Var& name, Var* exception);
44 // The default implementation sets an exception that the property doesn't
46 virtual Var GetProperty(const Var& name, Var* exception);
50 Var* exception);
52 // The default implementation sets an exception that the property can not be
56 Var* exception);
58 // The default implementation sets an exception that the method does not
61 Var* exception);
67 // The default implementation sets an exception that the method does no
    [all...]
  /external/clang/test/CodeGenCXX/
2006-03-06-C++RecurseCrash.cpp 3 class exception { }; class in namespace:std
18 class recursive_init: public std::exception {
  /external/libcxx/test/language.support/support.exception/bad.exception/
Android.mk 17 test_makefile := external/libcxx/test/language.support/support.exception/bad.exception/Android.mk
19 test_name := language.support/support.exception/bad.exception/bad_exception
  /external/libcxx/test/language.support/support.exception/exception.terminate/
Android.mk 17 test_makefile := external/libcxx/test/language.support/support.exception/exception.terminate/Android.mk
19 test_name := language.support/support.exception/exception.terminate/nothing_to_do
  /external/libcxx/test/language.support/support.exception/exception.terminate/terminate/
Android.mk 17 test_makefile := external/libcxx/test/language.support/support.exception/exception.terminate/terminate/Android.mk
19 test_name := language.support/support.exception/exception.terminate/terminate/terminate
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathException.java 28 * This class implements an exception object that all
63 /** A nested exception.
65 protected Exception m_exception;
140 * the error originated from, and another exception
141 * that caused this exception.
144 * @param e The exception that caused this exception.
146 public XPathException(String message, Node styleNode, Exception e)
157 * an error message, and another exception
158 * that caused this exception
188 Throwable exception = m_exception; local
221 Throwable exception = m_exception; local
281 Throwable exception = m_exception; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DefaultErrorHandler.java 47 * if this flag is set to true, we will rethrow the exception on
112 * @param exception The warning information encapsulated in a
113 * SAX parse exception.
114 * @throws SAXException Any SAX exception, possibly
115 * wrapping another exception.
117 public void warning(SAXParseException exception) throws SAXException
121 printLocation(pw, exception);
122 pw.println("Parser warning: " + exception.getMessage());
141 * @param exception The error information encapsulated in a
142 * SAX parse exception
    [all...]

Completed in 586 milliseconds

1 2 3 4 5 6 7 8 91011>>