Lines Matching full:at
5 * You may obtain a copy of the License at
211 // b. Let C be the code unit at index k within string. in Encode()
233 // 3. Let kChar be the code unit value of the code unit at index k within string. in Encode()
256 // 1. Let jOctet be the value at index j within Octets. in Encode()
267 uint8_t joct = static_cast<uint8_t>(oct.at(j)); in Encode()
268 tmpStr << '%' << hexStr.at((joct >> 4U) & BIT_MASK) // NOLINT in Encode()
269 … << hexStr.at(joct & BIT_MASK); // 4: means shift right by 4 digits in Encode()
310 // b. Let C be the code unit at index k within string. in Decode()
315 …// iv. Let B be the 8-bit value represented by the two hexadecimal digits at index (k + 1) and (… in Decode()
335 …// iii. If the code units at index (k+1) and (k + 2) within string do not represent hexadecimal di… in Decode()
368 // 4. Put B into Octets at index 0. in Decode()
372 // d. Let B be the 8-bit value represented by the two hexadecimal digits at in Decode()
375 // g. Put B into Octets at index j. in Decode()
410 … // b. If the code unit at index k within string is not "%", throw a URIError exception. in Decode()
411 … // c. If the code units at index (k +1) and (k + 2) within string do not represent hexadecimal in Decode()
501 std::cout << "\nException at function " << info.first << ": " << info.second; in PrintEntrypoint()