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

/external/llvm/lib/Linker/
H A DLinkModules.cpp646 size_t DotPos = ST->getName().rfind('.'); local
647 if (DotPos == 0 || DotPos == StringRef::npos ||
649 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos+1])))
653 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp1537 size_t DotPos = LowerReg.find('.'); local
1539 RegNum = MatchRegisterName(LowerReg.substr(0, DotPos));
1541 RegNum = StringSwitch<unsigned>(LowerReg.substr(0, DotPos))
1552 RegEndLoc = SMLoc::getFromPointer(S.getPointer() + DotPos);
1554 if (DotPos == StringRef::npos) {
1563 LayoutLoc = SMLoc::getFromPointer(S.getPointer() + DotPos + 1);
1564 std::string LayoutText = LowerReg.substr(DotPos, StringRef::npos);
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp567 std::string::size_type DotPos = Filename.rfind('.'); local
569 if (DotPos == std::string::npos) {
574 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
H A DRewriteModernObjC.cpp622 std::string::size_type DotPos = Filename.rfind('.'); local
624 if (DotPos == std::string::npos) {
629 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());

Completed in 186 milliseconds