Searched refs:stripAllExtensions (Results 1 – 4 of 4) sorted by relevance
32 assertEquals("", AdtUtils.stripAllExtensions("")); in testStripAllExtensions()33 assertEquals("foobar", AdtUtils.stripAllExtensions("foobar")); in testStripAllExtensions()34 assertEquals("foobar", AdtUtils.stripAllExtensions("foobar.png")); in testStripAllExtensions()35 assertEquals("foobar", AdtUtils.stripAllExtensions("foobar.9.png")); in testStripAllExtensions()36 assertEquals(".profile", AdtUtils.stripAllExtensions(".profile")); in testStripAllExtensions()
214 mOldName = AdtUtils.stripAllExtensions(file.getName()); in initialize()215 mNewName = AdtUtils.stripAllExtensions(getArguments().getNewName()); in initialize()
485 String newName = AdtUtils.stripAllExtensions(files.get(0).getName()); in createNewResButtons()
172 public static String stripAllExtensions(String filename) { in stripAllExtensions() method in AdtUtils