HomeSort by: relevance | last modified time | path
    Searched defs:ColonPos (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Format/
ContinuationIndenter.h 248 unsigned ColonPos = 0;
375 if (ColonPos != Other.ColonPos)
376 return ColonPos < Other.ColonPos;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp 562 size_t ColonPos = ModuleName.find_last_of(':');
564 if (ColonPos != std::string::npos) {
565 std::string ArchStr = ModuleName.substr(ColonPos + 1);
567 BinaryName = ModuleName.substr(0, ColonPos);
  /src/external/apache2/llvm/dist/llvm/tools/sancov/
sancov.cpp 417 size_t ColonPos = Loc.find(':');
418 failIf(ColonPos == std::string::npos, "expected ':': " + InputFile);
420 auto LineStr = Loc.substr(0, ColonPos);
421 auto ColStr = Loc.substr(ColonPos + 1, Loc.size());

Completed in 26 milliseconds