Home
last modified time | relevance | path

Searched refs:delim_pos (Results 1 – 5 of 5) sorted by relevance

/external/ruy/ruy/
Dbenchmark.cc94 std::size_t delim_pos = comma_separated_ints.find(',', pos); in ParseCommaSeparatedInts() local
95 if (delim_pos == std::string::npos) { in ParseCommaSeparatedInts()
96 delim_pos = comma_separated_ints.size(); in ParseCommaSeparatedInts()
99 std::stoi(comma_separated_ints.substr(pos, delim_pos - pos))); in ParseCommaSeparatedInts()
100 pos = delim_pos + 1; in ParseCommaSeparatedInts()
/external/marisa-trie/tools/
Dmarisa-build.cc44 const std::string::size_type delim_pos = line.find_last_of('\t'); in read_keys() local
46 if (delim_pos != line.npos) { in read_keys()
48 weight = (float)std::strtod(&line[delim_pos + 1], &end_of_value); in read_keys()
50 line.resize(delim_pos); in read_keys()
Dmarisa-benchmark.cc137 const std::string::size_type delim_pos = line.find_last_of('\t'); in read_keys() local
139 if (delim_pos != line.npos) { in read_keys()
141 weight = (float)std::strtod(&line[delim_pos + 1], &end_of_value); in read_keys()
143 line.resize(delim_pos); in read_keys()
/external/libaom/test/
Dtest_data_util.cmake604 string(FIND "${line}" " *" delim_pos)
606 math(EXPR filename_pos "${delim_pos} + 2")
607 string(SUBSTRING "${line}" 0 ${delim_pos} checksum)
/external/libabigail/src/
Dabg-ir.cc10350 size_t& delim_pos) in find_next_delim_in_cplus_type() argument
10366 delim_pos = i; in find_next_delim_in_cplus_type()