Home | History | Annotate | Download | only in strings

Lines Matching refs:string

8 #include <string>
19 // or ends with |c|, then an empty string is inserted.
31 BASE_EXPORT void SplitString(const std::string& str,
33 std::vector<std::string>* r);
35 typedef std::vector<std::pair<std::string, std::string> > StringPairs;
41 BASE_EXPORT bool SplitStringIntoKeyValuePairs(const std::string& line,
50 BASE_EXPORT void SplitStringUsingSubstr(const std::string& str,
51 const std::string& s,
52 std::vector<std::string>* r);
63 BASE_EXPORT void SplitStringDontTrim(const std::string& str,
65 std::vector<std::string>* r);
69 // factor this out into a function that takes a string containing the characters
72 // Splits the string along whitespace (where whitespace is the five space
77 BASE_EXPORT void SplitStringAlongWhitespace(const std::string& str,
78 std::vector<std::string>* result);