Searched refs:first_space (Results 1 – 5 of 5) sorted by relevance
68 size_t first_space = cmdline.find(' '); in RunExe() local69 if (first_space == -1) { in RunExe()73 cmdline = exe_name + cmdline.substr(first_space); in RunExe()
708 size_t first_space = group_name.find(" "); in GetFieldTrialInfo() local709 if (first_space != std::string::npos) { in GetFieldTrialInfo()711 group_prefix = group_name.substr(0, first_space); in GetFieldTrialInfo()712 if (!base::SplitStringIntoKeyValuePairs(group_name.substr(first_space), in GetFieldTrialInfo()
292 size_t first_space = module->version.find_first_of(L" "); in NormalizeModule() local293 if (first_space != string16::npos) in NormalizeModule()294 module->version = module->version.substr(0, first_space); in NormalizeModule()
350 size_t first_space = module->version.find_first_of(L" "); in NormalizeModule() local351 if (first_space != base::string16::npos) in NormalizeModule()352 module->version = module->version.substr(0, first_space); in NormalizeModule()
226 int first_space = static_cast<int>(FIRST_SPACE); in InSpace() local228 for (int sp = first_space; sp < last_space; sp++) { in InSpace()