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

1234

/external/chromium_org/third_party/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.h24 virtual ~MockDelayManager() { Die(); }
25 MOCK_METHOD0(Die, void());
H A Dmock_expand.h29 virtual ~MockExpand() { Die(); }
30 MOCK_METHOD0(Die, void());
H A Dmock_packet_buffer.h24 virtual ~MockPacketBuffer() { Die(); }
25 MOCK_METHOD0(Die, void());
/external/chromium_org/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.cc22 void Die::ExitGroup() {
50 void Die::SandboxDie(const char* msg, const char* file, int line) {
59 void Die::RawSandboxDie(const char* msg) {
66 void Die::SandboxInfo(const char* msg, const char* file, int line) {
72 void Die::LogToStderr(const char* msg, const char* file, int line) {
85 bool Die::simple_exit_ = false;
86 bool Die::suppress_info_ = false;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/
H A Dgenerate_test_messages.py12 def Die(message): function
34 Die('Output file not specified')
36 Die('Exactly one input file must be specified')
/external/chromium_org/v8/src/libplatform/
H A Ddefault-platform-unittest.cc17 virtual ~MockTask() { Die(); }
19 MOCK_METHOD0(Die, void());
37 EXPECT_CALL(*task, Die());
H A Dworker-thread-unittest.cc20 virtual ~MockTask() { Die(); }
22 MOCK_METHOD0(Die, void());
36 EXPECT_CALL(*task, Die());
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp53 DIE &Die = TheU->getUnitDie(); local
62 Asm->EmitInt32(TheU->getHeaderSize() + Die.getSize());
66 DD->emitDIE(Die);
92 unsigned DwarfFile::computeSizeAndOffset(DIE &Die, unsigned Offset) { argument
94 assignAbbrevNumber(Die.getAbbrev());
97 const DIEAbbrev &Abbrev = Die.getAbbrev();
100 Die.setOffset(Offset);
103 Offset += getULEB128Size(Die.getAbbrevNumber());
105 const SmallVectorImpl<DIEValue *> &Values = Die.getValues();
114 const auto &Children = Die
[all...]
H A DDIEHash.h95 uint64_t computeDIEODRSignature(const DIE &Die);
98 uint64_t computeCUSignature(const DIE &Die);
101 uint64_t computeTypeSignature(const DIE &Die);
105 /// \brief Adds the parent context of \param Die to the hash.
106 void addParentContext(const DIE &Die);
108 /// \brief Adds the attributes of \param Die to the hash.
109 void addAttributes(const DIE &Die);
112 void computeHash(const DIE &Die);
129 /// \brief Collects the attributes of DIE \param Die into the \param Attrs
131 void collectAttributes(const DIE &Die, DIEAttr
[all...]
H A DDwarfUnit.h241 void addGlobalName(StringRef Name, DIE &Die, DIScope Context);
244 void addAccelNamespace(StringRef Name, const DIE &Die);
263 void addFlag(DIE &Die, dwarf::Attribute Attribute);
266 void addUInt(DIE &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
272 void addSInt(DIE &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
275 void addSInt(DIELoc &Die, Optional<dwarf::Form> Form, int64_t Integer);
278 void addString(DIE &Die, dwarf::Attribute Attribute, const StringRef Str);
281 void addLocalString(DIE &Die, dwarf::Attribute Attribute,
285 void addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr);
288 void addLabel(DIE &Die, dwar
[all...]
H A DDIEHash.cpp33 static StringRef getDIEStringAttr(const DIE &Die, uint16_t Attr) { argument
34 const SmallVectorImpl<DIEValue *> &Values = Die.getValues();
35 const DIEAbbrev &Abbrevs = Die.getAbbrev();
108 const DIE &Die = **I; local
114 addULEB128(Die.getTag());
117 StringRef Name = getDIEStringAttr(Die, dwarf::DW_AT_name);
125 void DIEHash::collectAttributes(const DIE &Die, DIEAttrs &Attrs) { argument
126 const SmallVectorImpl<DIEValue *> &Values = Die.getValues();
127 const DIEAbbrev &Abbrevs = Die.getAbbrev();
435 // Add all of the attributes for \param Die t
436 addAttributes(const DIE &Die) argument
442 hashNestedType(const DIE &Die, StringRef Name) argument
457 computeHash(const DIE &Die) argument
488 computeDIEODRSignature(const DIE &Die) argument
520 computeCUSignature(const DIE &Die) argument
541 computeTypeSignature(const DIE &Die) argument
[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";
209 O << " Offset: " << C->Die->getOffset() << "\n";
210 O << " Tag: " << dwarf::TagString(C->Die->getTag()) << "\n";
248 void AddName(StringRef Name, MCSymbol *StrSym, const DIE *Die,
H A DDwarfUnit.cpp165 void DwarfUnit::addFlag(DIE &Die, dwarf::Attribute Attribute) { argument
167 Die.addValue(Attribute, dwarf::DW_FORM_flag_present, DIEIntegerOne);
169 Die.addValue(Attribute, dwarf::DW_FORM_flag, DIEIntegerOne);
174 void DwarfUnit::addUInt(DIE &Die, dwarf::Attribute Attribute, argument
180 Die.addValue(Attribute, *Form, Value);
189 void DwarfUnit::addSInt(DIE &Die, dwarf::Attribute Attribute, argument
194 Die.addValue(Attribute, *Form, Value);
197 void DwarfUnit::addSInt(DIELoc &Die, Optional<dwarf::Form> Form, argument
199 addSInt(Die, (dwarf::Attribute)0, Form, Integer);
207 void DwarfUnit::addString(DIE &Die, dwar argument
221 addLocalString(DIE &Die, dwarf::Attribute Attribute, StringRef String) argument
237 addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr) argument
244 addLocationList(DIE &Die, dwarf::Attribute Attribute, unsigned Index) argument
254 addLabel(DIE &Die, dwarf::Attribute Attribute, dwarf::Form Form, const MCSymbol *Label) argument
260 addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label) argument
266 addSectionLabel(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Label) argument
276 addSectionOffset(DIE &Die, dwarf::Attribute Attribute, uint64_t Integer) argument
287 addLabelAddress(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Label) argument
301 addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Label) argument
331 addOpAddress(DIELoc &Die, const MCSymbol *Sym) argument
344 addSectionDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi, const MCSymbol *Lo) argument
352 addLabelDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi, const MCSymbol *Lo) argument
360 addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIE &Entry) argument
364 addDIETypeSignature(DIE &Die, const DwarfTypeUnit &Type) argument
375 addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIEEntry *Entry) argument
395 DIE &Die = *Parent.getChildren().back(); local
403 addBlock(DIE &Die, dwarf::Attribute Attribute, DIELoc *Loc) argument
409 addBlock(DIE &Die, dwarf::Attribute Attribute, DIEBlock *Block) argument
418 addSourceLine(DIE &Die, unsigned Line, StringRef File, StringRef Directory) argument
431 addSourceLine(DIE &Die, DIVariable V) argument
440 addSourceLine(DIE &Die, DIGlobalVariable G) argument
448 addSourceLine(DIE &Die, DISubprogram SP) argument
456 addSourceLine(DIE &Die, DIType Ty) argument
464 addSourceLine(DIE &Die, DIObjCProperty Ty) argument
474 addSourceLine(DIE &Die, DINameSpace NS) argument
482 addVariableAddress(const DbgVariable &DV, DIE &Die, MachineLocation Location) argument
[all...]
/external/chromium_org/third_party/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.cc41 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
84 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
85 EXPECT_CALL(expand, Die()); // Called when |expand| goes out of scope.
114 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
115 EXPECT_CALL(expand, Die()); // Called when |expand| goes out of scope.
H A Dtimestamp_scaler_unittest.cc41 EXPECT_CALL(db, Die()); // Called when database object is deleted.
66 EXPECT_CALL(db, Die()); // Called when database object is deleted.
90 EXPECT_CALL(db, Die()); // Called when database object is deleted.
118 EXPECT_CALL(db, Die()); // Called when database object is deleted.
156 EXPECT_CALL(db, Die()); // Called when database object is deleted.
184 EXPECT_CALL(db, Die()); // Called when database object is deleted.
216 EXPECT_CALL(db, Die()); // Called when database object is deleted.
252 EXPECT_CALL(db, Die()); // Called when database object is deleted.
283 EXPECT_CALL(db, Die()); // Called when database object is deleted.
311 EXPECT_CALL(db, Die()); // Calle
[all...]
/external/chromium_org/components/dom_distiller/core/
H A Dfake_distiller.cc22 EXPECT_CALL(*this, Die()).Times(testing::AnyNumber());
31 EXPECT_CALL(*this, Die()).Times(testing::AnyNumber());
36 Die();
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cc61 Die();
87 Die();
98 Die();
109 Die();
131 Die();
153 Die();
183 Die();
199 Die();
204 Die();
211 Die();
[all...]
/external/chromium_org/v8/tools/push-to-trunk/
H A Dauto_push.py57 self.Die("Push to trunk disabled by auto-roll settings file: %s"
69 self.Die("Push to trunk disabled by tree state: %s"
94 self.Die("Could not retrieve bleeding edge revision for trunk push %s"
102 self.Die("Last push too recently: %s" % last_push_be)

Completed in 281 milliseconds

1234