Home
last modified time | relevance | path

Searched refs:stripAllExtensions (Results 1 – 4 of 4) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/
DAdtUtilsTest.java32 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()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
DRenameResourceParticipant.java214 mOldName = AdtUtils.stripAllExtensions(file.getName()); in initialize()
215 mNewName = AdtUtils.stripAllExtensions(getArguments().getNewName()); in initialize()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
DResourceChooser.java485 String newName = AdtUtils.stripAllExtensions(files.get(0).getName()); in createNewResButtons()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
DAdtUtils.java172 public static String stripAllExtensions(String filename) { in stripAllExtensions() method in AdtUtils