Searched defs:Die (Results 1 - 12 of 12) sorted by relevance

/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')
H A Djsbundler.py53 def Die(message): function
126 Die('Invalid prefix rewrite spec %s' % spec)
190 Die('goog.base not provided by any file.')
226 Die('COMPILED var assignment not found in %s' % base.GetInPath())
316 Die('At least one top-level source file must be specified.')
330 Die('Must specify --dest_dir when copying.')
/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);
/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.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...]
H A DDwarfDebug.h397 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset);
478 void initSkeletonUnit(const DwarfUnit &U, DIE &Die,
570 void insertDIE(const MDNode *TypeMD, DIE *Die) { argument
571 MDTypeNodeToDieMap.insert(std::make_pair(TypeMD, Die));
599 DIE &Die, DICompositeType CTy);
611 void emitDIE(DIE &Die);
658 /// Find the DwarfCompileUnit for the given CU Die.
666 void addSubprogramNames(DISubprogram SP, DIE &Die);
670 void addAccelName(StringRef Name, const DIE &Die);
672 void addAccelObjC(StringRef Name, const DIE &Die);
[all...]
H A DDwarfDebug.cpp275 void DwarfDebug::addSubprogramNames(DISubprogram SP, DIE &Die) { argument
278 addAccelName(SP.getName(), Die);
283 addAccelName(SP.getLinkageName(), Die);
290 addAccelObjC(Class, Die);
292 addAccelObjC(Category, Die);
294 addAccelName(getObjCMethodName(SP.getName()), Die); local
386 void DwarfDebug::attachRangesOrLowHighPC(DwarfCompileUnit &TheCU, DIE &Die, argument
390 attachLowHighPC(TheCU, Die, getLabelBeforeInsn(Ranges.front().first),
393 addScopeRangeList(TheCU, Die, Ranges);
630 DIE &Die local
1683 emitDIE(DIE &Die) argument
1828 computeIndexValue(DwarfUnit *CU, const DIE *Die) argument
2288 initSkeletonUnit(const DwarfUnit &U, DIE &Die, std::unique_ptr<DwarfUnit> NewU) argument
2487 addAccelName(StringRef Name, const DIE &Die) argument
2494 addAccelObjC(StringRef Name, const DIE &Die) argument
2501 addAccelNamespace(StringRef Name, const DIE &Die) argument
2508 addAccelType(StringRef Name, const DIE &Die, char Flags) argument
[all...]
/external/chromium_org/v8/tools/push-to-trunk/
H A Dcommon_includes.py378 def Die(self, msg=""): member in class:Step
387 self.Die(msg)
403 self.Die(msg)
408 self.Die("This is not a git checkout, this script won't work for you.")
414 self.Die("Please set your EDITOR environment variable, you'll need it.")
419 self.Die("Workspace is not clean. Please commit or undo your changes.")
476 self.Die("Applying the patch failed.")
525 self.Die("SVN checkout not clean.")
529 self.Die("Could not apply patch.")
/external/clang/test/Parser/
H A Dcxx-decl.cpp169 void test (DIE die, DIE *Die, DIE INT, DIE *FLOAT) { argument
174 Die->foo();
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.cc61 void NORETURN Die() { function in namespace:__sanitizer
80 Die();
280 Die();

Completed in 187 milliseconds