Home
last modified time | relevance | path

Searched refs:substr_start (Results 1 – 3 of 3) sorted by relevance

/external/perfetto/src/base/
Dstring_view_splitter.cc54 size_t substr_start = 0; in Next() local
56 while (substr_start < next_.size() && in Next()
57 next_.at(substr_start) == delimiter_) { in Next()
58 substr_start++; in Next()
62 if (substr_start >= next_.size()) { in Next()
69 size_t delimiter_start = next_.find(delimiter_, substr_start); in Next()
71 cur_ = next_.substr(substr_start); in Next()
90 cur_ = next_.substr(substr_start, delimiter_start - substr_start); in Next()
/external/perfetto/src/trace_processor/importers/android_bugreport/
Dandroid_battery_stats_reader.cc85 size_t substr_start = remainder.find('"') + 1; in ParseLine() local
88 remainder.substr(substr_start, substr_end - substr_start); in ParseLine()
/external/emboss/compiler/back_end/cpp/
Dheader_generator.py1304 substr_start = start
1308 while (substr_start < substr_end and
1309 enum_case_value[substr_start].isspace()):
1310 substr_start += 1
1312 while (substr_start < substr_end and
1317 if substr_start == end and start != 0:
1320 yield substr_start, substr_end