Searched refs:lastDot (Results 1 – 6 of 6) sorted by relevance
250 int lastDot = path.lastIndexOf('.'); in getFileTitle() local251 if (lastDot > 0) { in getFileTitle()252 path = path.substring(0, lastDot); in getFileTitle()261 int lastDot = path.lastIndexOf('.'); in getFileExtension() local262 if (lastDot >= 0) { in getFileExtension()263 return path.substring(lastDot + 1); in getFileExtension()
1907 int lastDot = path.lastIndexOf('.');1908 name = (lastDot < 0 ? path.substring(lastSlash + 1)1909 : path.substring(lastSlash + 1, lastDot));
42 size_t lastDot = name.rfind('.', firstSlash); in isVintfDeclared() local43 if (firstSlash == std::string::npos || lastDot == std::string::npos) { in isVintfDeclared()48 const std::string package = name.substr(0, lastDot); in isVintfDeclared()49 const std::string iface = name.substr(lastDot+1, firstSlash-lastDot-1); in isVintfDeclared()
1131 final int lastDot = displayName.lastIndexOf('.'); in buildUniqueFile() local1132 if (lastDot >= 0) { in buildUniqueFile()1133 name = displayName.substring(0, lastDot); in buildUniqueFile()1134 ext = displayName.substring(lastDot + 1); in buildUniqueFile()1162 final int lastDot = displayName.lastIndexOf('.'); in splitFileName() local1163 if (lastDot >= 0) { in splitFileName()1164 name = displayName.substring(0, lastDot); in splitFileName()1165 ext = displayName.substring(lastDot + 1); in splitFileName()
454 final int lastDot = documentId.lastIndexOf('.'); in getDocumentType() local455 if (lastDot >= 0) { in getDocumentType()456 final String extension = documentId.substring(lastDot + 1).toLowerCase(); in getDocumentType()
114 final int lastDot = name.lastIndexOf('.'); in deriveCodePathName() local115 return name.substring(0, lastDot); in deriveCodePathName()