Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp112 size_t spacePos = apiName.find(' '); in RetrieveReportData() local
113 if (spacePos != std::string::npos) { in RetrieveReportData()
114 className = apiName.substr(2, spacePos - 2); in RetrieveReportData()
115 selector = apiName.substr(spacePos + 1, apiName.length() - spacePos - 2); in RetrieveReportData()