OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stripAllExtensions
(Results
1 - 4
of
4
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/
AdtUtilsTest.java
32
assertEquals("", AdtUtils.
stripAllExtensions
(""));
33
assertEquals("foobar", AdtUtils.
stripAllExtensions
("foobar"));
34
assertEquals("foobar", AdtUtils.
stripAllExtensions
("foobar.png"));
35
assertEquals("foobar", AdtUtils.
stripAllExtensions
("foobar.9.png"));
36
assertEquals(".profile", AdtUtils.
stripAllExtensions
(".profile"));
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceParticipant.java
214
mOldName = AdtUtils.
stripAllExtensions
(file.getName());
215
mNewName = AdtUtils.
stripAllExtensions
(getArguments().getNewName());
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceChooser.java
485
String newName = AdtUtils.
stripAllExtensions
(files.get(0).getName());
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java
173
public static String
stripAllExtensions
(String filename) {
[
all
...]
Completed in 84 milliseconds