Searched refs:chars (Results 1 - 7 of 7) sorted by relevance
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/util/ |
H A D | uid_util.h | 30 constexpr char chars[] = "0123456789abcdef"; in Uint8ToHex() local 31 *c0 = chars[((value & 0xf0) >> 4u)]; in Uint8ToHex() 32 *c1 = chars[value & 0x0f]; in Uint8ToHex()
|
/foundation/CastEngine/castengine_wifi_display/services/utils/ |
H A D | utils.cpp | 79 #define TRIM(s, chars) \ 82 for (auto &ch : (chars)) { \ 91 std::string &Trim(std::string &s, const std::string &chars) in Trim() argument 93 TRIM(s, chars); in Trim() 97 std::string Trim(std::string &&s, const std::string &chars) in Trim() argument 99 TRIM(s, chars); in Trim()
|
H A D | utils.h | 86 std::string Trim(std::string &&s, const std::string &chars = " \r\n\t"); 87 std::string &Trim(std::string &s, const std::string &chars = " \r\n\t");
|
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/common/ |
H A D | ffmpeg_utils.cpp | 165 bool StartWith(const char* name, const char* chars) in StartWith() argument 167 MEDIA_LOG_D("[" PUBLIC_LOG_S "] start with [" PUBLIC_LOG_S "].", name, chars); in StartWith() 168 return !strncmp(name, chars, strlen(chars)); in StartWith()
|
H A D | ffmpeg_utils.h | 47 bool StartWith(const char* name, const char* chars);
|
/foundation/filemanagement/file_api/interfaces/kits/rust/src/ |
H A D | adapter.rs | 180 let len = path_str.chars().count();
|
/foundation/resourceschedule/work_scheduler/interfaces/kits/js/napi/src/ |
H A D | common.cpp | 371 char chars[NAME_MAXIMUM_LIMIT] = {0}; in GetStringProperty() local 373 napi_status getStringStatus = napi_get_value_string_utf8(env, value, chars, NAME_MAXIMUM_LIMIT, &charLength); in GetStringProperty() 375 return std::string(chars, charLength); in GetStringProperty()
|
Completed in 6 milliseconds