Home
last modified time | relevance | path

Searched refs:camelCaseToUnderlines (Results 1 – 5 of 5) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/
DAdtUtilsTest.java58 assertEquals("", AdtUtils.camelCaseToUnderlines("")); in testCamelCaseToUnderlines()
59 assertEquals("foo", AdtUtils.camelCaseToUnderlines("foo")); in testCamelCaseToUnderlines()
60 assertEquals("foo", AdtUtils.camelCaseToUnderlines("Foo")); in testCamelCaseToUnderlines()
61 assertEquals("foo_bar", AdtUtils.camelCaseToUnderlines("FooBar")); in testCamelCaseToUnderlines()
62 assertEquals("test_xml", AdtUtils.camelCaseToUnderlines("testXML")); in testCamelCaseToUnderlines()
63 assertEquals("test_foo", AdtUtils.camelCaseToUnderlines("testFoo")); in testCamelCaseToUnderlines()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DFmCamelCaseToUnderscoreMethod.java36 return new SimpleScalar(AdtUtils.camelCaseToUnderlines(args.get(0).toString())); in exec()
DFmActivityToLayoutMethod.java60 String name = LAYOUT_NAME_PREFIX + AdtUtils.camelCaseToUnderlines(activityName); in exec()
DFmClassNameToResourceMethod.java51 return new SimpleScalar(AdtUtils.camelCaseToUnderlines(name)); in exec()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
DAdtUtils.java221 public static String camelCaseToUnderlines(String string) { in camelCaseToUnderlines() method in AdtUtils