HomeSort by relevance Sort by last modified time
    Searched refs:Die (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/chromium_org/components/dom_distiller/core/
fake_distiller.cc 14 EXPECT_CALL(*this, Die()).Times(testing::AnyNumber());
17 FakeDistiller::~FakeDistiller() { Die(); }
fake_distiller.h 33 MOCK_METHOD0(Die, void());
  /external/chromium_org/sandbox/linux/seccomp-bpf/
die.h 14 #define SANDBOX_DIE(m) sandbox::Die::SandboxDie(m, __FILE__, __LINE__)
18 #define RAW_SANDBOX_DIE(m) sandbox::Die::RawSandboxDie(m)
21 #define SANDBOX_INFO(m) sandbox::Die::SandboxInfo(m, __FILE__, __LINE__)
23 class Die {
62 DISALLOW_IMPLICIT_CONSTRUCTORS(Die);
die.cc 19 void Die::ExitGroup() {
47 void Die::SandboxDie(const char* msg, const char* file, int line) {
56 void Die::RawSandboxDie(const char* msg) {
63 void Die::SandboxInfo(const char* msg, const char* file, int line) {
69 void Die::LogToStderr(const char* msg, const char* file, int line) {
82 bool Die::simple_exit_ = false;
83 bool Die::suppress_info_ = false;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 17 #include "DIE.h"
46 /// Die - Compile unit debug information entry.
48 const OwningPtr<DIE> CUDie;
58 DIE *IndexTyDie;
62 DenseMap<const MDNode *, DIE *> MDNodeToDieMap;
70 StringMap<DIE*> GlobalNames;
74 StringMap<DIE*> GlobalTypes;
78 StringMap<std::vector<DIE*> > AccelNames;
79 StringMap<std::vector<DIE*> > AccelObjC;
80 StringMap<std::vector<DIE*> > AccelNamespace
    [all...]
DwarfCompileUnit.cpp 36 CompileUnit::CompileUnit(unsigned UID, unsigned L, DIE *D, const MDNode *N,
52 DIEEntry *CompileUnit::createDIEEntry(DIE *Entry) {
102 void CompileUnit::addFlag(DIE *Die, unsigned Attribute) {
104 Die->addValue(Attribute, dwarf::DW_FORM_flag_present,
107 addUInt(Die, Attribute, dwarf::DW_FORM_flag, 1);
112 void CompileUnit::addUInt(DIE *Die, unsigned Attribute,
117 Die->addValue(Attribute, Form, Value);
122 void CompileUnit::addSInt(DIE *Die, unsigned Attribute
    [all...]
DwarfAccelTable.h 17 #include "DIE.h"
65 class DIE;
129 eAtomTypeDIEOffset = 1u, // DIE offset, check form for encoding
130 eAtomTypeCUOffset = 2u, // DIE offset of the compiler unit header that
196 DIE *Die; // Offsets
199 HashDataContents(DIE *D, char Flags) :
200 Die(D),
204 O << " Offset: " << Die->getOffset() << "\n";
205 O << " Tag: " << dwarf::TagString(Die->getTag()) << "\n"
    [all...]
DwarfDebug.cpp 16 #include "DIE.h"
332 DIE* Die) {
335 TheCU->addAccelName(SP.getName(), Die);
340 TheCU->addAccelName(SP.getLinkageName(), Die);
347 TheCU->addAccelObjC(Class, Die);
349 TheCU->addAccelObjC(Category, Die);
351 TheCU->addAccelName(getObjCMethodName(SP.getName()), Die);
355 // Find DIE for the given subprogram and attach appropriate DW_AT_low_pc
358 DIE *DwarfDebug::updateSubprogramScopeDIE(CompileUnit *SPCU
    [all...]
DwarfDebug.h 17 #include "DIE.h"
41 class DIE;
122 /// labels are referenced is used to find debug_loc offset for a given DIE.
148 DIE *TheDIE; // Variable DIE.
161 void setDIE(DIE *D) { TheDIE = D; }
162 DIE *getDIE() const { return TheDIE; }
252 /// \brief Compute the size and offset of a DIE given an incoming Offset.
253 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset)
    [all...]
DwarfAccelTable.cpp 15 #include "DIE.h"
47 void DwarfAccelTable::AddName(StringRef Name, DIE* die, char Flags) {
49 // If the string is in the list already then add this die to the list
52 DIEs.push_back(new (Allocator) HashDataContents(die, Flags));
76 return A->Die->getOffset() < B->Die->getOffset();
123 Asm->OutStreamer.AddComment("HeaderData Die Offset Base");
199 // Emit the DIE offset
200 Asm->EmitInt32((*DI)->Die->getOffset())
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 61 Die();
87 Die();
98 Die();
109 Die();
131 Die();
153 Die();
183 Die();
199 Die();
204 Die();
211 Die();
    [all...]
ubsan_handlers_cxx.cc 64 Die();
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.cc 45 void NORETURN Die() {
64 Die();
77 Die();
93 Die();
184 Die();
sanitizer_posix_libcdep.cc 63 Die();
  /external/chromium_org/v8/tools/push-to-trunk/
push_to_trunk.py 71 self.Die("Creating branch %s failed." % self.Config(BRANCHNAME))
171 self.Die("Empty ChangeLog entry.")
219 self.Die("'git commit -a' failed.")
233 self.Die("'git cl dcommit' failed, please try again.")
242 self.Die("'git svn fetch' failed.")
287 self.Die("Commit message editing failed.")
297 self.Die("Checking out a new branch '%s' failed." %
336 self.Die("'git commit' failed.")
347 self.Die("Execution canceled.")
356 self.Die("'git svn dcommit' failed."
    [all...]
common_includes.py 303 def Die(self, msg=""):
312 self.Die(msg)
326 self.Die("Deleting branch '%s' failed." % name)
330 self.Die(msg)
338 value = value or self.Die("Variable '%s' could not be restored." % var)
348 self.Die("This is not a git checkout, this script won't work for you.")
353 self.Die("Please set your EDITOR environment variable, you'll need it.")
358 self.Die("Workspace is not clean. Please commit or undo your changes.")
372 self.Die("'git svn fetch' failed.")
433 self.Die("Applying the patch failed."
    [all...]
auto_roll.py 56 self.Die("Could not extract current svn revision from log.")
  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 47 Die();
54 Die();
60 Die();
94 Die();
tsan_symbolize_addr2line_linux.cc 54 Die();
59 Die();
78 Die();
161 Die();
168 Die();
tsan_flags.cc 106 Die();
112 Die();
tsan_platform_mac.cc 64 Die();
  /external/chromium_org/chrome_frame/test/
infobar_unittests.cc 90 virtual ~MockWindowSubclass() { Die(); }
91 MOCK_METHOD0(Die, void());
97 virtual ~MockDelegate() { Die(); }
98 MOCK_METHOD0(Die, void());
139 EXPECT_CALL(*delegate, Die());
140 EXPECT_CALL(*swwd, Die());
167 EXPECT_CALL(*delegate, Die());
169 EXPECT_CALL(*swwd, Die());
253 EXPECT_CALL(*delegate, Die());
290 EXPECT_CALL(*delegate, Die());
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/preference/
preference_api_prefs_unittest.cc 399 Die();
401 MOCK_METHOD0(Die, void());
413 EXPECT_CALL(*v1, Die()).Times(0);
414 EXPECT_CALL(*v1i, Die()).Times(0);
420 EXPECT_CALL(*v1, Die()).Times(1);
421 EXPECT_CALL(*v1i, Die()).Times(1);
422 EXPECT_CALL(*v2, Die()).Times(1);
423 EXPECT_CALL(*v2i, Die()).Times(1);
  /external/clang/test/Parser/
cxx-decl.cpp 165 struct DIE {
169 void test (DIE die, DIE *Die, DIE INT, DIE *FLOAT) {
170 DIE.foo(); // expected-error {{cannot use dot operator on a type}}
171 die.foo();
173 DIE->foo(); // expected-error {{cannot use arrow operator on a type}
    [all...]
  /external/compiler-rt/lib/asan/
asan_posix.cc 55 if (13 != internal_write(2, "ASAN:SIGSEGV\n", 13)) Die();

Completed in 771 milliseconds

1 2 3