HomeSort by relevance Sort by last modified time
    Searched full:exceptions (Results 1 - 25 of 6480) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/059-finalizer-throw/
info.txt 1 Verify that exceptions thrown from finalizers are ignored.
  /ndk/tests/build/gnustl-force-all/jni/
Application.mk 3 APP_GNUSTL_FORCE_CPP_FEATURES := exceptions rtti
  /ndk/tests/build/gnustl-force-exceptions/jni/
Application.mk 3 APP_GNUSTL_FORCE_CPP_FEATURES := exceptions
  /external/webkit/Source/WebCore/manual-tests/
debugger-caught-uncaught-exceptions.html 6 // Pause on uncaught exceptions and pause on all exceptions should pause here,
15 // This will pause on Pause on all exceptions, but not Pause on uncaught exceptions.
23 // This will pause on both Pause on all exceptions and Pause on uncaught exceptions.
29 <p>This page tests <a href="https://bugs.webkit.org/show_bug.cgi?id=28622">Caught exceptions still pause the debugger</a>
30 <p>To test this bug, open the inspector, open the scripts panel, and click the button to pause on all exceptions, press
31 the button, and see which exceptions are paused on. Then press the pause on exceptions button again to onl
    [all...]
  /dalvik/tests/081-hot-exceptions/
info.txt 2 exceptions encountered during trace selection. The existence of exceptions will
  /external/clang/test/Driver/
clang-exception-flags.cpp 2 // DEFAULT: "-cc1" {{.*}} "-fcxx-exceptions" "-fexceptions"
5 // ON1: "-cc1" {{.*}} "-fcxx-exceptions" "-fexceptions"
7 // RUN: %clang -### -fno-exceptions -fcxx-exceptions %s 2>&1 | FileCheck %s -check-prefix=ON2
8 // ON2: "-cc1" {{.*}} "-fcxx-exceptions" "-fexceptions"
10 // RUN: %clang -### -fno-cxx-exceptions -fexceptions %s 2>&1 | FileCheck %s -check-prefix=ON3
11 // ON3: "-cc1" {{.*}} "-fcxx-exceptions" "-fexceptions"
13 // RUN: %clang -### -fno-exceptions %s 2>&1 | FileCheck %s -check-prefix=OFF1
14 // OFF1-NOT: "-cc1" {{.*}} "-fcxx-exceptions"
16 // RUN: %clang -### -fno-cxx-exceptions %s 2>&1 | FileCheck %s -check-prefix=OFF
    [all...]
  /external/clang/test/Lexer/
has_feature_exceptions.cpp 1 // RUN: %clang_cc1 -E -fexceptions %s -o - | FileCheck --check-prefix=CHECK-EXCEPTIONS %s
2 // RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-NO-EXCEPTIONS %s
10 // CHECK-EXCEPTIONS: foo
11 // CHECK-NO-EXCEPTIONS: bar
  /external/eigen/bench/btl/libs/eigen2/
CMakeLists.txt 12 btl_add_target_property(btl_eigen2_linear COMPILE_FLAGS "-fno-exceptions -DBTL_PREFIX=eigen2")
13 btl_add_target_property(btl_eigen2_vecmat COMPILE_FLAGS "-fno-exceptions -DBTL_PREFIX=eigen2")
14 btl_add_target_property(btl_eigen2_matmat COMPILE_FLAGS "-fno-exceptions -DBTL_PREFIX=eigen2")
15 btl_add_target_property(btl_eigen2_adv COMPILE_FLAGS "-fno-exceptions -DBTL_PREFIX=eigen2")
  /external/clang/test/Coverage/
ast-printing.m 1 // RUN: %clang_cc1 -fsyntax-only -fobjc-exceptions %s
2 // RUN: %clang_cc1 -ast-print -fobjc-exceptions %s
3 // RUN: %clang_cc1 -ast-dump -fobjc-exceptions %s
codegen-next.m 1 // RUN: %clang_cc1 -emit-llvm -fobjc-exceptions -o %t %s
2 // RUN: %clang_cc1 -g -emit-llvm -fobjc-exceptions -o %t %s
  /external/guava/guava-testlib/src/com/google/common/testing/
