Searched refs:camelCaseToUnderlines (Results 1 – 5 of 5) sorted by relevance
58 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()
36 return new SimpleScalar(AdtUtils.camelCaseToUnderlines(args.get(0).toString())); in exec()
60 String name = LAYOUT_NAME_PREFIX + AdtUtils.camelCaseToUnderlines(activityName); in exec()
51 return new SimpleScalar(AdtUtils.camelCaseToUnderlines(name)); in exec()
221 public static String camelCaseToUnderlines(String string) { in camelCaseToUnderlines() method in AdtUtils