Searched refs:CaseFormat (Results 1 - 8 of 8) sorted by relevance
/third_party/vk-gl-cts/modules/gles3/scripts/ |
H A D | gen-qualification_order.py | 187 CaseFormat = namedtuple('CaseFormat', 'name vars') variable 189 DECL_INVARIANT = CaseFormat("invariant", [ "invariant", "", "" ]) 190 DECL_INTERPOLATION = CaseFormat("interp", [ "smooth", "flat", "" ]) 191 DECL_STORAGE = CaseFormat("storage", [ "centroid", "anon_centroid", "uniform" ]) 192 DECL_PRECISION = CaseFormat("precision", [ "lowp", "mediump", "highp" ]) 194 PARAM_STORAGE = CaseFormat("storage", [ "const", "", ""]) 195 PARAM_PARAMETER = CaseFormat("parameter", [ "in", "out", "inout" ]) 196 PARAM_PRECISION = CaseFormat("precision", [ "lowp", "mediump", "highp" ])
|
/third_party/vk-gl-cts/modules/gles2/scripts/ |
H A D | gen-qualification_order.py | 172 CaseFormat = namedtuple('CaseFormat', 'name vars') variable 174 DECL_INVARIANT = CaseFormat("invariant", ["invariant", "", ""]) 175 DECL_STORAGE = CaseFormat("storage", ["varying", "uniform", "attribute"]) 176 DECL_PRECISION = CaseFormat("precision", ["lowp", "mediump", "mediump"]) 178 PARAM_STORAGE = CaseFormat("storage", [ "const", "", ""]) 179 PARAM_PARAMETER = CaseFormat("parameter", [ "in", "out", "inout" ]) 180 PARAM_PRECISION = CaseFormat("precision", [ "lowp", "mediump", "mediump" ])
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | Column.java | 25 import com.google.common.base.CaseFormat; 103 name = CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.UPPER_UNDERSCORE, name); in toEnumName() 105 name = CaseFormat.LOWER_CAMEL.to(CaseFormat.UPPER_UNDERSCORE, name); in toEnumName()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ant/ |
H A D | ConvertIcuDataTask.java | 43 import com.google.common.base.CaseFormat; 388 CaseFormat format; in resolve() 390 format = CaseFormat.UPPER_UNDERSCORE; in resolve() 392 format = CaseFormat.LOWER_UNDERSCORE; in resolve() 398 Ascii.isLowerCase(name.charAt(0)) ? CaseFormat.LOWER_CAMEL : CaseFormat.UPPER_CAMEL; in resolve() 401 return Enum.valueOf(enumClass, format.to(CaseFormat.UPPER_UNDERSCORE, name)); in resolve()
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
H A D | FieldMaskUtil.java | 35 import com.google.common.base.CaseFormat; 182 paths.add(CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, path)); in toJsonString() 198 builder.addPaths(CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, path)); in fromJsonString()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
H A D | RbnfMapperTest.java | 25 import com.google.common.base.CaseFormat; 46 return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name()); in toString()
|
H A D | BreakIteratorMapperTest.java | 24 import com.google.common.base.CaseFormat; 32 return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name()); in toString()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/ |
H A D | Types.java | 18 import static com.google.common.base.CaseFormat.LOWER_CAMEL; 19 import static com.google.common.base.CaseFormat.UPPER_UNDERSCORE;
|
Completed in 4 milliseconds