Home
last modified time | relevance | path

Searched refs:end_index (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/libeffects/loudness/dsp/core/
Dbasic-inl.h30 int end_index) { in SearchIndex() argument
32 int end = end_index; in SearchIndex()
Dbasic.h40 int end_index);
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dstrutil.cc199 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local
202 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorUsing()
203 if (end_index == string::npos) { in SplitStringToIteratorUsing()
207 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing()
208 begin_index = full.find_first_not_of(delim, end_index); in SplitStringToIteratorUsing()
236 string::size_type begin_index, end_index; in SplitStringToIteratorAllowEmpty() local
240 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorAllowEmpty()
241 if (end_index == string::npos) { in SplitStringToIteratorAllowEmpty()
245 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorAllowEmpty()
246 begin_index = end_index + 1; in SplitStringToIteratorAllowEmpty()
/frameworks/base/tools/aapt2/configuration/
DConfigurationParser.cpp356 size_t end_index = apk_name.to_string().rfind(ext.to_string()); in ToBaseName() local
358 (end_index != std::string::npos) ? std::string{apk_name.begin(), end_index} : ""; in ToBaseName()