Home
last modified time | relevance | path

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

/frameworks/av/media/libeffects/loudness/dsp/core/
Dbasic-inl.h29 int start_index, in SearchIndex() argument
31 int start = start_index; in SearchIndex()
Dbasic.h39 int start_index,
/frameworks/base/tools/orientationplot/
Dorientationplot.py396 start_index = prefix_index + len(prefix)
397 delim_index = line.find(',', start_index)
399 return line[start_index:]
401 return line[start_index:delim_index]
415 start_index = prefix_index + len(prefix) + 1
416 delim_index = line.find(']', start_index)
421 while start_index < delim_index:
422 comma_index = line.find(', ', start_index, delim_index)
424 result.append(float(line[start_index:delim_index]))
426 result.append(float(line[start_index:comma_index]))
[all …]
/frameworks/base/tools/velocityplot/
Dvelocityplot.py248 start_index = prefix_index + len(prefix)
249 delim_index = line.find(',', start_index)
251 return line[start_index:]
253 return line[start_index:delim_index]
/frameworks/base/tools/aapt2/
DStringPool.cpp386 const size_t start_index = out->size(); in Flatten() local
401 header->stringsStart = before_strings_index - start_index; in Flatten()
418 header->stylesStart = util::HostToDevice32(before_styles_index - start_index); in Flatten()
448 header->header.size = util::HostToDevice32(out->size() - start_index); in Flatten()