ClusterException.java 27 * "throw multiple exceptions", or something close to it. The prototypical code
43 * List&lt;Exception&gt; exceptions = Lists.newArrayList();
48 * exceptions.add(e);
51 * if (exceptions.size() > 0) {
52 * throw ClusterException.create(exceptions);
64 public final Collection<? extends Throwable> exceptions; field in class:ClusterException
66 private ClusterException(Collection<? extends Throwable> exceptions) {
68 exceptions.size() + " exceptions were thrown. The first exception is listed as a cause.",
69 exceptions.iterator().next())
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttExceptions.java 23 * Attribute class for standard {@code Exceptions} attributes.
27 public static final String ATTRIBUTE_NAME = "Exceptions";
30 private final TypeList exceptions; field in class:AttExceptions
35 * @param exceptions {@code non-null;} list of classes, presumed but not
38 public AttExceptions(TypeList exceptions) {
42 if (exceptions.isMutable()) {
43 throw new MutabilityException("exceptions.isMutable()");
47 throw new NullPointerException("exceptions == null");
50 this.exceptions = exceptions;
    [all...]
  /external/eigen/bench/btl/libs/eigen3/
CMakeLists.txt 19 btl_add_target_property(btl_eigen3_linear COMPILE_FLAGS "-fno-exceptions -DBTL_PREFIX=eigen3")
20 btl_add_target_property(btl_eigen3_vecmat COMPILE_FLAGS "-fno-exceptions -DBTL_PREFIX=eigen3")
21 btl_add_target_property(btl_eigen3_matmat COMPILE_FLAGS "-fno-exceptions -DBTL_PREFIX=eigen3")
22 btl_add_target_property(btl_eigen3_adv COMPILE_FLAGS "-fno-exceptions -DBTL_PREFIX=eigen3")
31 btl_add_target_property(btl_eigen3_nogccvec_linear COMPILE_FLAGS "-fno-exceptions -fno-tree-vectorize -DBTL_PREFIX=eigen3_nogccvec")
32 btl_add_target_property(btl_eigen3_nogccvec_vecmat COMPILE_FLAGS "-fno-exceptions -fno-tree-vectorize -DBTL_PREFIX=eigen3_nogccvec")
33 btl_add_target_property(btl_eigen3_nogccvec_matmat COMPILE_FLAGS "-fno-exceptions -fno-tree-vectorize -DBTL_PREFIX=eigen3_nogccvec")
34 btl_add_target_property(btl_eigen3_nogccvec_adv COMPILE_FLAGS "-fno-exceptions -fno-tree-vectorize -DBTL_PREFIX=eigen3_nogccvec")
43 btl_add_target_property(btl_eigen3_novec_linear COMPILE_FLAGS "-fno-exceptions -DEIGEN_DONT_VECTORIZE -DBTL_PREFIX=eigen3_novec")
44 btl_add_target_property(btl_eigen3_novec_vecmat COMPILE_FLAGS "-fno-exceptions -DEIGEN_DONT_VECTORIZE -DBTL_PREFIX=eigen3_novec"
    [all...]
  /external/clang/test/SemaObjC/
no-objc-exceptions.m 4 @throw @"Hello"; // expected-error {{cannot use '@throw' with Objective-C exceptions disabled}}
8 @try { // expected-error {{cannot use '@try' with Objective-C exceptions disabled}}
  /external/mockito/src/org/mockito/exceptions/misusing/
CannotVerifyStubOnlyMock.java 6 package org.mockito.exceptions.misusing;
8 import org.mockito.exceptions.base.MockitoException;
FriendlyReminderException.java 6 package org.mockito.exceptions.misusing;
8 import org.mockito.exceptions.base.MockitoException;
InvalidUseOfMatchersException.java 6 package org.mockito.exceptions.misusing;
8 import org.mockito.exceptions.base.MockitoException;
MissingMethodInvocationException.java 6 package org.mockito.exceptions.misusing;
8 import org.mockito.exceptions.base.MockitoException;
MockitoConfigurationException.java 5 package org.mockito.exceptions.misusing;
7 import org.mockito.exceptions.base.MockitoException;
NotAMockException.java 6 package org.mockito.exceptions.misusing;
8 import org.mockito.exceptions.base.MockitoException;
NullInsteadOfMockException.java 6 package org.mockito.exceptions.misusing;
8 import org.mockito.exceptions.base.MockitoException;
UnfinishedStubbingException.java 6 package org.mockito.exceptions.misusing;
8 import org.mockito.exceptions.base.MockitoException;
UnfinishedVerificationException.java 6 package org.mockito.exceptions.misusing;
8 import org.mockito.exceptions.base.MockitoException;
WrongTypeOfReturnValue.java 5 package org.mockito.exceptions.misusing;
7 import org.mockito.exceptions.base.MockitoException;
  /external/mockito/src/org/mockito/exceptions/verification/
NeverWantedButInvoked.java 6 package org.mockito.exceptions.verification;
8 import org.mockito.exceptions.base.MockitoAssertionError;

Completed in 482 milliseconds

1 2 3 4 5 6 7 8 91011>>