HomeSort by relevance Sort by last modified time
    Searched refs:Form (Results 1 - 25 of 307) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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; }
  /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...]
  /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;
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 52 /// Dwarf form code.
53 dwarf::Form Form;
59 DIEAbbrevData(dwarf::Attribute A, dwarf::Form F)
60 : Attribute(A), Form(F), Value(0) {}
62 : Attribute(A), Form(dwarf::DW_FORM_implicit_const), Value(V) {}
67 dwarf::Form getForm() const { return Form; }
108 void AddAttribute(dwarf::Attribute Attribute, dwarf::Form Form) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 52 /// Dwarf form code.
53 dwarf::Form Form;
59 DIEAbbrevData(dwarf::Attribute A, dwarf::Form F)
60 : Attribute(A), Form(F), Value(0) {}
62 : Attribute(A), Form(dwarf::DW_FORM_implicit_const), Value(V) {}
67 dwarf::Form getForm() const { return Form; }
108 void AddAttribute(dwarf::Attribute Attribute, 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...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
32 : Attr(A), Form(F), ByteSizeOrValue(V) {}
35 dwarf::Form Form;
38 /// Form == DW_FORM_implicit_const.
40 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue has a value:
42 /// for the Form in this object.
43 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue is None:
44 /// byte size of Form either varies according to the DWARFUnit
47 /// * Form == DW_FORM_implicit_const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
32 : Attr(A), Form(F), ByteSizeOrValue(V) {}
35 dwarf::Form Form;
38 /// Form == DW_FORM_implicit_const.
40 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue has a value:
42 /// for the Form in this object.
43 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue is None:
44 /// byte size of Form either varies according to the DWARFUnit
47 /// * Form == DW_FORM_implicit_const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
32 : Attr(A), Form(F), ByteSizeOrValue(V) {}
35 dwarf::Form Form;
38 /// Form == DW_FORM_implicit_const.
40 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue has a value:
42 /// for the Form in this object.
43 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue is None:
44 /// byte size of Form either varies according to the DWARFUnit
47 /// * Form == DW_FORM_implicit_const
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
32 : Attr(A), Form(F), ByteSizeOrValue(V) {}
35 dwarf::Form Form;
38 /// Form == DW_FORM_implicit_const.
40 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue has a value:
42 /// for the Form in this object.
43 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue is None:
44 /// byte size of Form either varies according to the DWARFUnit
47 /// * Form == DW_FORM_implicit_const
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
32 : Attr(A), Form(F), ByteSizeOrValue(V) {}
35 dwarf::Form Form;
38 /// Form == DW_FORM_implicit_const.
40 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue has a value:
42 /// for the Form in this object.
43 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue is None:
44 /// byte size of Form either varies according to the DWARFUnit
47 /// * Form == DW_FORM_implicit_const
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
32 : Attr(A), Form(F), ByteSizeOrValue(V) {}
35 dwarf::Form Form;
38 /// Form == DW_FORM_implicit_const.
40 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue has a value:
42 /// for the Form in this object.
43 /// * Form != DW_FORM_implicit_const and ByteSizeOrValue is None:
44 /// byte size of Form either varies according to the DWARFUnit
47 /// * Form == DW_FORM_implicit_const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, int64_t Value)
32 : Attr(A), Form(F), Value(Value) {
35 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t> ByteSize)
36 : Attr(A), Form(F) {
44 dwarf::Form Form;
49 /// Form == DW_FORM_implicit_const.
51 /// * Form != DW_FORM_implicit_const and HasByteSize is true:
52 /// ByteSize contains the fixed size in bytes for the Form in this
54 /// * Form != DW_FORM_implicit_const and HasByteSize is false
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, int64_t Value)
32 : Attr(A), Form(F), Value(Value) {
35 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t> ByteSize)
36 : Attr(A), Form(F) {
44 dwarf::Form Form;
49 /// Form == DW_FORM_implicit_const.
51 /// * Form != DW_FORM_implicit_const and HasByteSize is true:
52 /// ByteSize contains the fixed size in bytes for the Form in this
54 /// * Form != DW_FORM_implicit_const and HasByteSize is false
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, int64_t Value)
32 : Attr(A), Form(F), Value(Value) {
35 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t> ByteSize)
36 : Attr(A), Form(F) {
44 dwarf::Form Form;
49 /// Form == DW_FORM_implicit_const.
51 /// * Form != DW_FORM_implicit_const and HasByteSize is true:
52 /// ByteSize contains the fixed size in bytes for the Form in this
54 /// * Form != DW_FORM_implicit_const and HasByteSize is false
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, int64_t Value)
32 : Attr(A), Form(F), Value(Value) {
35 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t> ByteSize)
36 : Attr(A), Form(F) {
44 dwarf::Form Form;
49 /// Form == DW_FORM_implicit_const.
51 /// * Form != DW_FORM_implicit_const and HasByteSize is true:
52 /// ByteSize contains the fixed size in bytes for the Form in this
54 /// * Form != DW_FORM_implicit_const and HasByteSize is false
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, int64_t Value)
32 : Attr(A), Form(F), Value(Value) {
35 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t> ByteSize)
36 : Attr(A), Form(F) {
44 dwarf::Form Form;
49 /// Form == DW_FORM_implicit_const.
51 /// * Form != DW_FORM_implicit_const and HasByteSize is true:
52 /// ByteSize contains the fixed size in bytes for the Form in this
54 /// * Form != DW_FORM_implicit_const and HasByteSize is false
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, int64_t Value)
32 : Attr(A), Form(F), Value(Value) {
35 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t> ByteSize)
36 : Attr(A), Form(F) {
44 dwarf::Form Form;
49 /// Form == DW_FORM_implicit_const.
51 /// * Form != DW_FORM_implicit_const and HasByteSize is true:
52 /// ByteSize contains the fixed size in bytes for the Form in this
54 /// * Form != DW_FORM_implicit_const and HasByteSize is false
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, int64_t Value)
32 : Attr(A), Form(F), Value(Value) {
35 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t> ByteSize)
36 : Attr(A), Form(F) {
44 dwarf::Form Form;
49 /// Form == DW_FORM_implicit_const.
51 /// * Form != DW_FORM_implicit_const and HasByteSize is true:
52 /// ByteSize contains the fixed size in bytes for the Form in this
54 /// * Form != DW_FORM_implicit_const and HasByteSize is false
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, int64_t Value)
32 : Attr(A), Form(F), Value(Value) {
35 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t> ByteSize)
36 : Attr(A), Form(F) {
44 dwarf::Form Form;
49 /// Form == DW_FORM_implicit_const.
51 /// * Form != DW_FORM_implicit_const and HasByteSize is true:
52 /// ByteSize contains the fixed size in bytes for the Form in this
54 /// * Form != DW_FORM_implicit_const and HasByteSize is false
    [all...]

Completed in 1580 milliseconds

1 2 3 4 5 6 7 8 91011>>