Lines Matching full:means
51 uint16_t behindChart = GetCodeUnit<T>(sp, k + 2, strLen); // 2: means plus 2 in DecodePercentEncoding()
66 k += 2; // 2: means plus 2 in DecodePercentEncoding()
89 common::utf_helper::DECODE_LEAD_LOW); // 10: means shift left by 10 digits in UTF16EncodeCodePoint()
99 common::utf_helper::DECODE_LEAD_LOW); // 10: means shift left by 10 digits in UTF16EncodeCodePoint()
116 if ((k + 2) >= strLen) { // 2: means plus 2 in DecodePercentEncoding()
121 uint16_t behindChar = GetCodeUnit<T>(sp, k + 2, strLen); // 2: means plus 2 in DecodePercentEncoding()
128 k += 2; // 2: means plus 2 in DecodePercentEncoding()
133 k += 2; // 2: means plus 2 in DecodePercentEncoding()
163 if (n > 4) { // 4 : 4 means less than 4 in DecodePercentEncoding()
176 if (k + (3 * (n - 1)) >= strLen) { // 3: means multiply by 3 in DecodePercentEncoding()
272 …uint8_t res = ((idxf << 4U) | idxb) & common::utf_helper::BIT_MASK_FF; // NOLINT 4: means shift l… in DecodePercentEncoding()