/external/clang/test/SemaCXX/ |
unreachable-catch-clauses.cpp | 1 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fsyntax-only -verify %s
|
/external/clang/test/SemaObjC/ |
rdar6248119.m | 1 // RUN: %clang_cc1 -fsyntax-only %s -verify -fobjc-exceptions
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
TearDownStack.java | 61 List<Throwable> exceptions = new ArrayList<Throwable>(); local 70 exceptions.add(t); 75 if ((!suppressThrows) && (exceptions.size() > 0)) { 76 throw ClusterException.create(exceptions);
|
/external/jdiff/src/jdiff/ |
ConstructorAPI.java | 24 * The exceptions thrown by this constructor, being all the exception types 25 * separated by commas. "no exceptions" if no exceptions are thrown. 27 public String exceptions_ = "no exceptions";
|
/external/stlport/stlport/stl/config/ |
_cray.h | 31 // Uncomment this if your compiler does not support exceptions 32 // Cray C++ supports exceptions when '-h exceptions' option is user; 33 // therefore '-D_STLP_HAS_NO_EXCEPTIONS' must be used when '-h exceptions'
|
/ndk/build/tools/toolchain-patches/gcc/ |
0001-Enable-C-exceptions-and-RTTI-by-default.patch | 4 Subject: Enable C++ exceptions and RTTI by default. 22 - "%{!fexceptions:%{!fno-exceptions: -fno-exceptions}} " \ 24 + "%{!fexceptions:%{!fno-exceptions: -fexceptions}} " \
|
/ndk/sources/cxx-stl/gnu-libstdc++/ |
README | 10 This implementation fully supports C++ exceptions and RTTI.
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
_cray.h | 31 // Uncomment this if your compiler does not support exceptions 32 // Cray C++ supports exceptions when '-h exceptions' option is user; 33 // therefore '-D_STLP_HAS_NO_EXCEPTIONS' must be used when '-h exceptions'
|
/prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/ |
README | 10 This implementation fully supports C++ exceptions and RTTI.
|
/prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/config/ |
_cray.h | 31 // Uncomment this if your compiler does not support exceptions 32 // Cray C++ supports exceptions when '-h exceptions' option is user; 33 // therefore '-D_STLP_HAS_NO_EXCEPTIONS' must be used when '-h exceptions'
|
/prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/ |
README | 10 This implementation fully supports C++ exceptions and RTTI.
|
/prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/ |
_cray.h | 31 // Uncomment this if your compiler does not support exceptions 32 // Cray C++ supports exceptions when '-h exceptions' option is user; 33 // therefore '-D_STLP_HAS_NO_EXCEPTIONS' must be used when '-h exceptions'
|
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/ |
README | 10 This implementation fully supports C++ exceptions and RTTI.
|
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/config/ |
_cray.h | 31 // Uncomment this if your compiler does not support exceptions 32 // Cray C++ supports exceptions when '-h exceptions' option is user; 33 // therefore '-D_STLP_HAS_NO_EXCEPTIONS' must be used when '-h exceptions'
|
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/ |
cg.cpp | 1 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -triple x86_64-apple-darwin10 -S -emit-llvm -std=c++11 -include %S/ser.h %s -o - | FileCheck %s 2 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -triple x86_64-apple-darwin10 -emit-pch -o %t-ser.pch -std=c++11 -x c++ %S/ser.h 3 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -triple x86_64-apple-darwin10 -S -emit-llvm -std=c++11 -include-pch %t-ser.pch %s -o - | FileCheck %s
|
/external/clang/test/PCH/ |
cxx_exprs.cpp | 2 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -include %S/cxx_exprs.h -std=c++11 -fsyntax-only -verify %s -ast-dump 5 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -x c++-header -std=c++11 -emit-pch -o %t %S/cxx_exprs.h 6 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-dump
|
cxx-templates.cpp | 2 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -include %S/cxx-templates.h -verify %s -ast-dump -o - 3 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -include %S/cxx-templates.h %s -emit-llvm -o - | FileCheck %s 6 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -x c++-header -emit-pch -o %t %S/cxx-templates.h 7 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -include-pch %t -verify %s -ast-dump -o - 8 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -include-pch %t %s -emit-llvm -o - | FileCheck %s
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyFactoryTest.java | 65 Class[] exceptions = { local 77 checkException(message, e, exceptions[i]); 79 checkException(message, null, exceptions[i]); 105 Class[] exceptions = { local 121 checkException(message, e, exceptions[i]); 123 checkException(message, null, exceptions[i]); 151 Class[] exceptions = { local 169 checkException(message, e, exceptions[i]); 171 checkException(message, null, exceptions[i]); 204 Class[] exceptions = local 253 Class[] exceptions = { local 329 Class[] exceptions = { local 397 Class[] exceptions = { local [all...] |
/external/clang/test/CodeGenCXX/ |
sizeof-unwind-exception.cpp | 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions %s -O2 -o - | FileCheck %s --check-prefix=X86-64 2 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions %s -O2 -o - | FileCheck %s --check-prefix=X86-32 3 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions %s -O2 -o - | FileCheck %s --check-prefix=ARM-DARWIN 4 // RUN: %clang_cc1 -triple arm-unknown-gnueabi -emit-llvm -fcxx-exceptions -fexceptions %s -O2 -o - | FileCheck %s --check-prefix=ARM-EABI 5 // RUN: %clang_cc1 -triple mipsel-unknown-unknown -emit-llvm -fcxx-exceptions -fexceptions %s -O2 -o - | FileCheck %s --check-prefix=MIPS
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
Rop.java | 65 private final TypeList exceptions; field in class:Rop 87 * @param exceptions {@code non-null;} list of possible types thrown by this 95 TypeList exceptions, int branchingness, boolean isCallLike, 105 if (exceptions == null) { 106 throw new NullPointerException("exceptions == null"); 113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) { 114 throw new IllegalArgumentException("exceptions / branchingness " + 121 this.exceptions = exceptions; 135 * @param exceptions {@code non-null;} list of possible types thrown by thi [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
Rop.java | 65 private final TypeList exceptions; field in class:Rop 87 * @param exceptions {@code non-null;} list of possible types thrown by this 95 TypeList exceptions, int branchingness, boolean isCallLike, 105 if (exceptions == null) { 106 throw new NullPointerException("exceptions == null"); 113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) { 114 throw new IllegalArgumentException("exceptions / branchingness " + 121 this.exceptions = exceptions; 135 * @param exceptions {@code non-null;} list of possible types thrown by thi [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
Rop.java | 65 private final TypeList exceptions; field in class:Rop 87 * @param exceptions {@code non-null;} list of possible types thrown by this 95 TypeList exceptions, int branchingness, boolean isCallLike, 105 if (exceptions == null) { 106 throw new NullPointerException("exceptions == null"); 113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) { 114 throw new IllegalArgumentException("exceptions / branchingness " + 121 this.exceptions = exceptions; 135 * @param exceptions {@code non-null;} list of possible types thrown by thi [all...] |
/external/llvm/docs/HistoricalNotes/ |
2001-09-18-OptimizeExceptions.txt | 7 In C++ programs, exceptions suck, and here's why: 13 exceptions, so this code is dead [with all the bad effects of dead 25 6. Most large C++ programs throw few exceptions. Most well designed 26 programs only throw exceptions in specific planned portions of the 29 Given our _planned_ model of handling exceptions, all of this would be 50 exceptions, so there numbers are pretty worthless... also our results
|
/external/proguard/src/proguard/optimize/peephole/ |
UnreachableExceptionRemover.java | 59 * removed exceptions. 77 // Remove exceptions with empty code blocks. 108 * Returns whether the specified block of code may throw exceptions. 125 // Check if it may be throwing exceptions. 144 * Returns the given list of exceptions, without the ones that have empty 150 // Overwrite all empty exceptions.
|
/external/proguard/src/proguard/classfile/editor/ |
ExceptionAdder.java | 31 * target exceptions attribute. 45 * target exceptions attribute. 62 // Add the index of the class constant to the list of exceptions.
|