Searched refs:Die (Results 1 - 25 of 100) sorted by relevance

1234

/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dabort_on_error.cc14 void Die();
18 __sanitizer::Die();
/external/webrtc/webrtc/common_audio/vad/mock/
H A Dmock_vad.h22 virtual ~MockVad() { Die(); }
23 MOCK_METHOD0(Die, void());
/external/webrtc/webrtc/modules/audio_coding/neteq/mock/
H A Dmock_buffer_level_filter.h22 virtual ~MockBufferLevelFilter() { Die(); }
23 MOCK_METHOD0(Die,
H A Dmock_delay_peak_detector.h22 virtual ~MockDelayPeakDetector() { Die(); }
23 MOCK_METHOD0(Die, void());
H A Dmock_dtmf_tone_generator.h22 virtual ~MockDtmfToneGenerator() { Die(); }
23 MOCK_METHOD0(Die, void());
H A Dmock_dtmf_buffer.h23 virtual ~MockDtmfBuffer() { Die(); }
24 MOCK_METHOD0(Die, void());
H A Dmock_audio_decoder.h23 virtual ~MockAudioDecoder() { Die(); }
24 MOCK_METHOD0(Die, void());
H A Dmock_delay_manager.h25 virtual ~MockDelayManager() { Die(); }
26 MOCK_METHOD0(Die, void());
H A Dmock_expand.h34 virtual ~MockExpand() { Die(); }
35 MOCK_METHOD0(Die, void());
H A Dmock_packet_buffer.h24 virtual ~MockPacketBuffer() { Die(); }
25 MOCK_METHOD0(Die, void());
/external/libchrome/sandbox/linux/seccomp-bpf/
H A Ddie.h15 #define SANDBOX_DIE(m) sandbox::Die::SandboxDie(m, __FILE__, __LINE__)
19 #define RAW_SANDBOX_DIE(m) sandbox::Die::RawSandboxDie(m)
22 #define SANDBOX_INFO(m) sandbox::Die::SandboxInfo(m, __FILE__, __LINE__)
24 class SANDBOX_EXPORT Die { class in namespace:sandbox
63 DISALLOW_IMPLICIT_CONSTRUCTORS(Die);
H A Ddie.cc24 void Die::ExitGroup() {
55 void Die::SandboxDie(const char* msg, const char* file, int line) {
64 void Die::RawSandboxDie(const char* msg) {
71 void Die::SandboxInfo(const char* msg, const char* file, int line) {
77 void Die::LogToStderr(const char* msg, const char* file, int line) {
90 bool Die::simple_exit_ = false;
91 bool Die::suppress_info_ = false;
/external/v8/test/unittests/libplatform/
H A Dworker-thread-unittest.cc20 virtual ~MockTask() { Die(); }
22 MOCK_METHOD0(Die, void());
36 EXPECT_CALL(*task, Die());
H A Ddefault-platform-unittest.cc17 virtual ~MockTask() { Die(); }
19 MOCK_METHOD0(Die, void());
48 EXPECT_CALL(*task, Die());
72 EXPECT_CALL(*task1, Die());
79 EXPECT_CALL(*task2, Die());
101 EXPECT_CALL(*task1, Die());
107 EXPECT_CALL(*task2, Die());
110 EXPECT_CALL(*task3, Die());
125 EXPECT_CALL(*task, Die());
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dcomfort_noise_unittest.cc26 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
H A Dnormal_unittest.cc43 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
88 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
89 EXPECT_CALL(expand, Die()); // Called when |expand| goes out of scope.
120 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
121 EXPECT_CALL(expand, Die()); // Called when |expand| goes out of scope.
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp30 DIEAbbrev &DwarfFile::assignAbbrevNumber(DIE &Die) { argument
32 DIEAbbrev Abbrev = Die.generateAbbrev();
38 Die.setAbbrevNumber(Existing->getNumber());
46 Die.setAbbrevNumber(Abbreviations.size());
61 DIE &Die = TheU->getUnitDie(); local
67 Asm->emitDwarfDIE(Die);
93 unsigned DwarfFile::computeSizeAndOffset(DIE &Die, unsigned Offset) { argument
95 const DIEAbbrev &Abbrev = assignAbbrevNumber(Die);
98 Die.setOffset(Offset);
101 Offset += getULEB128Size(Die
[all...]
H A DDwarfUnit.h151 virtual void addGlobalName(StringRef Name, DIE &Die, const DIScope *Context) { argument
155 virtual void addGlobalType(const DIType *Ty, const DIE &Die, argument
176 void addFlag(DIE &Die, dwarf::Attribute Attribute);
179 void addUInt(DIEValueList &Die, dwarf::Attribute Attribute,
185 void addSInt(DIEValueList &Die, dwarf::Attribute Attribute,
188 void addSInt(DIELoc &Die, Optional<dwarf::Form> Form, int64_t Integer);
196 void addString(DIE &Die, dwarf::Attribute Attribute, StringRef Str);
199 DIEValueList::value_iterator addLabel(DIEValueList &Die,
204 void addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label);
207 void addSectionOffset(DIE &Die, dwar
[all...]
H A DDIEHash.h88 uint64_t computeCUSignature(const DIE &Die);
91 uint64_t computeTypeSignature(const DIE &Die);
95 /// \brief Adds the parent context of \param Die to the hash.
96 void addParentContext(const DIE &Die);
98 /// \brief Adds the attributes of \param Die to the hash.
99 void addAttributes(const DIE &Die);
102 void computeHash(const DIE &Die);
119 /// \brief Collects the attributes of DIE \param Die into the \param Attrs
121 void collectAttributes(const DIE &Die, DIEAttrs &Attrs);
150 void hashNestedType(const DIE &Die, StringRe
[all...]
H A DDIEHash.cpp33 static StringRef getDIEStringAttr(const DIE &Die, uint16_t Attr) { argument
36 for (const auto &V : Die.values())
101 const DIE &Die = **I; local
107 addULEB128(Die.getTag());
110 StringRef Name = getDIEStringAttr(Die, dwarf::DW_AT_name);
118 void DIEHash::collectAttributes(const DIE &Die, DIEAttrs &Attrs) { argument
124 for (const auto &V : Die.values()) {
423 // Add all of the attributes for \param Die to the hash.
424 void DIEHash::addAttributes(const DIE &Die) { argument
426 collectAttributes(Die, Attr
430 hashNestedType(const DIE &Die, StringRef Name) argument
445 computeHash(const DIE &Die) argument
476 computeCUSignature(const DIE &Die) argument
497 computeTypeSignature(const DIE &Die) argument
[all...]
H A DDwarfFile.h72 unsigned computeSizeAndOffset(DIE &Die, unsigned Offset);
79 /// Compute the abbreviation for \c Die, look up its unique number, and
81 DIEAbbrev &assignAbbrevNumber(DIE &Die);
110 void insertDIE(const MDNode *TypeMD, DIE *Die) { argument
111 DITypeNodeToDieMap.insert(std::make_pair(TypeMD, Die));
H A DDwarfCompileUnit.h91 void addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
96 void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute,
100 DIE::value_iterator addSectionDelta(DIE &Die, dwarf::Attribute Attribute,
118 DIE::value_iterator addSectionLabel(DIE &Die, dwarf::Attribute Attribute,
193 void addGlobalName(StringRef Name, DIE &Die, const DIScope *Context) override;
196 void addGlobalType(const DIType *Ty, const DIE &Die,
204 void addVariableAddress(const DbgVariable &DV, DIE &Die,
207 void addAddress(DIE &Die, dwarf::Attribute Attribute,
214 void addComplexAddress(const DbgVariable &DV, DIE &Die,
219 void addLocationList(DIE &Die, dwar
[all...]
H A DDwarfAccelTable.h168 const DIE *Die; // Offsets member in struct:llvm::DwarfAccelTable::HashDataContents
171 HashDataContents(const DIE *D, char Flags) : Die(D), Flags(Flags) {}
174 O << " Offset: " << Die->getOffset() << "\n";
175 O << " Tag: " << dwarf::TagString(Die->getTag()) << "\n";
208 O << " Offset: " << C->Die->getOffset() << "\n";
209 O << " Tag: " << dwarf::TagString(C->Die->getTag()) << "\n";
247 void AddName(DwarfStringPoolEntryRef Name, const DIE *Die, char Flags = 0);
H A DDwarfUnit.cpp186 void DwarfUnit::addFlag(DIE &Die, dwarf::Attribute Attribute) { argument
188 Die.addValue(DIEValueAllocator, Attribute, dwarf::DW_FORM_flag_present,
191 Die.addValue(DIEValueAllocator, Attribute, dwarf::DW_FORM_flag,
195 void DwarfUnit::addUInt(DIEValueList &Die, dwarf::Attribute Attribute, argument
199 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer));
207 void DwarfUnit::addSInt(DIEValueList &Die, dwarf::Attribute Attribute, argument
211 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer));
214 void DwarfUnit::addSInt(DIELoc &Die, Optional<dwarf::Form> Form, argument
216 addSInt(Die, (dwarf::Attribute)0, Form, Integer);
219 void DwarfUnit::addString(DIE &Die, dwar argument
226 addLabel(DIEValueList &Die, dwarf::Attribute Attribute, dwarf::Form Form, const MCSymbol *Label) argument
233 addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label) argument
237 addSectionOffset(DIE &Die, dwarf::Attribute Attribute, uint64_t Integer) argument
250 addOpAddress(DIELoc &Die, const MCSymbol *Sym) argument
261 addLabelDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi, const MCSymbol *Lo) argument
267 addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIE &Entry) argument
271 addDIETypeSignature(DIE &Die, const DwarfTypeUnit &Type) argument
282 addDIETypeSignature(DIE &Die, dwarf::Attribute Attribute, StringRef Identifier) argument
289 addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIEEntry Entry) argument
304 DIE &Die = Parent.addChild(DIE::get(DIEValueAllocator, (dwarf::Tag)Tag)); local
310 addBlock(DIE &Die, dwarf::Attribute Attribute, DIELoc *Loc) argument
317 addBlock(DIE &Die, dwarf::Attribute Attribute, DIEBlock *Block) argument
324 addSourceLine(DIE &Die, unsigned Line, StringRef File, StringRef Directory) argument
335 addSourceLine(DIE &Die, const DILocalVariable *V) argument
342 addSourceLine(DIE &Die, const DIGlobalVariable *G) argument
348 addSourceLine(DIE &Die, const DISubprogram *SP) argument
354 addSourceLine(DIE &Die, const DIType *Ty) argument
360 addSourceLine(DIE &Die, const DIObjCProperty *Ty) argument
366 addSourceLine(DIE &Die, const DINamespace *NS) argument
437 addBlockByrefAddress(const DbgVariable &DV, DIE &Die, dwarf::Attribute Attribute, const MachineLocation &Location) argument
590 addConstantFPValue(DIE &Die, const MachineOperand &MO) argument
612 addConstantFPValue(DIE &Die, const ConstantFP *CFP) argument
617 addConstantValue(DIE &Die, const ConstantInt *CI, const DIType *Ty) argument
622 addConstantValue(DIE &Die, const MachineOperand &MO, const DIType *Ty) argument
629 addConstantValue(DIE &Die, bool Unsigned, uint64_t Val) argument
636 addConstantValue(DIE &Die, const APInt &Val, const DIType *Ty) argument
640 addConstantValue(DIE &Die, const APInt &Val, bool Unsigned) argument
669 addLinkageName(DIE &Die, StringRef LinkageName) argument
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/mock/
H A Dmock_audio_encoder.h22 ~MockAudioEncoder() override { Die(); }
23 MOCK_METHOD0(Die, void());

Completed in 1733 milliseconds

1234