Home
last modified time | relevance | path

Searched refs:Form (Results 1 – 25 of 68) sorted by relevance

123

/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DNormalizerTest.java21 import java.text.Normalizer.Form;
30 Form[] forms = Form.values(); in test_form_values()
32 assertEquals(Form.NFD, forms[0]); in test_form_values()
33 assertEquals(Form.NFC, forms[1]); in test_form_values()
34 assertEquals(Form.NFKD, forms[2]); in test_form_values()
35 assertEquals(Form.NFKC, forms[3]); in test_form_values()
43 Form.valueOf(null); in test_form_valueOfLjava_lang_String()
49 assertEquals(Form.NFC, Form.valueOf("NFC")); in test_form_valueOfLjava_lang_String()
50 assertEquals(Form.NFD, Form.valueOf("NFD")); in test_form_valueOfLjava_lang_String()
51 assertEquals(Form.NFKC, Form.valueOf("NFKC")); in test_form_valueOfLjava_lang_String()
[all …]
/external/llvm/lib/CodeGen/AsmPrinter/
DDIE.h38 uint16_t Form; variable
40 DIEAbbrevData(uint16_t A, uint16_t F) : Attribute(A), Form(F) {} in DIEAbbrevData()
44 uint16_t getForm() const { return Form; } in getForm()
85 void AddAttribute(uint16_t Attribute, uint16_t Form) { in AddAttribute() argument
86 Data.push_back(DIEAbbrevData(Attribute, Form)); in AddAttribute()
91 void AddFirstAttribute(uint16_t Attribute, uint16_t Form) { in AddFirstAttribute() argument
92 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form)); in AddFirstAttribute()
161 void addValue(unsigned Attribute, unsigned Form, DIEValue *Value) { in addValue() argument
162 Abbrev.AddAttribute(Attribute, Form); in addValue()
211 virtual void EmitValue(AsmPrinter *AP, unsigned Form) const = 0;
[all …]
DDIE.cpp36 ID.AddInteger(Form); in Profile()
182 void DIEInteger::EmitValue(AsmPrinter *Asm, unsigned Form) const { in EmitValue()
184 switch (Form) { in EmitValue()
204 unsigned DIEInteger::SizeOf(AsmPrinter *AP, unsigned Form) const { in SizeOf()
205 switch (Form) { in SizeOf()
235 void DIELabel::EmitValue(AsmPrinter *AP, unsigned Form) const { in EmitValue()
236 AP->OutStreamer.EmitSymbolValue(Label, SizeOf(AP, Form), 0/*AddrSpace*/); in EmitValue()
241 unsigned DIELabel::SizeOf(AsmPrinter *AP, unsigned Form) const { in SizeOf()
242 if (Form == dwarf::DW_FORM_data4) return 4; in SizeOf()
243 if (Form == dwarf::DW_FORM_strp) return 4; in SizeOf()
[all …]
DDwarfCompileUnit.h181 void addUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer);
185 void addSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer);
193 void addLabel(DIE *Die, unsigned Attribute, unsigned Form,
198 void addDelta(DIE *Die, unsigned Attribute, unsigned Form,
203 void addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry);
207 void addBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block);
DDwarfCompileUnit.cpp57 unsigned Form, uint64_t Integer) { in addUInt() argument
58 if (!Form) Form = DIEInteger::BestForm(false, Integer); in addUInt()
61 Die->addValue(Attribute, Form, Value); in addUInt()
67 unsigned Form, int64_t Integer) { in addSInt() argument
68 if (!Form) Form = DIEInteger::BestForm(true, Integer); in addSInt()
70 Die->addValue(Attribute, Form, Value); in addSInt()
90 void CompileUnit::addLabel(DIE *Die, unsigned Attribute, unsigned Form, in addLabel() argument
93 Die->addValue(Attribute, Form, Value); in addLabel()
98 void CompileUnit::addDelta(DIE *Die, unsigned Attribute, unsigned Form, in addDelta() argument
101 Die->addValue(Attribute, Form, Value); in addDelta()
[all …]
/external/llvm/lib/DebugInfo/
DDWARFFormValue.cpp91 switch (Form) { in extractValue()
147 Form = data.getULEB128(offset_ptr); in extractValue()
170 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu); in skipValue()
265 switch (Form) { in dump()
282 switch (Form) { in dump()
346 OS << format("DW_FORM(0x%4.4x)", Form); in dump()
367 switch (Form) { in getReference()
384 switch (Form) { in resolveCompileUnitReferences()
391 Form = DW_FORM_ref_addr; in resolveCompileUnitReferences()
DDWARFAttribute.h19 uint16_t Form; variable
22 : Attribute(attr), Form(form) {} in DWARFAttribute()
25 uint16_t getForm() const { return Form; } in getForm()
DDWARFFormValue.h44 uint16_t Form; // Form for this value.
48 DWARFFormValue(uint16_t form = 0) : Form(form) {} in Form() function
49 uint16_t getForm() const { return Form; } in getForm()
/external/llvm/utils/TableGen/
DX86RecognizableInstr.cpp224 Form = byteFromRec(Rec, "FormBits"); in RecognizableInstr()
400 if (Form == X86Local::Pseudo || in filter()
404 if (Form == X86Local::MRMInitReg) in filter()
628 switch (Form) { in emitInstructionSpecifier()
839 if (needsModRMForDecode(Form)) in emitDecodePath()
840 filter = new ModFilter(isRegFormat(Form)); in emitDecodePath()
847 switch (Form) { in emitDecodePath()
858 filter = new ExtendedFilter(true, Form - X86Local::MRM0r); in emitDecodePath()
868 filter = new ExtendedFilter(false, Form - X86Local::MRM0m); in emitDecodePath()
882 if (needsModRMForDecode(Form)) in emitDecodePath()
[all …]
DX86RecognizableInstr.h48 uint8_t Form; variable
/external/llvm/lib/Target/PowerPC/
DPPCInstrFormats.td85 // 1.7.1 I-Form
97 // 1.7.2 B-Form
116 // 1.7.4 D-Form
258 // 1.7.5 DS-Form
288 // 1.7.6 X-Form
458 // DCB_Form - Form X instruction, used for dcb* instructions.
475 // DSS_Form - Form X instruction, used for altivec dss* instructions.
495 // 1.7.7 XL-Form
579 // 1.7.8 XFX-Form
656 // XFL-Form - MTFSF
[all …]
/external/llvm/lib/Target/Mips/
DMipsCodeEmitter.cpp161 uint64_t Form = TSFlags & MipsII::FormMask; in getRelocation() local
162 if (Form == MipsII::FrmJ) in getRelocation()
164 if ((Form == MipsII::FrmI || Form == MipsII::FrmFI) in getRelocation()
167 if (Form == MipsII::FrmI && MI.getOpcode() == Mips::LUi) in getRelocation()
DMipsInstrFormats.td44 Format Form = f;
65 bits<4> FormBits = Form.Value;
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
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 = { variable
3477 Form.Methods = {
3479 return Form.serializeElements(Form.getElements(form), options);
3485 if (Form.Element.Serializers[child.tagName.toLowerCase()])
[all …]
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 = { variable
11856 Form.Methods = {
11858 return Form.serializeElements(Form.getElements(form), options);
11864 if (Form.Element.Serializers[child.tagName.toLowerCase()])
[all …]
/external/llvm/lib/Target/CellSPU/
DSPUNodes.td129 // A-Form local store addresses
132 // Indirect [D-Form "imm($reg)" and X-Form "$reg($reg)"] addresses
/external/llvm/lib/Target/MBlaze/
DMBlazeInstrFormats.td60 Format Form = form;
61 bits<6> FormBits = Form.Value;
135 let Form = FRRRR;
153 let Form = FRIR;
DMBlazeInstrInfo.td282 let Form = FCCR;
291 let Form = FCCI;
302 let Form = FRCR;
310 let Form = FRCI;
322 let Form = FCRR;
330 let Form = FCRI;
561 rd=0x10, Form=FCRI in {
569 rd=0x11, Form=FCRI in {
577 rd=0x12, Form=FCRI in {
585 rd=0x14, Form=FCRI in {
[all …]
/external/clang/lib/Sema/
DSemaChecking.cpp511 } Form = Init; in SemaAtomicOpsOverloaded() local
534 Form = Init; in SemaAtomicOpsOverloaded()
539 Form = Load; in SemaAtomicOpsOverloaded()
546 Form = Copy; in SemaAtomicOpsOverloaded()
568 Form = Arithmetic; in SemaAtomicOpsOverloaded()
573 Form = Xchg; in SemaAtomicOpsOverloaded()
577 Form = GNUXchg; in SemaAtomicOpsOverloaded()
582 Form = C11CmpXchg; in SemaAtomicOpsOverloaded()
587 Form = GNUCmpXchg; in SemaAtomicOpsOverloaded()
592 if (TheCall->getNumArgs() < NumArgs[Form]) { in SemaAtomicOpsOverloaded()
[all …]
/external/v8/benchmarks/spinning-balls/
Dv.js428 function Form() { class
471 Form.prototype.remove = function () {
498 var form = new Form();
/external/harfbuzz/src/
Dharfbuzz-indic.cpp51 enum Form { enum
903 static inline Form form(unsigned short uc) { in form()
911 return (Form)indicForms[uc-0x900]; in form()
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)0, None }
[all …]
/external/llvm/lib/Target/ARM/
DARMCodeEmitter.cpp1190 unsigned Form = MCID.TSFlags & ARMII::FormMask; in emitLoadStoreInstruction() local
1217 if (IsPrePost && Form == ARMII::StFrm) { in emitLoadStoreInstruction()
1274 unsigned Form = MCID.TSFlags & ARMII::FormMask; in emitMiscLoadStoreInstruction() local
1288 if (IsPrePost && Form == ARMII::StMiscFrm) { in emitMiscLoadStoreInstruction()
1731 unsigned Form = MCID.TSFlags & ARMII::FormMask; in emitVFPConversionInstruction() local
1739 switch (Form) { in emitVFPConversionInstruction()
1757 switch (Form) { in emitVFPConversionInstruction()
1775 if (Form == ARMII::VFPConv5Frm) in emitVFPConversionInstruction()
1778 else if (Form == ARMII::VFPConv3Frm) in emitVFPConversionInstruction()
/external/tcpdump/
Dprint-snmp.c248 const char *Form[] = { variable
491 if (form >= sizeof(Form)/sizeof(Form[0])) { in asn1_parse()
496 printf("[class?%c/%d]", *Form[form], class); in asn1_parse()
500 printf("[id?%c/%s/%d]", *Form[form], Class[class].name, id); in asn1_parse()
/external/llvm/lib/Target/MSP430/
DMSP430InstrFormats.td63 Format Form = f;
68 let TSFlags{1-0} = Form.Value;
/external/llvm/lib/Target/PTX/
DPTXInstrInfo.td88 //===- Floating-Point Instructions - 2 Operand Form -----------------------===//
104 //===- Floating-Point Instructions - 3 Operand Form -----------------------===//
120 //===- Floating-Point Instructions - 4 Operand Form -----------------------===//
142 //===- Integer Instructions - 3 Operand Form ------------------------------===//
170 //===- Integer Instructions - 3 Operand Form (Signed) ---------------------===//
198 //===- Bitwise Logic Instructions - 3 Operand Form ------------------------===//
234 //===- Integer Shift Instructions - 3 Operand Form ------------------------===//
359 //===- Set Predicate Instructions (FP) - 3/4 Operand Form -----------------===//
459 //===- Select Predicate Instructions - 4 Operand Form ---------------------===//

123