Home
last modified time | relevance | path

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

/aosp12/frameworks/base/tools/orientationplot/
H A Dorientationplot.py393 prefix_index = line.find(prefix)
394 if prefix_index == -1:
396 start_index = prefix_index + len(prefix)
412 prefix_index = line.find(prefix + '[')
413 if prefix_index == -1:
415 start_index = prefix_index + len(prefix) + 1
/aosp12/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py245 prefix_index = line.find(prefix)
246 if prefix_index == -1:
248 start_index = prefix_index + len(prefix)
/aosp12/art/tools/dexanalyze/
H A Ddexanalyze_strings.cc51 ALWAYS_INLINE void GetOffset(uint32_t prefix_index, uint32_t* offset, uint32_t* length) const { in GetOffset() argument
52 CHECK_LT(prefix_index, offsets_.size()); in GetOffset()
53 const uint32_t data = offsets_[prefix_index]; in GetOffset()