Searched refs:charCode (Results 1 – 5 of 5) sorted by relevance
349 uint32_t RevSourceMap::Base64CharToInt(char charCode) in Base64CharToInt() argument351 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()
64 static uint32_t Base64CharToInt(char charCode);
66 uint32_t Base64CharToInt(char charCode) in Base64CharToInt() argument68 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()
105 int charCode = static_cast<uint8_t>(json[curPos]); in ParseValue() local106 switch (charFilter[charCode]) { in ParseValue()
98 let charCode = str.charCodeAt(i);99 if (charCode <= 0x007f) {101 } else if (charCode <= 0x07ff) {103 } else if (charCode <= 0xffff) {