Home | History | Annotate | Download | only in base

Lines Matching defs:comma

30   std::string::const_iterator comma = std::find(after_colon, end, ',');
31 if (comma == end)
36 std::search(after_colon, comma, kBase64Tag,
39 bool base64_encoded = (it != comma);
41 if (comma != after_colon) {
43 std::string::const_iterator semi_colon = std::find(after_colon, comma, ';');
48 if (semi_colon != comma) {
50 it = std::search(semi_colon + 1, comma, kCharsetTag,
52 if (it != comma)
53 charset->assign(it + sizeof(kCharsetTag)-1, comma);
70 std::string temp_data = std::string(comma + 1, end);