/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/ |
D | TryListBuilder.java | 46 public class TryListBuilder<EH extends ExceptionHandler> 50 private final MutableTryBlock<EH> listStart; 51 private final MutableTryBlock<EH> listEnd; 54 listStart = new MutableTryBlock<EH>(0, 0); in TryListBuilder() 55 listEnd = new MutableTryBlock<EH>(0, 0); in TryListBuilder() 60 public static <EH extends ExceptionHandler> List<TryBlock<EH>> massageTryBlocks( in massageTryBlocks() 61 List<? extends TryBlock<? extends EH>> tryBlocks) { in massageTryBlocks() 62 TryListBuilder<EH> tlb = new TryListBuilder<EH>(); in massageTryBlocks() 64 for (TryBlock<? extends EH> tryBlock: tryBlocks) { in massageTryBlocks() 68 for (EH exceptionHandler: tryBlock.getExceptionHandlers()) { in massageTryBlocks() [all …]
|
/external/parameter-framework/upstream/test/functional-tests/include/ |
D | ElementHandle.hpp | 51 using EH = ::ElementHandle; typedef in parameterFramework::ElementHandle 63 size_t getSize() const { return EH::getSize(); } in getSize() 68 if (not EH::getMappingData(key, value)) { in getMappingData() 69 throw Exception("Could not find mapping key \"" + key + "\" in " + EH::getPath()); in getMappingData() 75 void setAsDouble(double value) { mayFailCall(&EH::setAsDouble, value); } in setAsDouble() 77 void getAsDouble(double &value) const { mayFailCall(&EH::getAsDouble, value); } in getAsDouble() 79 void setAsBoolean(bool value) { mayFailCall(&EH::setAsBoolean, value); } in setAsBoolean() 80 void getAsBoolean(bool &value) const { mayFailCall(&EH::getAsBoolean, value); } in getAsBoolean() 82 void setAsInteger(uint32_t value) { mayFailCall(&EH::setAsInteger, value); } in setAsInteger() 83 void getAsInteger(uint32_t &value) const { mayFailCall(&EH::getAsInteger, value); } in getAsInteger() [all …]
|
D | ParameterFramework.hpp | 62 using EH = ::ElementHandle; typedef in parameterFramework::ParameterFramework 163 EH createElementHandle(const std::string &path) in createElementHandle() 166 std::unique_ptr<EH> newedHandle{mayFailCall(&PF::createElementHandle, path)}; in createElementHandle() 167 EH handle{*newedHandle}; in createElementHandle()
|
/external/llvm-project/llvm/test/CodeGen/WebAssembly/ |
D | lower-em-ehsjlj-options.ll | 1 ; RUN: llc < %s -enable-emscripten-cxx-exceptions | FileCheck %s --check-prefix=EH 4 …cripten-cxx-exceptions -mtriple=wasm64-unknown-unknown 2>&1 | FileCheck %s --check-prefix=WASM64-EH 13 ; EH-LABEL: type exception,@function 18 ; EH: call invoke_vi 19 ; EH-NOT: call __invoke_void_i32 25 ; EH: call invoke_v 26 ; EH-NOT: call __invoke_void 66 ; EH-LABEL: type test_invoke_ignoreme,@function 70 ; EH: call invoke_ignoreme 91 ; EH: .functype invoke_vi (i32, i32) -> () [all …]
|
D | lower-em-ehsjlj-multi-return.ll | 1 …llc < %s -enable-emscripten-cxx-exceptions -mattr=+multivalue 2>&1 | FileCheck %s --check-prefix=EH 4 ; Currently multivalue returning functions are not supported in Emscripten EH / 56 ; EH: LLVM ERROR: Emscripten EH/SjLj does not support multivalue returns 57 ; SJLJ: LLVM ERROR: Emscripten EH/SjLj does not support multivalue returns
|
/external/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/ |
D | debug_frame_offset.test | 10 RUN: -eh-frame=0x00000018 | FileCheck %s --check-prefix=EH 11 EH: .eh_frame contents: 12 EH-NEXT: 00000018 00000024 0000001c FDE cie=00000000 pc=fffffffffffffd20...fffffffffffffd44 13 EH-NEXT: Format: DWARF32 14 EH-NEXT: DW_CFA_advance_loc: 1 15 EH-NOT: pc 16 EH-NOT: CIE
|
/external/llvm-project/llvm/include/llvm/ObjectYAML/ |
D | yaml2obj.h | 53 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH); 54 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH); 55 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH, 57 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH); 59 ErrorHandler EH); 60 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | yaml2obj.h | 49 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH); 50 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH); 51 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH); 53 ErrorHandler EH); 54 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
|
/external/llvm-project/lld/test/ELF/ |
D | mips-eh_frame-pic.s | 8 # RUN: llvm-dwarfdump --eh-frame %t-nopic.o | FileCheck %s --check-prefix=ABS64-EH-FRAME 34 # RUN: llvm-dwarfdump --eh-frame %t-pic32.so | FileCheck %s --check-prefix=PIC-EH-FRAME 43 # ABS64-EH-FRAME: Augmentation data: 0C 45 # ABS32-EH-FRAME: Augmentation data: 0B 47 # PIC-EH-FRAME: Augmentation data: 1B
|
D | gc-sections-eh.s | 7 # RUN: llvm-objdump --dwarf=frames %t2 | FileCheck --check-prefix=EH %s 16 # EH: FDE cie={{.*}} pc= 17 # EH-NOT: FDE
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/ |
D | TryBlock.java | 41 public interface TryBlock<EH extends ExceptionHandler> { 70 @Nonnull List<? extends EH> getExceptionHandlers(); in getExceptionHandlers()
|
/external/llvm-project/llvm/examples/ExceptionDemo/ |
D | CMakeLists.txt | 12 # Enable EH and RTTI for this demo 14 message(FATAL_ERROR "ExceptionDemo must require EH.")
|
/external/llvm/examples/ExceptionDemo/ |
D | CMakeLists.txt | 12 # Enable EH and RTTI for this demo 14 message(FATAL_ERROR "ExceptionDemo must require EH.")
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/ |
D | BaseTryBlock.java | 37 public abstract class BaseTryBlock<EH extends ExceptionHandler> implements TryBlock<EH> {
|
/external/clang/test/CodeGenObjCXX/ |
D | exceptions-legacy.mm | 33 // Real EH cleanup. 41 // ObjC EH "cleanup". 71 // Real EH cleanup.
|
/external/llvm-project/clang/test/CodeGenObjCXX/ |
D | exceptions-legacy.mm | 33 // Real EH cleanup. 41 // ObjC EH "cleanup". 77 // Real EH cleanup.
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | DWARFCallFrameInfo.h | 35 enum Type { EH, DWARF }; enumerator 163 return m_type == EH ? lldb::eRegisterKindEHFrame : lldb::eRegisterKindDWARF; in GetRegisterKind()
|
/external/llvm-project/lldb/unittests/Symbol/ |
D | TestDWARFCallFrameInfo.cpp | 227 auto section_sp = list->FindSectionByType(type == DWARFCallFrameInfo::EH in TestBasic() 256 TestBasic(DWARFCallFrameInfo::EH, "eh_frame"); in TEST_F()
|
/external/ppp/pppd/plugins/rp-pppoe/ |
D | common.c | 167 #define EH(x) (x)[0], (x)[1], (x)[2], (x)[3], (x)[4], (x)[5] macro 212 printer(arg, " dst %02x:%02x:%02x:%02x:%02x:%02x ", EH(packet->ethHdr.h_dest)); in pppoe_printpkt() 213 printer(arg, " src %02x:%02x:%02x:%02x:%02x:%02x\n", EH(packet->ethHdr.h_source)); in pppoe_printpkt()
|
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.h | 39 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections() 40 : EHFrameSID(EH), TextSID(T), ExceptTabSID(Ex) {} in EHFrameRelatedSections()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.h | 40 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections() 41 : EHFrameSID(EH), TextSID(T), ExceptTabSID(Ex) {} in EHFrameRelatedSections()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.h | 39 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections() 40 : EHFrameSID(EH), TextSID(T), ExceptTabSID(Ex) {} in EHFrameRelatedSections()
|
/external/llvm-project/llvm/test/Transforms/HotColdSplit/ |
D | eh-pads.ll | 14 ; Note: EH pads are not candidates for region entry points. 44 ; Note: EH pads are not candidates for region entry points.
|
/external/llvm/docs/ |
D | ExceptionHandling.rst | 530 is that Itanium EH is designed around the idea of "successive unwinding," while 531 Windows EH is not. 534 memory to hold the exception, and calling into the EH runtime. The runtime 545 The Windows EH model does not use these successive register context resets. 550 userspace DLLs provided with Windows. Each frame on the stack has an assigned EH 561 architecture. The funclet implements the EH action by accessing local variables 563 continuing the EH process. No variables live in to or out of the funclet can be 595 control dependencies. Filter expressions run during the first phase of EH, 597 graph. For now, the new EH instructions cannot represent SEH filter 605 The primary design goal of the new EH instructions is to support funclet [all …]
|
/external/perfetto/infra/ci/sandbox/ |
D | init.sh | 23 exec sudo -u perfetto -g perfetto -EH bash /ci/testrunner.sh
|