/external/guava/guava-testlib/src/com/google/common/testing/ |
D | ClusterException.java | 64 public final Collection<? extends Throwable> exceptions; field in ClusterException 66 private ClusterException(Collection<? extends Throwable> exceptions) { in ClusterException() argument 68 exceptions.size() + " exceptions were thrown. The first exception is listed as a cause.", in ClusterException() 69 exceptions.iterator().next()); in ClusterException() 71 temp.addAll(exceptions); in ClusterException() 72 this.exceptions = Collections.unmodifiableCollection(temp); in ClusterException() 78 public static RuntimeException create(Throwable... exceptions) { in create() argument 80 for (Throwable exception : exceptions) { in create() 107 public static RuntimeException create(Collection<? extends Throwable> exceptions) { in create() argument 108 if (exceptions.size() == 0) { in create() [all …]
|
D | TearDownStack.java | 61 List<Throwable> exceptions = new ArrayList<Throwable>(); in runTearDown() local 70 exceptions.add(t); in runTearDown() 75 if ((!suppressThrows) && (exceptions.size() > 0)) { in runTearDown() 76 throw ClusterException.create(exceptions); in runTearDown()
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
D | Rop.java | 65 private final TypeList exceptions; field in Rop 95 TypeList exceptions, int branchingness, boolean isCallLike, in Rop() argument 105 if (exceptions == null) { in Rop() 113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) { in Rop() 121 this.exceptions = exceptions; in Rop() 142 TypeList exceptions, int branchingness, String nickname) { in Rop() argument 143 this(opcode, result, sources, exceptions, branchingness, false, in Rop() 194 public Rop(int opcode, Type result, TypeList sources, TypeList exceptions, in Rop() argument 196 this(opcode, result, sources, exceptions, Rop.BRANCH_THROW, false, in Rop() 210 public Rop(int opcode, TypeList sources, TypeList exceptions) { in Rop() argument [all …]
|
/external/eigen/bench/btl/libs/eigen3/ |
D | 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-vector… 32 …btl_add_target_property(btl_eigen3_nogccvec_vecmat COMPILE_FLAGS "-fno-exceptions -fno-tree-vector… 33 …btl_add_target_property(btl_eigen3_nogccvec_matmat COMPILE_FLAGS "-fno-exceptions -fno-tree-vector… 34 …btl_add_target_property(btl_eigen3_nogccvec_adv COMPILE_FLAGS "-fno-exceptions -fno-tree-vector… 43 …btl_add_target_property(btl_eigen3_novec_linear COMPILE_FLAGS "-fno-exceptions -DEIGEN_DONT_VECTOR… 44 …btl_add_target_property(btl_eigen3_novec_vecmat COMPILE_FLAGS "-fno-exceptions -DEIGEN_DONT_VECTOR… [all …]
|
/external/javassist/src/main/javassist/ |
D | CtNewConstructor.java | 95 CtClass[] exceptions, in make() argument 101 cc.setExceptionTypes(exceptions); in make() 177 CtClass[] exceptions, CtClass declaring) in skeleton() argument 180 return make(parameters, exceptions, PASS_NONE, in skeleton() 196 CtClass[] exceptions, CtClass declaring) in make() argument 199 return make(parameters, exceptions, PASS_PARAMS, in make() 308 CtClass[] exceptions, int howto, in make() argument 313 return CtNewWrappedConstructor.wrapped(parameters, exceptions, in make()
|
D | CtNewMethod.java | 101 CtClass[] exceptions, in make() argument 105 return make(Modifier.PUBLIC, returnType, mname, parameters, exceptions, in make() 128 CtClass[] exceptions, in make() argument 136 cm.setExceptionTypes(exceptions); in make() 203 CtClass[] exceptions, in abstractMethod() argument 208 cm.setExceptionTypes(exceptions); in abstractMethod()
|
/external/clang/test/PCH/ |
D | 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 | 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 | FileCheck %s
|
/external/eigen/bench/btl/libs/eigen2/ |
D | 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/Analysis/ |
D | exceptions.mm | 1 // RUN: %clang_cc1 -analyze -fexceptions -fobjc-exceptions -fcxx-exceptions -analyzer-checker=core,… 18 void *mem = malloc(4); // no-warning (ObjC exceptions are usually fatal) 32 // FIXME: this should be reported as a leak, because C++ exceptions are
|
/external/javassist/src/main/javassist/bytecode/ |
D | ClassFileWriter.java | 345 String[] exceptions, AttributeWriter aw) { in begin() argument 349 if (exceptions == null) in begin() 352 intfs = constPool.addClassInfo(exceptions); in begin() 367 …public void begin(int accessFlags, int name, int descriptor, int[] exceptions, AttributeWriter aw)… in begin() argument 375 if (exceptions != null) in begin() 380 if (exceptions != null) in begin() 381 writeThrows(exceptions); in begin() 396 private void writeThrows(int[] exceptions) { in writeThrows() argument 401 output.writeInt(exceptions.length * 2 + 2); in writeThrows() 402 output.writeShort(exceptions.length); in writeThrows() [all …]
|
D | CodeAttribute.java | 45 private ExceptionTable exceptions; field in CodeAttribute 64 exceptions = etable; in CodeAttribute() 84 exceptions = src.getExceptionTable().copy(cp, classnames); in CodeAttribute() 93 info = src.copyCode(cp, classnames, exceptions, this); in CodeAttribute() 109 exceptions = new ExceptionTable(cp, in); in CodeAttribute() 161 return 18 + info.length + exceptions.size() * 8 in length() 172 exceptions.write(out); in write() 285 public ExceptionTable getExceptionTable() { return exceptions; } in getExceptionTable()
|
/external/chromium/chrome/browser/ |
D | chrome_browser_application_mac_unittest.mm | 29 // These exceptions must be in this order. 35 // Random other exceptions map to |kUnknownNSException|. 50 // Record some known exceptions. 62 // Record some unknown exceptions. 68 // We should have exactly the right number of exceptions. 79 // The unknown exceptions should end up in the overflow bucket.
|
/external/clang/test/Coverage/ |
D | 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
|
D | 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/clang/test/Preprocessor/ |
D | predefined-exceptions.m | 1 // RUN: %clang_cc1 -x objective-c -fobjc-exceptions -fexceptions -E -dM %s | FileCheck -check-prefi… 5 // RUN: %clang_cc1 -x objective-c++ -fobjc-exceptions -fexceptions -fcxx-exceptions -E -dM %s | Fil… 9 // RUN: %clang_cc1 -x objective-c++ -fexceptions -fcxx-exceptions -E -dM %s | FileCheck -check-pref…
|
/external/stlport/src/ |
D | iostream.cpp | 256 ptr_cin->exceptions(0); in _S_uninitialize() 257 ptr_cout->exceptions(0); in _S_uninitialize() 258 ptr_cerr->exceptions(0); in _S_uninitialize() 259 ptr_clog->exceptions(0); in _S_uninitialize() 278 ptr_wcin->exceptions(0); in _S_uninitialize() 279 ptr_wcout->exceptions(0); in _S_uninitialize() 280 ptr_wcerr->exceptions(0); in _S_uninitialize() 281 ptr_wclog->exceptions(0); in _S_uninitialize()
|
/external/llvm/docs/HistoricalNotes/ |
D | 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/emma/core/java12/com/vladium/jcd/cls/attribute/ |
D | ExceptionsAttribute_info.java | 52 final IDeclaredExceptionTable exceptions) in ExceptionsAttribute_info() argument 54 super (attribute_name_index, exceptions.length ()); in ExceptionsAttribute_info() 56 m_exceptions = exceptions; in ExceptionsAttribute_info()
|
/external/v8/test/mjsunit/ |
D | instanceof.js | 70 var exceptions = 0; 79 exceptions++; 84 assertEquals(88, exceptions);
|
/external/wpa_supplicant_8/src/utils/ |
D | eloop.c | 68 struct eloop_sock_table exceptions; member 239 struct eloop_sock_table *exceptions, in eloop_sock_table_set_fds() argument 290 if (exceptions && exceptions->table) { in eloop_sock_table_set_fds() 291 for (i = 0; i < exceptions->count; i++) { in eloop_sock_table_set_fds() 296 fd = exceptions->table[i].sock; in eloop_sock_table_set_fds() 348 struct eloop_sock_table *exceptions, in eloop_sock_table_dispatch() argument 361 eloop_sock_table_dispatch_table(exceptions, pollfds_map, in eloop_sock_table_dispatch() 449 return &eloop.exceptions; in eloop_get_sock_table() 702 eloop.writers.count > 0 || eloop.exceptions.count > 0)) { in eloop_run() 722 &eloop.readers, &eloop.writers, &eloop.exceptions, in eloop_run() [all …]
|
/external/clang/test/CodeGenObjC/ |
D | arc-no-arc-exceptions.m | 1 …6_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -O2 -disable-llv… 2 …6_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -O0 -disable-llv… 3 …lvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -O2 -disable-llvm-optzns -o - %s -fobjc-arc… 5 // The front-end should emit clang.arc.no_objc_arc_exceptions in -fobjc-arc-exceptions
|
/external/chromium/chrome/browser/ui/webui/options/ |
D | content_settings_handler.cc | 441 ListValue exceptions; in UpdateGeolocationExceptionsView() local 453 exceptions.Append( in UpdateGeolocationExceptionsView() 463 exceptions.Append( in UpdateGeolocationExceptionsView() 471 type_string, exceptions); in UpdateGeolocationExceptionsView() 485 ListValue exceptions; in UpdateNotificationExceptionsView() local 487 exceptions.Append( in UpdateNotificationExceptionsView() 491 exceptions.Append( in UpdateNotificationExceptionsView() 498 type_string, exceptions); in UpdateNotificationExceptionsView() 510 ListValue exceptions; in UpdateExceptionsViewFromHostContentSettingsMap() local 512 exceptions.Append(GetExceptionForPage(entries[i].first, entries[i].second)); in UpdateExceptionsViewFromHostContentSettingsMap() [all …]
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
D | filesystem.py | 35 import exceptions 224 class _WindowsError(exceptions.OSError): 234 exceptions.WindowsError 236 exceptions.WindowsError = FileSystem._WindowsError 244 except exceptions.WindowsError, e:
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | SubroutineScanner.java | 51 ExceptionTable exceptions = code.getExceptionTable(); in scan() local 52 for (int i = 0; i < exceptions.size(); i++) { in scan() 53 int handler = exceptions.handlerPc(i); in scan() 56 scan(handler, iter, subroutines[exceptions.startPc(i)]); in scan()
|
/external/oprofile/events/mips/25K/ |
D | events | 21 event:0xb counters:0,1 um:zero minimum:500 name:FP_EXCEPTIONS_TAKEN : Taken FPU exceptions 22 event:0xc counters:0,1 um:zero minimum:500 name:FP_EXCEPTION_PREDICTED : Predicted FPU exceptions 38 …counters:0,1 um:zero minimum:500 name:JTLB_EXCEPTIONS : Refill, Invalid and Modified TLB exceptions 43 …zero minimum:500 name:JTLB_IFETCH_REFILL_EXCEPTIONS : Joint-TLB refill exceptions due to instructi… 44 …minimum:500 name:JTLB_DATA_ACCESS_REFILL_EXCEPTIONS : Joint-TLB refill exceptions due to data acce… 45 …1 um:zero minimum:500 name:JTLB_REFILL_EXCEPTIONS : total Joint-TLB Instruction exceptions (refill)
|