Home
last modified time | relevance | path

Searched refs:charCode (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/utils/
H A Dsource_map.cpp349 uint32_t RevSourceMap::Base64CharToInt(char charCode) in Base64CharToInt() argument
351 if ('A' <= charCode && charCode <= 'Z') { in Base64CharToInt()
353 return charCode - 'A'; in Base64CharToInt()
354 } else if ('a' <= charCode && charCode <= 'z') { in Base64CharToInt()
356 return charCode - 'a' + 26; in Base64CharToInt()
357 } else if ('0' <= charCode && charCode <= '9') { in Base64CharToInt()
359 return charCode - '0' + 52; in Base64CharToInt()
360 } else if (charCode == '+') { in Base64CharToInt()
363 } else if (charCode == '/') { in Base64CharToInt()
H A Dsource_map.h64 static uint32_t Base64CharToInt(char charCode);
/ohos5.0/foundation/ability/ability_runtime/js_environment/frameworks/js_environment/src/
H A Dsource_map.cpp66 uint32_t Base64CharToInt(char charCode) in Base64CharToInt() argument
68 if ('A' <= charCode && charCode <= 'Z') { in Base64CharToInt()
70 return charCode - 'A'; in Base64CharToInt()
71 } else if ('a' <= charCode && charCode <= 'z') { in Base64CharToInt()
73 return charCode - 'a' + 26; in Base64CharToInt()
74 } else if ('0' <= charCode && charCode <= '9') { in Base64CharToInt()
76 return charCode - '0' + 52; in Base64CharToInt()
77 } else if (charCode == '+') { in Base64CharToInt()
80 } else if (charCode == '/') { in Base64CharToInt()
/ohos5.0/base/hiviewdfx/hisysevent/frameworks/native/
H A Djson_flatten_parser.cpp105 int charCode = static_cast<uint8_t>(json[curPos]); in ParseValue() local
106 switch (charFilter[charCode]) { in ParseValue()
/ohos5.0/foundation/filemanagement/user_file_service/interfaces/kits/picker/
H A Dpicker.js98 let charCode = str.charCodeAt(i);
99 if (charCode <= 0x007f) {
101 } else if (charCode <= 0x07ff) {
103 } else if (charCode <= 0xffff) {