Searched refs:encoded_text (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/media/cdm/
H A Djson_web_key.cc26 std::string encoded_text; local
29 &encoded_text);
32 size_t found = encoded_text.find_last_not_of(kBase64Padding);
34 encoded_text.erase(found + 1);
36 return encoded_text;
40 static std::string DecodeBase64(const std::string& encoded_text) { argument
42 if (encoded_text.find_first_of(kBase64Padding) != std::string::npos)
46 // of |encoded_text| is exactly a multiple of 4.
47 size_t num_last_grouping_chars = encoded_text.length() % 4;
48 std::string modified_text = encoded_text;
[all...]
/external/chromium_org/chrome/browser/spellchecker/
H A Dspelling_service_client.cc70 std::string encoded_text = base::GetQuotedJSONString(text); local
87 encoded_text.c_str(),

Completed in 82 milliseconds