Home
last modified time | relevance | path

Searched refs:EH (Results 1 – 25 of 245) sorted by relevance

12345678910

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
DTryListBuilder.java46 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/
DElementHandle.hpp51 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 setAsInteger(uint32_t value) { mayFailCall(&EH::setAsInteger, value); } in setAsInteger()
80 void getAsInteger(uint32_t &value) const { mayFailCall(&EH::getAsInteger, value); } in getAsInteger()
83 mayFailCall(&EH::setAsIntegerArray, value); in setAsIntegerArray()
87 mayFailCall(&EH::getAsIntegerArray, value); in getAsIntegerArray()
[all …]
DParameterFramework.hpp62 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/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
DTryBlock.java41 public interface TryBlock<EH extends ExceptionHandler> {
70 @Nonnull List<? extends EH> getExceptionHandlers(); in getExceptionHandlers()
/external/llvm/examples/ExceptionDemo/
DCMakeLists.txt12 # 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/
DBaseTryBlock.java37 public abstract class BaseTryBlock<EH extends ExceptionHandler> implements TryBlock<EH> {
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJITDebugRegisterer.cpp92 ELFSection &EH = EW.getSection(".eh_frame", ELF::SHT_PROGBITS, in MakeELF() local
96 EH.Addr = (uint64_t)I.EhStart; in MakeELF()
99 EH.getData().assign(I.EhStart, I.EhEnd); in MakeELF()
/external/clang/test/CodeGenObjCXX/
Dexceptions-legacy.mm33 // Real EH cleanup.
41 // ObjC EH "cleanup".
71 // Real EH cleanup.
/external/ppp/pppd/plugins/rp-pppoe/
Dcommon.c167 #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/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.h40 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections()
41 : EHFrameSID(EH), TextSID(T), ExceptTabSID(Ex) {} in EHFrameRelatedSections()
/external/llvm/docs/
DExceptionHandling.rst530 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/llvm/lib/Transforms/Hello/
DCMakeLists.txt1 # If we don't need RTTI or EH, there's no reason to export anything
/external/llvm/tools/bugpoint-passes/
DCMakeLists.txt5 # If we don't need RTTI or EH, there's no reason to export anything
/external/icu/icu4c/source/data/region/
Des_CL.txt7 EH{"Sahara Occidental"}
/external/clang/examples/PrintFunctionNames/
DCMakeLists.txt1 # If we don't need RTTI or EH, there's no reason to export anything
/external/llvm/include/llvm/MC/
DMCAsmInfo.h541 void setExceptionsType(ExceptionHandling EH) { in setExceptionsType() argument
542 ExceptionsType = EH; in setExceptionsType()
/external/llvm/test/Verifier/
Dinvalid-eh.ll125 ;T9: ; CHECK9: EH pad cannot handle exceptions raised within it
149 ;T10: ; CHECK10: EH pad cannot handle exceptions raised within it
165 ;T11: ; CHECK11: A single unwind edge may only enter one EH pad
192 ;T13: ; CHECK13: EH pad cannot handle exceptions raised within it
310 ;T18: ; CHECK18: EH pads can't handle each other's exceptions
339 ;T19: ; CHECK19: EH pads can't handle each other's exceptions
412 ;T24: ; CHECK24: A single unwind edge may only enter one EH pad
432 ;T25: ; CHECK25: EH pad jumps through a cycle of pads
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/
Dfr-FR_kdt_phr.pkb1 …=E*�%�;=B0A"%&'*,-89:<?@GH#$+DE1()C3F24567!��37:G5"%&'(+,-248@F#$69/>?EH������ ��0�3�2�…
/external/llvm/test/CodeGen/X86/
Dseh-stack-realign.ll19 ; The EH code allocation is overaligned, triggering realignment.
59 ; EH state 0
Dseh-catch-all-win32.ll66 ; EH state 0
76 ; EH state -1
Dcode_placement_eh.ll4 ; it involves EH edges.
/external/llvm/lib/MC/
DMCObjectStreamer.cpp117 void MCObjectStreamer::EmitCFISections(bool EH, bool Debug) { in EmitCFISections() argument
118 MCStreamer::EmitCFISections(EH, Debug); in EmitCFISections()
119 EmitEHFrame = EH; in EmitCFISections()
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dcode_placement_eh.ll4 ; it involves EH edges.
/external/clang/test/CodeGenObjC/
Dblocks-2.m16 // <rdar://problem/8224178>: cleanup __block variables on EH path
/external/libcxx/src/support/runtime/
Dexception_pointer_glibcxx.ipp11 // libsupc++ does not implement the dependent EH ABI and the functionality

12345678910