Lines Matching refs:string
49 #include <string>
58 string symbolsPath;
59 string uploadURLStr;
60 string proxy;
61 string proxy_user_pwd;
62 string version;
66 static void TokenizeByChar(const string &source_string,
67 int c, std::vector<string> *results) {
69 string::size_type cur_pos = 0, next_pos = 0;
70 while ((next_pos = source_string.find(c, cur_pos)) != string::npos) {
82 static bool ModuleDataForSymbolFile(const string &file,
83 std::vector<string> *module_parts) {
90 string line(buffer);
91 string::size_type line_break_pos = line.find_first_of('\n');
92 if (line_break_pos == string::npos) {
110 static string CompactIdentifier(const string &uuid) {
111 std::vector<string> components;
113 string result;
121 std::map<string, string> parameters;
123 std::vector<string> module_parts;
129 string compacted_id = CompactIdentifier(module_parts[3]);
142 string response, error;