/base/global/i18n/frameworks/intl/include/ |
H A D | character.h | 25 bool IsDigit(const std::string &character); 26 bool IsSpaceChar(const std::string &character); 27 bool IsWhiteSpace(const std::string &character); 28 bool IsRTLCharacter(const std::string &character); 29 bool IsIdeoGraphic(const std::string &character); 30 bool IsLetter(const std::string &character); 31 bool IsLowerCase(const std::string &character); 32 bool IsUpperCase(const std::string &character); 33 std::string GetType(const std::string &character);
|
H A D | date_time_format.h | 140 void ComputePartOfPattern(std::string option, char16_t character, std::string twoDigitChar, 143 void ComputeTimeZoneOfPattern(std::string option, char16_t character, std::string longChar, 145 void ComputeWeekdayOfPattern(std::string option, char16_t character, std::string longChar, 147 void ComputeEraOfPattern(std::string option, char16_t character, std::string longChar,
|
/base/global/i18n/frameworks/intl/src/ |
H A D | character.cpp | 15 #include "character.h" 39 bool IsDigit(const std::string &character) in IsDigit() argument 41 icu::UnicodeString unicodeString(character.c_str()); in IsDigit() 46 bool IsSpaceChar(const std::string &character) in IsSpaceChar() argument 48 icu::UnicodeString unicodeString(character.c_str()); in IsSpaceChar() 53 bool IsWhiteSpace(const std::string &character) in IsWhiteSpace() argument 55 icu::UnicodeString unicodeString(character.c_str()); in IsWhiteSpace() 60 bool IsRTLCharacter(const std::string &character) in IsRTLCharacter() argument 62 icu::UnicodeString unicodeString(character.c_str()); in IsRTLCharacter() 71 bool IsIdeoGraphic(const std::string &character) in IsIdeoGraphic() argument 78 IsLetter(const std::string &character) IsLetter() argument 85 IsLowerCase(const std::string &character) IsLowerCase() argument 92 IsUpperCase(const std::string &character) IsUpperCase() argument 134 GetType(const std::string &character) GetType() argument [all...] |
H A D | date_time_format.cpp | 492 void DateTimeFormat::ComputePartOfPattern(std::string option, char16_t character, std::string twoDigitChar, in ComputePartOfPattern() argument 496 UnicodeString curPartOfPattern = UnicodeString(character); in ComputePartOfPattern() 505 void DateTimeFormat::ComputeTimeZoneOfPattern(std::string option, char16_t character, std::string longChar, in ComputeTimeZoneOfPattern() argument 509 UnicodeString timeZoneOfPattern = UnicodeString(character); in ComputeTimeZoneOfPattern() 519 void DateTimeFormat::ComputeWeekdayOfPattern(std::string option, char16_t character, std::string longChar, in ComputeWeekdayOfPattern() argument 523 UnicodeString curPartOfPattern = UnicodeString(character); in ComputeWeekdayOfPattern() 537 void DateTimeFormat::ComputeEraOfPattern(std::string option, char16_t character, std::string longChar, in ComputeEraOfPattern() argument 541 UnicodeString curPartOfPattern = UnicodeString(character); in ComputeEraOfPattern()
|
/base/global/i18n/interfaces/js/kits/src/ |
H A D | i18n_unicode_addon.cpp | 15 #include "character.h" 115 std::string character = VariableConvertor::GetString(env, argv[0], code); in IsDigitAddon() local 119 bool isDigit = IsDigit(character); in IsDigitAddon() 146 std::string character = VariableConvertor::GetString(env, argv[0], code); in IsSpaceCharAddon() local 150 bool isSpaceChar = IsSpaceChar(character); in IsSpaceCharAddon() 177 std::string character = VariableConvertor::GetString(env, argv[0], code); in IsWhiteSpaceAddon() local 181 bool isWhiteSpace = IsWhiteSpace(character); in IsWhiteSpaceAddon() 208 std::string character = VariableConvertor::GetString(env, argv[0], code); in IsRTLCharacterAddon() local 212 bool isRTLCharacter = IsRTLCharacter(character); in IsRTLCharacterAddon() 239 std::string character in IsIdeoGraphicAddon() local 270 std::string character = VariableConvertor::GetString(env, argv[0], code); IsLetterAddon() local 301 std::string character = VariableConvertor::GetString(env, argv[0], code); IsLowerCaseAddon() local 332 std::string character = VariableConvertor::GetString(env, argv[0], code); IsUpperCaseAddon() local 363 std::string character = VariableConvertor::GetString(env, argv[0], code); GetTypeAddon() local [all...] |
/base/hiviewdfx/hidumper/frameworks/native/include/manager/ |
H A D | dump_implement.h | 82 std::string RemoveCharacterFromStr(const std::string& str, const char character);
|
/base/hiviewdfx/hidumper/frameworks/native/src/manager/ |
H A D | dump_implement.cpp | 769 std::string DumpImplement::RemoveCharacterFromStr(const std::string &str, const char character) in RemoveCharacterFromStr() argument 772 while (strTmp.find(character) != std::string::npos) { in RemoveCharacterFromStr() 773 strTmp.erase(strTmp.find(character), 1); in RemoveCharacterFromStr()
|