Searched refs:CharacterProperties (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/tools/aapt2/text/ |
D | Unicode_data.cpp | 17 const static std::array<CharacterProperties, 611> sCharacterProperties = {{ 18 {0x0030, 0x0039, CharacterProperties::kXidContinue}, 19 {0x0041, 0x005a, CharacterProperties::kXidStart | CharacterProperties::kXidContinue}, 20 {0x005f, 0x005f, CharacterProperties::kXidContinue}, 21 {0x0061, 0x007a, CharacterProperties::kXidStart | CharacterProperties::kXidContinue}, 22 {0x00aa, 0x00aa, CharacterProperties::kXidStart | CharacterProperties::kXidContinue}, 23 {0x00b5, 0x00b5, CharacterProperties::kXidStart | CharacterProperties::kXidContinue}, 24 {0x00b7, 0x00b7, CharacterProperties::kXidContinue}, 25 {0x00ba, 0x00ba, CharacterProperties::kXidStart | CharacterProperties::kXidContinue}, 26 {0x00c0, 0x00d6, CharacterProperties::kXidStart | CharacterProperties::kXidContinue}, [all …]
|
D | Unicode.cpp | 31 struct CharacterProperties { struct 45 bool CompareCharacterProperties(const CharacterProperties& a, char32_t codepoint) { in CompareCharacterProperties() 62 return FindCharacterProperties(codepoint) & CharacterProperties::kXidStart; in IsXidStart() 66 return FindCharacterProperties(codepoint) & CharacterProperties::kXidContinue; in IsXidContinue()
|