HomeSort by relevance Sort by last modified time
    Searched defs:Exception (Results 51 - 75 of 126) sorted by null

1 23 4 5 6

  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
sizeofpack.cpp 81 class Exception {};
89 cxx_throw<Exception>("Youpi",1);
  /external/dexmaker/dexmaker-mockito-tests/src/androidTest/java/com/android/dx/mockito/tests/
GeneralMocking.java 79 public void mockClass() throws Exception {
89 public void mockInterface() throws Exception {
99 public void spyClass() throws Exception {
113 public void spyNewClass() throws Exception {
133 throw new Exception();
134 } catch (Exception here) {
143 public void spyThrowingMethod() throws Exception {
157 public void spyErrorMethod() throws Exception {
169 public void spyExceptingMethod() throws Exception {
182 public void callAbstractRealMethod() throws Exception {
    [all...]
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 376 // exception.
502 // Close the application if this exception will not be handled by the
507 EXCEPTION_DEBUG_INFO &Exception = DebugEvent.u.Exception;
508 if (Exception.dwFirstChance > 0) {
511 errs() << "First chance exception at "
512 << Exception.ExceptionRecord.ExceptionAddress
513 << ", exception code: "
515 Exception.ExceptionRecord.ExceptionCode)
516 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n"
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ProxyTest.java 37 * exceptions are those which can be mapped to another exception in the
42 * UndeclaredThrowableException wrappers any checked exception which is not
118 throws Exception {
150 fail("Problem converting exception");
156 fail("Problem converting exception");
163 fail("Problem converting exception");
169 fail("Problem converting exception");
273 assertTrue(exps.contains(Exception.class));
312 public void test() throws Exception {
313 throw new Exception();
    [all...]
  /external/ImageMagick/Magick++/lib/
Exception.cpp 6 // Implementation of Exception and derived classes
19 #include "Magick++/Exception.h"
21 Magick::Exception::Exception(const std::string& what_)
22 : std::exception(),
24 _nested((Exception *) NULL)
28 Magick::Exception::Exception(const std::string& what_,
29 Exception* nested_)
30 : std::exception(),
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/
GdbStubInternal.h 65 #define GDB_SIGFPE 8 // Floating point exception
136 EFI_EXCEPTION_TYPE Exception;
207 // Array of exception types that need to be hooked by the debugger
266 Send the T signal with the given exception type (in gdb order) and possibly with n:r pairs related to the watchpoints
268 @param SystemContext Register content at time of the exception
269 @param GdbExceptionType GDB exception type
282 @param EFIExceptionType EFI Exception that is being processed
283 @retval UINTN that corresponds to EFIExceptionType's GDB exception type number
347 @param SystemContext Register content at time of the exception
359 @param SystemContext Register content at time of the exception
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/
GdbDebugAgent.h 63 #define GDB_SIGFPE 8 // Floating point exception
104 EFI_EXCEPTION_TYPE Exception;
175 // Array of exception types that need to be hooked by the debugger
212 Send the T signal with the given exception type (in gdb order) and possibly with n:r pairs related to the watchpoints
214 @param SystemContext Register content at time of the exception
215 @param GdbExceptionType GDB exception type
228 @param EFIExceptionType EFI Exception that is being processed
229 @retval UINTN that corresponds to EFIExceptionType's GDB exception type number
293 @param SystemContext Register content at time of the exception
305 @param SystemContext Register content at time of the exception
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 1 //===--- SemaExceptionSpec.cpp - C++ Exception Specifications ---*- C++ -*-===//
10 // This file provides Sema routines for C++ exception specification testing.
39 /// swap function then tries to call std::swap unqualified from the exception
41 /// such a case and turns off delay-parsing of exception specifications.
66 /// exception specification. Incomplete types, or pointers to incomplete types
69 /// \param[in,out] T The exception type. This will be decayed to a pointer type
74 // in an exception-specification is adjusted to type T, "pointer to T", or
99 // A type denoted in an exception-specification shall not denote [...]
108 // A type denoted in an exception-specification shall not denote an
110 // A type denoted in an exception-specification shall not denote
    [all...]
  /external/swiftshader/third_party/LLVM/utils/KillTheDoctor/
KillTheDoctor.cpp 416 // exception.
541 // Close the application if this exception will not be handled by the
546 EXCEPTION_DEBUG_INFO &Exception = DebugEvent.u.Exception;
547 if (Exception.dwFirstChance > 0) {
550 errs() << "First chance exception at "
551 << Exception.ExceptionRecord.ExceptionAddress
552 << ", exception code: "
554 Exception.ExceptionRecord.ExceptionCode)
555 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n"
    [all...]
  /frameworks/base/test-runner/tests/src/android/test/
AndroidTestRunnerTest.java 41 protected void setUp() throws Exception {
49 public void testLoadNoTestCases() throws Exception {
59 public void testSetTestSuiteWithOneTestCase() throws Exception {
69 public void testRunTest() throws Exception {
80 public void testRunTestWithAndroidTestCase() throws Exception {
96 public void testRunTestWithAndroidTestCaseInSuite() throws Exception {
112 public void testRunTestWithAndroidTestCaseInNestedSuite() throws Exception {
128 public void testRunTestWithNullListener() throws Exception {
139 public void testSetTestClassWithTestSuiteProvider() throws Exception {
151 public void testSetTestClassWithTestSuite() throws Exception {
    [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugAgent.c 3 the first C function called by exception/interrupt handlers,
287 // Restore Debug Register State only when Host didn't change it inside exception handler.
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/
TestCharsetDetector.java 57 throw new Exception();
59 catch (Exception e) {
81 } catch (Exception e) {
134 public void TestInputFilter() throws Exception
163 public void TestUTF8() throws Exception {
187 public void TestUTF16() throws Exception
220 public void TestC1Bytes() throws Exception
418 } catch (Exception e) {
419 errln("exception while processing test cases: " + e.toString());
424 String encoding, String language, boolean checkRoundtrip, String id) throws Exception {
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
TestCharsetDetector.java 54 throw new Exception();
56 catch (Exception e) {
78 } catch (Exception e) {
131 public void TestInputFilter() throws Exception
160 public void TestUTF8() throws Exception {
184 public void TestUTF16() throws Exception
217 public void TestC1Bytes() throws Exception
415 } catch (Exception e) {
416 errln("exception while processing test cases: " + e.toString());
421 String encoding, String language, boolean checkRoundtrip, String id) throws Exception {
    [all...]
  /external/protobuf/conformance/third_party/jsoncpp/
jsoncpp.cpp     [all...]
json.h 399 #include <exception>
425 class JSON_API Exception : public std::exception {
427 Exception(std::string const& msg);
428 ~Exception() throw() override;
438 * \remark derived from Json::Exception
440 class JSON_API RuntimeError : public Exception {
449 * \remark derived from Json::Exception
451 class JSON_API LogicError : public Exception {
543 * exception if a bound is exceeded to avoid security holes in your app
    [all...]
  /cts/hostsidetests/security/src/android/security/cts/
SELinuxHostTest.java 147 protected void setUp() throws Exception {
182 String tmpFileName) throws Exception {
184 throw new Exception();
203 String tmpFileName) throws Exception {
252 public static File getDevicePolicyFile(ITestDevice device) throws Exception {
260 public static File getDeviceSystemPolicyFile(ITestDevice device) throws Exception {
269 public static int getVendorSepolicyVersion(ITestDevice device) throws Exception {
290 * @throws Exception
293 public void testGlobalEnforcing() throws Exception {
302 * @throws Exception
    [all...]
  /external/v8/src/debug/
debug.js 35 Exception: 2,
203 // Exception evaluating condition counts as not triggered.
630 // Disable all exception breakpoints:
899 function MakeExceptionEvent(break_id, exception, uncaught, promise) {
900 return new ExceptionEvent(break_id, exception, uncaught, promise);
904 function ExceptionEvent(break_id, exception, uncaught, promise) {
906 this.exception_ = exception;
913 return Debug.DebugEvent.Exception;
917 ExceptionEvent.prototype.exception = function() { method in class:ExceptionEvent
  /external/v8/src/mips/
simulator-mips.h 458 enum Exception {
467 void SignalException(Exception e);
  /external/v8/src/mips64/
simulator-mips64.h 489 enum Exception {
498 void SignalException(Exception e);
  /frameworks/support/heifwriter/src/main/java/androidx/heifwriter/
HeifEncoder.java 154 * @param e The exception that the codec reported.
196 throw new Exception();
199 } catch (Exception e) {
    [all...]
  /prebuilts/sdk/tools/darwin/lib/
shrinkedAndroid.jar 
  /prebuilts/sdk/tools/lib/
shrinkedAndroid.jar 
  /prebuilts/sdk/tools/linux/lib/
shrinkedAndroid.jar 
  /prebuilts/sdk/tools/windows/lib/
shrinkedAndroid.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
minwinbase.h 267 EXCEPTION_DEBUG_INFO Exception;

Completed in 607 milliseconds

1 23 4 5 6