/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
NormalizerTest.java | 21 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.valueOf(null) [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
NormalizerTest.java | 26 assertEquals(src, Normalizer.normalize(src, Normalizer.Form.NFC)); 30 Normalizer.normalize(src, Normalizer.Form.NFD)); 33 assertEquals("\u038e\u03ab\u1e61", Normalizer.normalize(src, Normalizer.Form.NFKC)); 37 Normalizer.normalize(src, Normalizer.Form.NFKD)); 40 assertEquals("\u00e9", Normalizer.normalize("\u0065\u0301", Normalizer.Form.NFC)); 43 assertEquals("\u1e69", Normalizer.normalize("\u1e9b\u0323", Normalizer.Form.NFKC)); 46 Normalizer.normalize(null, Normalizer.Form.NFC); 57 assertTrue(Normalizer.isNormalized(target, Normalizer.Form.NFC)); 58 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFD)); 59 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFKC)) [all...] |
/external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
DWARFAttribute.h | 19 uint16_t Form; 21 DWARFAttribute(uint16_t attr, uint16_t form) 22 : Attribute(attr), Form(form) {} 25 uint16_t getForm() const { return Form; }
|
DWARFFormValue.h | 44 uint16_t Form; // Form for this value. 45 ValueType Value; // Contains all data for the form. 48 DWARFFormValue(uint16_t form = 0) : Form(form) {} 49 uint16_t getForm() const { return Form; } 61 /// the compile unit at a later time in order to work with the form 69 static bool skipValue(uint16_t form, DataExtractor debug_info_data, 71 static bool isBlockForm(uint16_t form); [all...] |
DWARFFormValue.cpp | 87 // Read the value for the form into value and follow and DW_FORM_indirect 91 switch (Form) { 141 // Set the string value to also be the data for inlined cstr form 143 // and DW_FORM_strp form values 147 Form = data.getULEB128(offset_ptr); 170 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu); 174 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data, 179 switch (form) { 250 form = debug_info_data.getULEB128(offset_ptr); 265 switch (Form) { [all...] |
/external/icu/icu4c/source/i18n/ |
standardplural.h | 26 * Standard CLDR plural form/category constants. 31 enum Form { 42 * @return the lowercase CLDR keyword string for the plural form 44 static const char *getKeyword(Form p); 48 * @return the plural form corresponding to the keyword, or OTHER 50 static Form orOtherFromString(const char *keyword) { 51 return static_cast<Form>(indexOrOtherIndexFromString(keyword)); 56 * @return the plural form corresponding to the keyword, or OTHER 58 static Form orOtherFromString(const UnicodeString &keyword) { 59 return static_cast<Form>(indexOrOtherIndexFromString(keyword)) [all...] |
quantityformatter.h | 71 * Adds a plural variant if there is none yet for the plural form. 113 * Selects the standard plural form for the number/formatter/rules. 115 static StandardPlural::Form selectPlural(
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFAbbreviationDeclaration.h | 23 AttributeSpec(uint16_t Attr, uint16_t Form) : Attr(Attr), Form(Form) {} 25 uint16_t Form; 43 return idx < AttributeSpecs.size() ? AttributeSpecs[idx].Form : 0;
|
DWARFFormValue.h | 51 uint16_t Form; // Form for this value. 52 ValueType Value; // Contains all data for the form. 55 DWARFFormValue(uint16_t Form = 0) : Form(Form) {} 56 uint16_t getForm() const { return Form; } 74 /// DWARFFormValue has form class is suitable for representing Foo. 85 static bool skipValue(uint16_t form, DataExtractor debug_info_data, 87 static bool skipValue(uint16_t form, DataExtractor debug_info_data [all...] |
DWARFAcceleratorTable.h | 33 typedef uint16_t Form; 35 SmallVector<std::pair<AtomType, Form>, 3> Atoms;
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DIE.cpp | 44 ID.AddInteger(unsigned(Form)); 79 // Emit form type. 200 getDIE##T().EmitValue(AP, Form); \ 212 return getDIE##T().SizeOf(AP, Form); 242 void DIEInteger::EmitValue(const AsmPrinter *Asm, dwarf::Form Form) const { 244 switch (Form) { 272 default: llvm_unreachable("DIE Value form not supported yet"); 279 unsigned DIEInteger::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const [all...] |
DwarfUnit.h | 170 Optional<dwarf::Form> Form, uint64_t Integer); 172 void addUInt(DIEValueList &Block, dwarf::Form Form, uint64_t Integer); 176 Optional<dwarf::Form> Form, int64_t Integer); 178 void addSInt(DIELoc &Die, Optional<dwarf::Form> Form, int64_t Integer); 191 dwarf::Form Form, [all...] |
/external/llvm/include/llvm/CodeGen/ |
DIE.h | 39 /// Form - Dwarf form code. 41 dwarf::Form Form; 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) { [all...] |
/libcore/ojluni/src/main/java/java/text/ |
Normalizer.java | 43 * text into an equivalent composed or decomposed form, allowing for easier 52 * In Unicode, this can be encoded as a single character (the "composed" form): 57 * or as two separate characters (the "decomposed" form): 121 public enum Form { 145 Form(android.icu.text.Normalizer.Mode icuMode) { 156 * @param form The normalization form; one of 157 * {@link java.text.Normalizer.Form#NFC}, 158 * {@link java.text.Normalizer.Form#NFD}, 159 * {@link java.text.Normalizer.Form#NFKC} [all...] |
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
DIE.h | 36 /// Form - Dwarf form code. 38 unsigned Form; 40 DIEAbbrevData(unsigned A, unsigned F) : Attribute(A), Form(F) {} 44 unsigned getForm() const { return Form; } 85 void AddAttribute(unsigned Attribute, unsigned Form) { 86 Data.push_back(DIEAbbrevData(Attribute, Form)); 91 void AddFirstAttribute(unsigned Attribute, unsigned Form) { 92 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form)); 161 void addValue(unsigned Attribute, unsigned Form, DIEValue *Value) [all...] |
DIE.cpp | 36 ID.AddInteger(Form); 74 // Emit form type. 190 void DIEInteger::EmitValue(AsmPrinter *Asm, unsigned Form) const { 192 switch (Form) { 205 default: llvm_unreachable("DIE Value form not supported yet"); 212 unsigned DIEInteger::SizeOf(AsmPrinter *AP, unsigned Form) const { 213 switch (Form) { 226 default: llvm_unreachable("DIE Value form not supported yet"); break; 244 void DIEString::EmitValue(AsmPrinter *AP, unsigned Form) const { 262 void DIELabel::EmitValue(AsmPrinter *AP, unsigned Form) const [all...] |
DwarfCompileUnit.h | 145 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);
|
/external/llvm/lib/DebugInfo/DWARF/ |
DWARFAbbreviationDeclaration.cpp | 47 uint16_t Form = Data.getULEB128(OffsetPtr); 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);
|
DWARFFormValue.cpp | 112 // First, check DWARF4 form classes. 113 if (Form < makeArrayRef(DWARF4FormClasses).size() && 114 DWARF4FormClasses[Form] == FC) 117 switch (Form) { 130 return (Form == DW_FORM_data4 || Form == DW_FORM_data8) && 139 // Read the value for the form into value and follow and DW_FORM_indirect 143 switch (Form) { 149 (Form == DW_FORM_addr) 211 Form = data.getULEB128(offset_ptr) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/ |
Presentation.c | 30 Evaluate all expressions in a Form.
32 @param FormSet FormSet this Form belongs to.
33 @param Form The Form.
41 IN FORM_BROWSER_FORM *Form
48 Link = GetFirstNode (&Form->ExpressionListHead);
49 while (!IsNull (&Form->ExpressionListHead, Link)) {
51 Link = GetNextNode (&Form->ExpressionListHead, Link);
57 (Expression->Type == EFI_HII_EXPRESSION_READ && Form->FormType != STANDARD_MAP_FORM_TYPE)) {
59 // Postpone Form validation to Question editing or Form submitting or Question Write or Question Read for nonstanda (…) [all...] |
Setup.c | 77 Create a menu with specified formset GUID and form ID, and add it as a child
82 @param FormId The Form ID of menu to be added.
111 // If parent is not specified, it is the root Form of a Formset
119 Return the form id for the input hiihandle and formset.
124 @return First form's id for this form set.
134 FORM_BROWSER_FORM *Form;
137 Form = FORM_BROWSER_FORM_FROM_LINK (Link);
139 return Form->FormId;
147 @param FormId The Form ID of menu to search. [all...] |
Expression.h | 21 @param Level Which type this expression belong to. Form,
78 @param Level Which type this expression belong to. Form,
147 @param Level Which type this expression belong to. Form,
163 @param Level Which type this expression belong to. Form,
209 @param Form Form associated with this expression.
224 IN FORM_BROWSER_FORM *Form,
235 @param Form Form associated with this expression.
246 IN FORM_BROWSER_FORM *Form OPTIONAL [all...] |
/external/curl/lib/ |
formdata.h | 26 FORM_DATA, /* form metadata (convert to network encoding if necessary) */ 27 FORM_CONTENT, /* form content (never convert) */ 31 to create the form data (never convert) */ 42 struct Form { 43 struct FormData *data; /* current form line to send */ 71 int Curl_FormInit(struct Form *form, struct FormData *formdata);
|
/external/llvm/unittests/DebugInfo/DWARF/ |
DWARFFormValueTest.cpp | 32 // Check that we don't have fixed form sizes for weird address sizes. 36 bool isFormClass(uint16_t Form, DWARFFormValue::FormClass FC) { 37 return DWARFFormValue(Form).isFormClass(FC); 55 DWARFFormValue createDataXFormValue(uint16_t Form, RawTypeT Value) { 59 DWARFFormValue Result(Form);
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
X86RecognizableInstr.cpp | 129 /// @param form - The form of the instruction. 130 /// @return - true if the form implies that a ModR/M byte is required, false 132 static bool needsModRMForDecode(uint8_t form) { 133 if (form == X86Local::MRMDestReg || 134 form == X86Local::MRMDestMem || 135 form == X86Local::MRMSrcReg || 136 form == X86Local::MRMSrcMem || 137 (form >= X86Local::MRM0r && form <= X86Local::MRM7r) | [all...] |