Searched defs:Form (Results 1 - 25 of 41) sorted by relevance

12

/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFAttribute.h19 uint16_t Form; member in class:llvm::DWARFAttribute
22 : Attribute(attr), Form(form) {}
25 uint16_t getForm() const { return Form; }
H A DDWARFFormValue.h44 uint16_t Form; // Form for this value. member in class:llvm::DWARFFormValue
48 DWARFFormValue(uint16_t form = 0) : Form(form) {}
49 uint16_t getForm() const { return Form; }
/external/v8/benchmarks/spinning-balls/
H A Dv.js428 function Form() { class
471 Form.prototype.remove = function () {
498 var form = new Form();
/external/icu/icu4c/source/i18n/
H A Dstandardplural.h31 enum Form { enum in class:StandardPlural
44 static const char *getKeyword(Form p);
50 static Form orOtherFromString(const char *keyword) {
51 return static_cast<Form>(indexOrOtherIndexFromString(keyword));
58 static Form orOtherFromString(const UnicodeString &keyword) {
59 return static_cast<Form>(indexOrOtherIndexFromString(keyword));
68 static Form fromString(const char *keyword, UErrorCode &errorCode) {
69 return static_cast<Form>(indexFromString(keyword, errorCode));
78 static Form fromString(const UnicodeString &keyword, UErrorCode &errorCode) {
79 return static_cast<Form>(indexFromStrin
[all...]
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp47 uint16_t Form = Data.getULEB128(OffsetPtr); local
52 if (Attr == 0 && Form == 0)
54 AttributeSpecs.push_back(AttributeSpec(Attr, Form));
80 const char *formString = FormEncodingString(Spec.Form);
84 OS << format("DW_FORM_Unknown_%x", Spec.Form);
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.h23 AttributeSpec(uint16_t Attr, uint16_t Form) : Attr(Attr), Form(Form) {} argument
25 uint16_t Form; member in struct:llvm::DWARFAbbreviationDeclaration::AttributeSpec
43 return idx < AttributeSpecs.size() ? AttributeSpecs[idx].Form : 0;
H A DDWARFAcceleratorTable.h33 typedef uint16_t Form; typedef in struct:llvm::DWARFAcceleratorTable::HeaderData
35 SmallVector<std::pair<AtomType, Form>, 3> Atoms;
H A DDWARFFormValue.h51 uint16_t Form; // Form for this value. member in class:llvm::DWARFFormValue
55 DWARFFormValue(uint16_t Form = 0) : Form(Form) {}
56 uint16_t getForm() const { return Form; }
/external/llvm/unittests/DebugInfo/DWARF/
H A DDWARFFormValueTest.cpp36 bool isFormClass(uint16_t Form, DWARFFormValue::FormClass FC) { argument
37 return DWARFFormValue(Form).isFormClass(FC);
55 DWARFFormValue createDataXFormValue(uint16_t Form, RawTypeT Value) { argument
59 DWARFFormValue Result(Form);
/external/curl/lib/
H A Dformdata.h42 struct Form { struct
71 int Curl_FormInit(struct Form *form, struct FormData *formdata);
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.h47 uint8_t Form; member in class:llvm::X86Disassembler::RecognizableInstr
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DX86RecognizableInstr.h48 uint8_t Form; member in class:llvm::X86Disassembler::RecognizableInstr
/external/pdfium/xfa/fwl/
H A Dcfwl_widget.h29 Form, member in class:FWL_Type
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
H A DMipsCodeEmitter.cpp148 uint64_t Form = TSFlags & MipsII::FormMask; local
149 if (Form == MipsII::FrmJ)
151 if ((Form == MipsII::FrmI || Form == MipsII::FrmFI)
154 if (Form == MipsII::FrmI && MI.getOpcode() == Mips::LUi)
/external/llvm/tools/llvm-dwp/
H A Dllvm-dwp.cpp115 getIndexedString(uint32_t Form, DataExtractor InfoData, uint32_t &InfoOffset, argument
117 if (Form == dwarf::DW_FORM_string)
119 if (Form != dwarf::DW_FORM_GNU_str_index)
151 uint32_t Form; local
154 (Form = AbbrevData.getULEB128(&AbbrevOffset)) &&
155 (Name != 0 || Form != 0)) {
159 getIndexedString(Form, InfoData, Offset, StrOffsets, Str);
167 getIndexedString(Form, InfoData, Offset, StrOffsets, Str);
177 DWARFFormValue::skipValue(Form, InfoData, &Offset, Version, AddrSize);
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDIE.h36 /// Form - Dwarf form code.
38 unsigned Form; member in class:llvm::DIEAbbrevData
40 DIEAbbrevData(unsigned A, unsigned F) : Attribute(A), Form(F) {}
44 unsigned getForm() const { return Form; }
85 void AddAttribute(unsigned Attribute, unsigned Form) { argument
86 Data.push_back(DIEAbbrevData(Attribute, Form));
91 void AddFirstAttribute(unsigned Attribute, unsigned Form) { argument
92 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form));
161 void addValue(unsigned Attribute, unsigned Form, DIEValue *Value) { argument
162 Abbrev.AddAttribute(Attribute, Form);
[all...]
H A DDwarfCompileUnit.cpp54 unsigned Form, uint64_t Integer) {
55 if (!Form) Form = DIEInteger::BestForm(false, Integer);
58 Die->addValue(Attribute, Form, Value);
64 unsigned Form, int64_t Integer) {
65 if (!Form) Form = DIEInteger::BestForm(true, Integer);
67 Die->addValue(Attribute, Form, Value);
72 void CompileUnit::addString(DIE *Die, unsigned Attribute, unsigned Form, argument
75 Die->addValue(Attribute, Form, Valu
53 addUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer) argument
63 addSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer) argument
80 addLabel(DIE *Die, unsigned Attribute, unsigned Form, const MCSymbol *Label) argument
88 addDelta(DIE *Die, unsigned Attribute, unsigned Form, const MCSymbol *Hi, const MCSymbol *Lo) argument
96 addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry) argument
104 addBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block) argument
465 unsigned Form = SignedConstant ? dwarf::DW_FORM_sdata : dwarf::DW_FORM_udata; local
[all...]
H A DDwarfDebug.cpp1521 unsigned Form = AbbrevData[i].getForm(); local
1522 assert(Form && "Too many attributes for DIE (check abbreviation)");
1558 Values[i]->EmitValue(Asm, Form);
1566 Values[i]->EmitValue(Asm, Form);
1571 Values[i]->EmitValue(Asm, Form);
/external/llvm/include/llvm/CodeGen/
H A DDIE.h39 /// Form - Dwarf form code.
41 dwarf::Form Form; member in class:llvm::DIEAbbrevData
44 DIEAbbrevData(dwarf::Attribute A, dwarf::Form F) : Attribute(A), Form(F) {}
48 dwarf::Form getForm() const { return Form; }
90 void AddAttribute(dwarf::Attribute Attribute, dwarf::Form Form) { argument
91 Data.push_back(DIEAbbrevData(Attribute, Form));
284 dwarf::Form Form = (dwarf::Form)0; member in class:llvm::DIEValue
573 addValue(BumpPtrAllocator &Alloc, dwarf::Attribute Attribute, dwarf::Form Form, T &&Value) argument
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp798 dwarf::Form Form = DD->getDwarfVersion() >= 4 ? dwarf::DW_FORM_sec_offset local
800 Die.addValue(DIEValueAllocator, Attribute, Form, DIELocList(Index));
815 void DwarfCompileUnit::addExpr(DIELoc &Die, dwarf::Form Form, argument
817 Die.addValue(DIEValueAllocator, (dwarf::Attribute)0, Form, DIEExpr(Expr));
H A DDwarfUnit.cpp194 Optional<dwarf::Form> Form, uint64_t Integer) {
195 if (!Form)
196 Form = DIEInteger::BestForm(false, Integer);
197 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer));
200 void DwarfUnit::addUInt(DIEValueList &Block, dwarf::Form Form, argument
202 addUInt(Block, (dwarf::Attribute)0, Form, Integer);
206 Optional<dwarf::Form> Form, int64_
193 addUInt(DIEValueList &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form, uint64_t Integer) argument
205 addSInt(DIEValueList &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form, int64_t Integer) argument
212 addSInt(DIELoc &Die, Optional<dwarf::Form> Form, int64_t Integer) argument
224 addLabel(DIEValueList &Die, dwarf::Attribute Attribute, dwarf::Form Form, const MCSymbol *Label) argument
231 addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label) argument
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp41 AddrForm Form; member in struct:__anon13160::SystemZAddressingMode
64 : Form(form), DR(dr), Base(), Disp(0), Index(),
68 bool hasIndexField() { return Form != FormBD; }
71 bool isDynAlloc() { return Form == FormBDXDynAlloc; }
174 // Try to match Addr as a FormBDX* address of form Form with
177 bool selectBDXAddr(SystemZAddressingMode::AddrForm Form,
569 if (AM.Form == SystemZAddressingMode::FormBDXLA &&
657 bool SystemZDAGToDAGISel::selectBDXAddr(SystemZAddressingMode::AddrForm Form, argument
661 SystemZAddressingMode AM(Form, DR);
1345 SystemZAddressingMode::AddrForm Form; local
[all...]
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp1196 uint64_t Form = TSFlags & X86II::FormMask; local
1197 switch (Form) {
1198 default: errs() << "FORM: " << Form << "\n";
1365 (Form == X86II::MRMXr) ? 0 : Form-X86II::MRM0r,
1381 (Form == X86II::MRMXm) ? 0 : Form - X86II::MRM0m, TSFlags,
1409 EmitByte(0xC0 + Form - X86II::MRM_C0, CurByte, OS);
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMCodeEmitter.cpp1101 unsigned Form = MCID.TSFlags & ARMII::FormMask; local
1122 if (IsPrePost && Form == ARMII::StFrm) {
1179 unsigned Form = MCID.TSFlags & ARMII::FormMask; local
1193 if (IsPrePost && Form == ARMII::StMiscFrm) {
1627 unsigned Form = MCID.TSFlags & ARMII::FormMask;
1635 switch (Form) {
1653 switch (Form) {
1671 if (Form == ARMII::VFPConv5Frm)
1674 else if (Form == ARMII::VFPConv3Frm)
/external/llvm/lib/MC/
H A DMCDwarf.cpp505 static void EmitAbbrev(MCStreamer *MCOS, uint64_t Name, uint64_t Form) { argument
507 MCOS->EmitULEB128IntValue(Form);

Completed in 574 milliseconds

12