HomeSort by relevance Sort by last modified time
    Searched refs:DotPos (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Linker/
IRMover.cpp 801 size_t DotPos = ST->getName().rfind('.');
802 if (DotPos == 0 || DotPos == StringRef::npos ||
804 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos + 1])))
808 StructType *DST = DstM.getTypeByName(ST->getName().substr(0, DotPos));
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 565 std::string::size_type DotPos = Filename.rfind('.');
567 if (DotPos == std::string::npos) {
572 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
    [all...]
RewriteModernObjC.cpp 634 std::string::size_type DotPos = Filename.rfind('.');
636 if (DotPos == std::string::npos) {
641 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
    [all...]

Completed in 353 milliseconds