HomeSort by relevance Sort by last modified time
    Searched full:delim_pos (Results 1 - 5 of 5) sorted by null

  /external/marisa-trie/tools/
marisa-build.cc 44 const std::string::size_type delim_pos = line.find_last_of('\t'); local
45 if (delim_pos != line.npos) {
47 key.second = std::strtod(&line[delim_pos + 1], &end_of_value);
49 line.resize(delim_pos);
marisa-benchmark.cc 133 const std::string::size_type delim_pos = line.find_last_of('\t'); local
134 if (delim_pos != line.npos) {
136 key.second = std::strtod(&line[delim_pos + 1], &end_of_value);
138 line.resize(delim_pos);
  /external/marisa-trie/v0_1_5/tools/
marisa_alpha-build.cc 44 const std::string::size_type delim_pos = line.find_last_of('\t'); local
45 if (delim_pos != line.npos) {
47 key.second = std::strtod(&line[delim_pos + 1], &end_of_value);
49 line.resize(delim_pos);
marisa_alpha-benchmark.cc 133 const std::string::size_type delim_pos = line.find_last_of('\t'); local
134 if (delim_pos != line.npos) {
136 key.second = std::strtod(&line[delim_pos + 1], &end_of_value);
138 line.resize(delim_pos);
  /external/chromium_org/chrome/browser/
io_thread.cc 558 size_t delim_pos = switch_value.find(":"); local
559 CHECK(delim_pos != std::string::npos)
562 std::string log_description(switch_value.substr(0, delim_pos));
565 switch_value.substr(delim_pos + 1),
    [all...]

Completed in 7904 milliseconds