HomeSort by relevance Sort by last modified time
    Searched full:exceptions (Results 1 - 25 of 5869) 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 2 APP_GNUSTL_FORCE_CPP_FEATURES := exceptions rtti
  /ndk/tests/build/gnustl-force-exceptions/jni/
Application.mk 2 APP_GNUSTL_FORCE_CPP_FEATURES := exceptions
forced_exceptions.cpp 1 // This file should FAIL to build iff exceptions are enabled and RTTI is disabled
4 #else // !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...]
arc-exceptions.m 3 // RUN: not grep "fobjc-arc-exceptions" %t.log
5 // RUN: grep "fobjc-arc-exceptions" %t.log
  /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/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
codegen-gnu.m 1 // RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-exceptions -fgnu-runtime -emit-llvm -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/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}}
warn-unused-exception-param.m 1 // RUN: %clang_cc1 -fsyntax-only -verify -fobjc-exceptions -Wunused-exception-parameter %s
  /ndk/tests/build/gnustl-force-none/jni/
force_none.cpp 1 // This program should FAIL to build iff exceptions and RTTI are disabled.
5 #else // !exceptions
  /external/clang/test/PCH/
objc_stmts.m 2 // RUN: %clang_cc1 -include %S/objc_stmts.h -emit-llvm -fobjc-exceptions -o - %s
3 // RUN: %clang_cc1 -include %S/objc_stmts.h -ast-dump -fobjc-exceptions -o - %s 2>&1 | FileCheck %s
6 // RUN: %clang_cc1 -x objective-c -emit-pch -fobjc-exceptions -o %t %S/objc_stmts.h
7 // RUN: %clang_cc1 -include-pch %t -emit-llvm -fobjc-exceptions -o - %s
8 // RUN: %clang_cc1 -include-pch %t -ast-dump -fobjc-exceptions -o - %s 2>&1 | FileCheck %s
  /external/clang/test/SemaCXX/
no-exceptions.cpp 3 // Various tests for -fno-exceptions
25 throw; // expected-error {{cannot use 'throw' with exceptions disabled}}
29 try { // expected-error {{cannot use 'try' with exceptions disabled}}
exception-spec-no-exceptions.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify -fexceptions -fobjc-exceptions %s
3 // Note that we're specifically excluding -fcxx-exceptions in the command line above.
5 // That this should work even with -fobjc-exceptions is PR9358
26 // -fno-exceptions.
  /external/clang/test/CodeGenCXX/
throw-expression-dtor.cpp 1 // RUN: %clang_cc1 %s -emit-llvm-only -verify -fcxx-exceptions -fexceptions
  /external/javasqlite/src/main/java/SQLite/
Exception.java 4 * Class for SQLite related exceptions.
  /ndk/tests/device/gnustl-shared-1/
README 1 This checks that one can link against gnustl_shared and still throw exceptions
  /external/proguard/src/proguard/classfile/editor/
ExceptionsAttributeEditor.java 26 * This class can add exceptions to a given exceptions attribute.
27 * Exceptions to be added must have been added to the constant pool and filled
38 * Creates a new ExceptionsAttributeEditor that will edit exceptions in the
39 * given exceptions attribute.
48 * Adds a given exception to the exceptions attribute.
  /external/clang/test/CodeGenObjC/
try.m 2 // RUN: %clang_cc1 %s -fobjc-exceptions -S -o - -triple=i686-apple-darwin9
3 // RUN: %clang_cc1 %s -fobjc-exceptions -S -o - -triple=x86_64-apple-darwin9

Completed in 430 milliseconds

1 2 3 4 5 6 7 8 91011>>