/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.h | 241 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, dwarf::Attribute Attribute, dwarf::Form Form, [all …]
|
D | DwarfFile.cpp | 53 DIE &Die = TheU->getUnitDie(); in emitUnits() local 62 Asm->EmitInt32(TheU->getHeaderSize() + Die.getSize()); in emitUnits() 66 DD->emitDIE(Die); in emitUnits() 92 unsigned DwarfFile::computeSizeAndOffset(DIE &Die, unsigned Offset) { in computeSizeAndOffset() argument 94 assignAbbrevNumber(Die.getAbbrev()); in computeSizeAndOffset() 97 const DIEAbbrev &Abbrev = Die.getAbbrev(); in computeSizeAndOffset() 100 Die.setOffset(Offset); in computeSizeAndOffset() 103 Offset += getULEB128Size(Die.getAbbrevNumber()); in computeSizeAndOffset() 105 const SmallVectorImpl<DIEValue *> &Values = Die.getValues(); in computeSizeAndOffset() 114 const auto &Children = Die.getChildren(); in computeSizeAndOffset() [all …]
|
D | DIEHash.cpp | 33 static StringRef getDIEStringAttr(const DIE &Die, uint16_t Attr) { in getDIEStringAttr() argument 34 const SmallVectorImpl<DIEValue *> &Values = Die.getValues(); in getDIEStringAttr() 35 const DIEAbbrev &Abbrevs = Die.getAbbrev(); in getDIEStringAttr() 108 const DIE &Die = **I; in addParentContext() local 114 addULEB128(Die.getTag()); in addParentContext() 117 StringRef Name = getDIEStringAttr(Die, dwarf::DW_AT_name); in addParentContext() 125 void DIEHash::collectAttributes(const DIE &Die, DIEAttrs &Attrs) { in collectAttributes() argument 126 const SmallVectorImpl<DIEValue *> &Values = Die.getValues(); in collectAttributes() 127 const DIEAbbrev &Abbrevs = Die.getAbbrev(); in collectAttributes() 436 void DIEHash::addAttributes(const DIE &Die) { in addAttributes() argument [all …]
|
D | DwarfUnit.cpp | 165 void DwarfUnit::addFlag(DIE &Die, dwarf::Attribute Attribute) { in addFlag() argument 167 Die.addValue(Attribute, dwarf::DW_FORM_flag_present, DIEIntegerOne); in addFlag() 169 Die.addValue(Attribute, dwarf::DW_FORM_flag, DIEIntegerOne); in addFlag() 174 void DwarfUnit::addUInt(DIE &Die, dwarf::Attribute Attribute, in addUInt() argument 180 Die.addValue(Attribute, *Form, Value); in addUInt() 189 void DwarfUnit::addSInt(DIE &Die, dwarf::Attribute Attribute, in addSInt() argument 194 Die.addValue(Attribute, *Form, Value); in addSInt() 197 void DwarfUnit::addSInt(DIELoc &Die, Optional<dwarf::Form> Form, in addSInt() argument 199 addSInt(Die, (dwarf::Attribute)0, Form, Integer); in addSInt() 207 void DwarfUnit::addString(DIE &Die, dwarf::Attribute Attribute, in addString() argument [all …]
|
D | DIEHash.h | 95 uint64_t computeDIEODRSignature(const DIE &Die); 98 uint64_t computeCUSignature(const DIE &Die); 101 uint64_t computeTypeSignature(const DIE &Die); 106 void addParentContext(const DIE &Die); 109 void addAttributes(const DIE &Die); 112 void computeHash(const DIE &Die); 131 void collectAttributes(const DIE &Die, DIEAttrs &Attrs); 160 void hashNestedType(const DIE &Die, StringRef Name);
|
D | DwarfAccelTable.h | 168 const DIE *Die; // Offsets member 171 HashDataContents(const DIE *D, char Flags) : Die(D), Flags(Flags) {} in HashDataContents() 174 O << " Offset: " << Die->getOffset() << "\n"; in print() 175 O << " Tag: " << dwarf::TagString(Die->getTag()) << "\n"; in print() 209 O << " Offset: " << C->Die->getOffset() << "\n"; in print() 210 O << " Tag: " << dwarf::TagString(C->Die->getTag()) << "\n"; in print() 248 void AddName(StringRef Name, MCSymbol *StrSym, const DIE *Die,
|
D | DwarfDebug.h | 397 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset); 478 void initSkeletonUnit(const DwarfUnit &U, DIE &Die, 570 void insertDIE(const MDNode *TypeMD, DIE *Die) { in insertDIE() argument 571 MDTypeNodeToDieMap.insert(std::make_pair(TypeMD, Die)); in insertDIE() 599 DIE &Die, DICompositeType CTy); 611 void emitDIE(DIE &Die); 666 void addSubprogramNames(DISubprogram SP, DIE &Die); 670 void addAccelName(StringRef Name, const DIE &Die); 672 void addAccelObjC(StringRef Name, const DIE &Die); 674 void addAccelNamespace(StringRef Name, const DIE &Die); [all …]
|
D | DwarfDebug.cpp | 275 void DwarfDebug::addSubprogramNames(DISubprogram SP, DIE &Die) { in addSubprogramNames() argument 278 addAccelName(SP.getName(), Die); in addSubprogramNames() 283 addAccelName(SP.getLinkageName(), Die); in addSubprogramNames() 290 addAccelObjC(Class, Die); in addSubprogramNames() 292 addAccelObjC(Category, Die); in addSubprogramNames() 294 addAccelName(getObjCMethodName(SP.getName()), Die); in addSubprogramNames() 386 void DwarfDebug::attachRangesOrLowHighPC(DwarfCompileUnit &TheCU, DIE &Die, in attachRangesOrLowHighPC() argument 390 attachLowHighPC(TheCU, Die, getLabelBeforeInsn(Ranges.front().first), in attachRangesOrLowHighPC() 393 addScopeRangeList(TheCU, Die, Ranges); in attachRangesOrLowHighPC() 630 DIE &Die = NewCU.getUnitDie(); in constructDwarfCompileUnit() local [all …]
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
D | die.cc | 22 void Die::ExitGroup() { in ExitGroup() 50 void Die::SandboxDie(const char* msg, const char* file, int line) { in SandboxDie() 59 void Die::RawSandboxDie(const char* msg) { in RawSandboxDie() 66 void Die::SandboxInfo(const char* msg, const char* file, int line) { in SandboxInfo() 72 void Die::LogToStderr(const char* msg, const char* file, int line) { in LogToStderr() 85 bool Die::simple_exit_ = false; 86 bool Die::suppress_info_ = false;
|
D | die.h | 15 #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 { 63 DISALLOW_IMPLICIT_CONSTRUCTORS(Die);
|
/external/compiler-rt/lib/ubsan/ |
D | ubsan_handlers.cc | 61 Die(); in __ubsan_handle_type_mismatch_abort() 87 Die(); in __ubsan_handle_add_overflow_abort() 98 Die(); in __ubsan_handle_sub_overflow_abort() 109 Die(); in __ubsan_handle_mul_overflow_abort() 131 Die(); in __ubsan_handle_negate_overflow_abort() 153 Die(); in __ubsan_handle_divrem_overflow_abort() 183 Die(); in __ubsan_handle_shift_out_of_bounds_abort() 199 Die(); in __ubsan_handle_out_of_bounds_abort() 204 Die(); in __ubsan_handle_builtin_unreachable() 211 Die(); in __ubsan_handle_missing_return() [all …]
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
D | timestamp_scaler_unittest.cc | 41 EXPECT_CALL(db, Die()); // Called when database object is deleted. in TEST() 66 EXPECT_CALL(db, Die()); // Called when database object is deleted. in TEST() 90 EXPECT_CALL(db, Die()); // Called when database object is deleted. in TEST() 118 EXPECT_CALL(db, Die()); // Called when database object is deleted. in TEST() 156 EXPECT_CALL(db, Die()); // Called when database object is deleted. in TEST() 184 EXPECT_CALL(db, Die()); // Called when database object is deleted. in TEST() 216 EXPECT_CALL(db, Die()); // Called when database object is deleted. in TEST() 252 EXPECT_CALL(db, Die()); // Called when database object is deleted. in TEST() 283 EXPECT_CALL(db, Die()); // Called when database object is deleted. in TEST() 311 EXPECT_CALL(db, Die()); // Called when database object is deleted. in TEST() [all …]
|
D | normal_unittest.cc | 41 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope. in TEST() 84 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope. in TEST() 85 EXPECT_CALL(expand, Die()); // Called when |expand| goes out of scope. in TEST() 114 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope. in TEST() 115 EXPECT_CALL(expand, Die()); // Called when |expand| goes out of scope. in TEST()
|
D | neteq_impl_unittest.cc | 173 EXPECT_CALL(*mock_buffer_level_filter_, Die()).Times(1); in ~NetEqImplTest() 176 EXPECT_CALL(*mock_decoder_database_, Die()).Times(1); in ~NetEqImplTest() 179 EXPECT_CALL(*mock_delay_manager_, Die()).Times(1); in ~NetEqImplTest() 182 EXPECT_CALL(*mock_delay_peak_detector_, Die()).Times(1); in ~NetEqImplTest() 185 EXPECT_CALL(*mock_dtmf_buffer_, Die()).Times(1); in ~NetEqImplTest() 188 EXPECT_CALL(*mock_dtmf_tone_generator_, Die()).Times(1); in ~NetEqImplTest() 191 EXPECT_CALL(*mock_packet_buffer_, Die()).Times(1); in ~NetEqImplTest() 281 EXPECT_CALL(mock_decoder, Die()).Times(1); // Called when deleted. in TEST_F()
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/ |
D | generate_test_messages.py | 12 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/ |
D | default-platform-unittest.cc | 17 virtual ~MockTask() { Die(); } in ~MockTask() 19 MOCK_METHOD0(Die, void()); 37 EXPECT_CALL(*task, Die()); in TEST()
|
D | worker-thread-unittest.cc | 20 virtual ~MockTask() { Die(); } in ~MockTask() 22 MOCK_METHOD0(Die, void()); 36 EXPECT_CALL(*task, Die()); in TEST()
|
/external/chromium_org/v8/tools/push-to-trunk/ |
D | auto_push.py | 57 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)
|
D | merge_to_branch.py | 43 self.Die("A merge is already in progress") 52 self.Die("Please specify a branch to merge to") 81 self.Die("Cannot determine svn revision for %s" % git_hash) 109 self.Die("Cannot determine git hash for r%s" % revision) 117 self.Die("Revision list is empty.") 225 self.Die("Unable to map git commit to svn revision.")
|
D | push_to_trunk.py | 71 self.Die("Could not determine the git hash for the push.") 96 self.Die("Could not retrieve bleeding edge revision for trunk push %s" 100 self.Die("Could not retrieve bleeding edge git hash for trunk push %s" 241 self.Die("Empty ChangeLog entry.") 285 self.Die("Commit message editing failed.") 346 self.Die("Execution canceled.") # pragma: no cover 355 self.Die("'git svn dcommit' failed.")
|
/external/chromium_org/components/dom_distiller/core/ |
D | fake_distiller.cc | 22 EXPECT_CALL(*this, Die()).Times(testing::AnyNumber()); in FakeDistiller() 31 EXPECT_CALL(*this, Die()).Times(testing::AnyNumber()); in FakeDistiller() 36 Die(); in ~FakeDistiller()
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/ |
D | mock_buffer_level_filter.h | 22 virtual ~MockBufferLevelFilter() { Die(); } in ~MockBufferLevelFilter() 23 MOCK_METHOD0(Die,
|
D | mock_dtmf_tone_generator.h | 22 virtual ~MockDtmfToneGenerator() { Die(); } in ~MockDtmfToneGenerator() 23 MOCK_METHOD0(Die, void());
|
D | mock_delay_peak_detector.h | 22 virtual ~MockDelayPeakDetector() { Die(); } in ~MockDelayPeakDetector() 23 MOCK_METHOD0(Die, void());
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_suppressions.cc | 58 Die(); in ReadFile() 65 Die(); in ReadFile() 71 Die(); in ReadFile() 121 Die(); in conv()
|