Home
last modified time | relevance | path

Searched refs:UPPER_CAMEL (Results 1 – 9 of 9) sorted by relevance

/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
DCaseFormatTest.java22 import static com.google.common.base.CaseFormat.UPPER_CAMEL;
64 assertEquals("Foo", LOWER_HYPHEN.to(UPPER_CAMEL, "foo")); in testLowerHyphenToUpperCamel()
65 assertEquals("FooBar", LOWER_HYPHEN.to(UPPER_CAMEL, "foo-bar")); in testLowerHyphenToUpperCamel()
89 assertEquals("Foo", LOWER_UNDERSCORE.to(UPPER_CAMEL, "foo")); in testLowerUnderscoreToUpperCamel()
90 assertEquals("FooBar", LOWER_UNDERSCORE.to(UPPER_CAMEL, "foo_bar")); in testLowerUnderscoreToUpperCamel()
116 assertEquals("Foo", LOWER_CAMEL.to(UPPER_CAMEL, "foo")); in testLowerCamelToUpperCamel()
117 assertEquals("FooBar", LOWER_CAMEL.to(UPPER_CAMEL, "fooBar")); in testLowerCamelToUpperCamel()
118 assertEquals("HTTP", LOWER_CAMEL.to(UPPER_CAMEL, "hTTP")); in testLowerCamelToUpperCamel()
127 assertEquals("foo", UPPER_CAMEL.to(LOWER_HYPHEN, "Foo")); in testUpperCamelToLowerHyphen()
128 assertEquals("foo-bar", UPPER_CAMEL.to(LOWER_HYPHEN, "FooBar")); in testUpperCamelToLowerHyphen()
[all …]
/external/guava/guava-tests/test/com/google/common/base/
DCaseFormatTest.java22 import static com.google.common.base.CaseFormat.UPPER_CAMEL;
75 assertEquals("Foo", LOWER_HYPHEN.to(UPPER_CAMEL, "foo")); in testLowerHyphenToUpperCamel()
76 assertEquals("FooBar", LOWER_HYPHEN.to(UPPER_CAMEL, "foo-bar")); in testLowerHyphenToUpperCamel()
100 assertEquals("Foo", LOWER_UNDERSCORE.to(UPPER_CAMEL, "foo")); in testLowerUnderscoreToUpperCamel()
101 assertEquals("FooBar", LOWER_UNDERSCORE.to(UPPER_CAMEL, "foo_bar")); in testLowerUnderscoreToUpperCamel()
127 assertEquals("Foo", LOWER_CAMEL.to(UPPER_CAMEL, "foo")); in testLowerCamelToUpperCamel()
128 assertEquals("FooBar", LOWER_CAMEL.to(UPPER_CAMEL, "fooBar")); in testLowerCamelToUpperCamel()
129 assertEquals("HTTP", LOWER_CAMEL.to(UPPER_CAMEL, "hTTP")); in testLowerCamelToUpperCamel()
138 assertEquals("foo", UPPER_CAMEL.to(LOWER_HYPHEN, "Foo")); in testUpperCamelToLowerHyphen()
139 assertEquals("foo-bar", UPPER_CAMEL.to(LOWER_HYPHEN, "FooBar")); in testUpperCamelToLowerHyphen()
[all …]
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DKeyVariableNamer.java25 import static com.google.common.base.CaseFormat.UPPER_CAMEL;
64 return UPPER_CAMEL.to(LOWER_CAMEL, builder.toString()); in apply()
DSourceFiles.java40 import static com.google.common.base.CaseFormat.UPPER_CAMEL;
160 CaseFormat.LOWER_CAMEL.to(UPPER_CAMEL, namesIterator.next())); in generateBindingFieldsForDependencies()
299 UPPER_CAMEL, ((ExecutableElement) binding.bindingElement()).getSimpleName().toString()); in factoryPrefix()
DFrameworkField.java116 CaseFormat.UPPER_CAMEL.to( in createForResolvedBindings()
143 return CaseFormat.UPPER_CAMEL.to(
DSubcomponentWriter.java173 CaseFormat.UPPER_CAMEL.to(LOWER_CAMEL, moduleTypeElement.getSimpleName().toString()); in writeSubcomponentWithoutBuilder()
196 CaseFormat.UPPER_CAMEL.to(LOWER_CAMEL, moduleType.getSimpleName().toString()); in writeSubcomponentWithoutBuilder()
DMembersInjectorGenerator.java311 CaseFormat.UPPER_CAMEL, injectionSiteElement.getSimpleName().toString());
DAbstractComponentWriter.java84 import static com.google.common.base.CaseFormat.UPPER_CAMEL;
1149 return UPPER_CAMEL.to(LOWER_CAMEL, typeElement.getSimpleName().toString()); in simpleVariableName()
/external/guava/guava/src/com/google/common/base/
DCaseFormat.java85 UPPER_CAMEL(CharMatcher.inRange('A', 'Z'), "") { enumConstant