Searched refs:Form (Results 1 - 20 of 20) sorted by relevance

/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DNormalizerTest.java21 import java.text.Normalizer.Form;
27 * @tests java.text.Normalizer.Form#values()
30 Form[] forms = Form.values();
32 assertEquals(Form.NFD, forms[0]);
33 assertEquals(Form.NFC, forms[1]);
34 assertEquals(Form.NFKD, forms[2]);
35 assertEquals(Form.NFKC, forms[3]);
39 * @tests java.text.Normalizer.Form#valueOf(String)
43 Form
[all...]
/external/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; }
H A DDWARFFormValue.cpp91 switch (Form) {
147 Form = data.getULEB128(offset_ptr);
170 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu);
265 switch (Form) {
282 switch (Form) {
346 OS << format("DW_FORM(0x%4.4x)", Form);
367 switch (Form) {
384 switch (Form) {
391 Form = DW_FORM_ref_addr;
/external/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 DDIE.cpp36 ID.AddInteger(Form);
190 void DIEInteger::EmitValue(AsmPrinter *Asm, unsigned Form) const {
192 switch (Form) {
212 unsigned DIEInteger::SizeOf(AsmPrinter *AP, unsigned Form) const {
213 switch (Form) {
244 void DIEString::EmitValue(AsmPrinter *AP, unsigned Form) const {
262 void DIELabel::EmitValue(AsmPrinter *AP, unsigned Form) const {
263 AP->OutStreamer.EmitSymbolValue(Label, SizeOf(AP, Form), 0/*AddrSpace*/);
268 unsigned DIELabel::SizeOf(AsmPrinter *AP, unsigned Form) const {
269 if (Form
[all...]
H A DDwarfCompileUnit.h145 void addUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer);
149 void addSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer);
153 void addString(DIE *Die, unsigned Attribute, unsigned Form,
158 void addLabel(DIE *Die, unsigned Attribute, unsigned Form,
163 void addDelta(DIE *Die, unsigned Attribute, unsigned Form,
168 void addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry);
172 void addBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block);
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.cpp1518 unsigned Form = AbbrevData[i].getForm(); local
1519 assert(Form && "Too many attributes for DIE (check abbreviation)");
1555 Values[i]->EmitValue(Asm, Form);
1563 Values[i]->EmitValue(Asm, Form);
1568 Values[i]->EmitValue(Asm, Form);
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp215 Form = byteFromRec(Rec, "FormBits");
374 if (Form == X86Local::Pseudo ||
378 if (Form == X86Local::MRMInitReg)
629 switch (Form) {
830 if (needsModRMForDecode(Form))
831 filter = new ModFilter(isRegFormat(Form));
838 switch (Form) {
849 filter = new ExtendedFilter(true, Form - X86Local::MRM0r);
859 filter = new ExtendedFilter(false, Form - X86Local::MRM0m);
862 } // switch (Form)
[all...]
H A DX86RecognizableInstr.h48 uint8_t Form; member in class:llvm::X86Disassembler::RecognizableInstr
H A DARMDecoderEmitter.cpp162 static bool thumbInstruction(uint8_t Form) { argument
163 return Form == ARM_FORMAT_THUMBFRM;
745 stringForARMFormat((ARMFormat)getByteField(Def, "Form"));
1560 uint8_t Form = getByteField(Def, "Form"); local
1577 if (Form == ARM_FORMAT_PSEUDO)
1579 if (thumbInstruction(Form))
1615 if (!thumbInstruction(Form))
1666 errs() << Name << " " << stringForARMFormat((ARMFormat)Form);
/external/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/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dprototype-1.6.0.3.js2606 Object.extend(Form, Form.Methods);
2607 Object.extend(Form.Element, Form.Element.Methods);
2609 "FORM": Object.clone(Form.Methods),
2610 "INPUT": Object.clone(Form.Element.Methods),
2611 "SELECT": Object.clone(Form.Element.Methods),
2612 "TEXTAREA": Object.clone(Form.Element.Methods)
3446 var Form = {
3477 Form
[all...]
H A Dconcat-jquery-mootools-prototype.js10985 Object.extend(Form, Form.Methods);
10986 Object.extend(Form.Element, Form.Element.Methods);
10988 "FORM": Object.clone(Form.Methods),
10989 "INPUT": Object.clone(Form.Element.Methods),
10990 "SELECT": Object.clone(Form.Element.Methods),
10991 "TEXTAREA": Object.clone(Form.Element.Methods)
11825 var Form = {
11856 Form
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-indic.cpp51 enum Form { enum
903 static inline Form form(unsigned short uc) {
911 return (Form)indicForms[uc-0x900];
950 Form form;
965 { (Form)0, None }
977 { (Form)0, None }
987 { (Form)0, None }
994 { (Form)0, None }
1004 { (Form)0, None }
1015 { (Form)
[all...]
/external/llvm/lib/Target/ARM/
H A DARMCodeEmitter.cpp1193 unsigned Form = MCID.TSFlags & ARMII::FormMask; local
1220 if (IsPrePost && Form == ARMII::StFrm) {
1277 unsigned Form = MCID.TSFlags & ARMII::FormMask; local
1291 if (IsPrePost && Form == ARMII::StMiscFrm) {
1734 unsigned Form = MCID.TSFlags & ARMII::FormMask;
1742 switch (Form) {
1760 switch (Form) {
1778 if (Form == ARMII::VFPConv5Frm)
1781 else if (Form == ARMII::VFPConv3Frm)
/external/tcpdump/
H A Dprint-snmp.c248 const char *Form[] = { variable
491 if (form >= sizeof(Form)/sizeof(Form[0])) {
496 printf("[class?%c/%d]", *Form[form], class);
500 printf("[id?%c/%s/%d]", *Form[form], Class[class].name, id);
847 * Rose-Normal-Form.
/external/e2fsprogs/lib/et/
H A Dtexinfo.tex1693 % @defspec == @deffn Special Form
/external/grub/docs/
H A Dtexinfo.tex151 \ifx\putwordDefspec\undefined \gdef\putwordDefspec{Special Form}\fi

Completed in 1315 milliseconds