Home
last modified time | relevance | path

Searched refs:selector_start (Results 1 – 2 of 2) sorted by relevance

/external/perfetto/src/trace_processor/containers/
Drow_map.cc26 uint32_t selector_start, in SelectRangeWithRange() argument
29 PERFETTO_DCHECK(selector_start <= selector_end); in SelectRangeWithRange()
32 return RowMap(start + selector_start, start + selector_end); in SelectRangeWithRange()
75 uint32_t selector_start, in SelectBvWithRange() argument
77 PERFETTO_DCHECK(selector_start <= selector_end); in SelectBvWithRange()
83 if (set_idx < selector_start || set_idx >= selector_end) in SelectBvWithRange()
106 uint32_t selector_start, in SelectIvWithRange() argument
108 PERFETTO_DCHECK(selector_start <= selector_end); in SelectIvWithRange()
111 std::vector<uint32_t> ret(selector_end - selector_start); in SelectIvWithRange()
112 for (uint32_t i = selector_start; i < selector_end; ++i) { in SelectIvWithRange()
[all …]
/external/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.cpp7870 const char *selector_start = ::strchr(name, ' '); in AddMethodToObjCObjectType() local
7871 if (selector_start == nullptr) in AddMethodToObjCObjectType()
7874 selector_start++; in AddMethodToObjCObjectType()
7881 for (start = selector_start; start && *start != '\0' && *start != ']'; in AddMethodToObjCObjectType()