HomeSort by relevance Sort by last modified time
    Searched refs:encoded_text (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/media/cdm/
json_web_key.cc 26 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) {
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/
spelling_service_client.cc 70 std::string encoded_text = base::GetQuotedJSONString(text); local
87 encoded_text.c_str(),

Completed in 140 milliseconds