OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stripSuffix
(Results
1 - 7
of
7
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
FmClassNameToResourceMethod.java
46
name =
stripSuffix
(name, ACTIVITY_NAME_SUFFIX);
47
name =
stripSuffix
(name, "Fragment"); //$NON-NLS-1$
48
name =
stripSuffix
(name, "Service"); //$NON-NLS-1$
49
name =
stripSuffix
(name, "Provider"); //$NON-NLS-1$
57
private static String
stripSuffix
(String name, String suffix) {
TemplateHandler.java
571
toPath = AdtUtils.
stripSuffix
(toPath, DOT_FTL);
584
toPath = AdtUtils.
stripSuffix
(toPath, DOT_FTL);
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/
AdtUtilsTest.java
76
assertEquals("Foo", AdtUtils.
stripSuffix
("Foo", ""));
77
assertEquals("Fo", AdtUtils.
stripSuffix
("Foo", "o"));
78
assertEquals("F", AdtUtils.
stripSuffix
("Fo", "o"));
79
assertEquals("", AdtUtils.
stripSuffix
("Foo", "Foo"));
81
AdtUtils.
stripSuffix
("LinearLayout_LayoutParams", "Params"));
82
assertEquals("Foo", AdtUtils.
stripSuffix
("Foo", "Bar"));
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java
214
xmlName = AdtUtils.
stripSuffix
(xmlName, "Params"); //$NON-NLS-1$
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
StringUtil.java
632
public static String
stripSuffix
(String str, String suffix) {
639
* Case insensitive version of
stripSuffix
. Strings are compared in
[
all
...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java
633
public static String
stripSuffix
(String str, String suffix) {
640
* Case insensitive version of
stripSuffix
. Strings are compared in
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java
190
public static String
stripSuffix
(@NonNull String string, @NonNull String suffix) {
[
all
...]
Completed in 228 milliseconds