Searched refs:decoded_string (Results 1 – 3 of 3) sorted by relevance
177 std::string decoded_string; in OnDecodeImageBase64() local179 if (!base::Base64Decode(encoded_string, &decoded_string)) { in OnDecodeImageBase64()184 std::vector<unsigned char> decoded_vector(decoded_string.size()); in OnDecodeImageBase64()185 for (size_t i = 0; i < decoded_string.size(); ++i) { in OnDecodeImageBase64()186 decoded_vector[i] = static_cast<unsigned char>(decoded_string[i]); in OnDecodeImageBase64()
252 std::string decoded_string = DecodeBase64(encoded_key); in ExtractFirstKeyIdFromLicenseRequest() local253 if (decoded_string.empty()) { in ExtractFirstKeyIdFromLicenseRequest()258 std::vector<uint8> result(decoded_string.begin(), decoded_string.end()); in ExtractFirstKeyIdFromLicenseRequest()
48 base::scoped_nsobject<NSMutableAttributedString> decoded_string(60 [decoded_string addAttributes:it->ToAttributesDictionary()63 return [decoded_string.release() autorelease];