Searched refs:DotPos (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Linker/
H A DIRMover.cpp733 size_t DotPos = Name.rfind('.'); local
734 return (DotPos == 0 || DotPos == StringRef::npos || Name.back() == '.' ||
735 !isdigit(static_cast<unsigned char>(Name[DotPos + 1])))
737 : Name.substr(0, DotPos);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp564 std::string::size_type DotPos = Filename.rfind('.'); local
566 if (DotPos == std::string::npos) {
571 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
H A DRewriteModernObjC.cpp628 std::string::size_type DotPos = Filename.rfind('.'); local
630 if (DotPos == std::string::npos) {
635 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());

Completed in 212 milliseconds