OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PATTERN_CHARS
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/main/java/java/text/
SimpleDateFormat.java
206
static final String
PATTERN_CHARS
= "GyMdkHmsSEDFwWahKzZLc";
208
// The index of 'Z' in the
PATTERN_CHARS
string. This pattern character is supported by the RI,
212
// The index of 'L' (cf. 'M') in the
PATTERN_CHARS
string. This is an ICU-compatible extension
215
// The index of 'c' (cf. 'E') in the
PATTERN_CHARS
string. This is an ICU-compatible extension
266
int index =
PATTERN_CHARS
.indexOf(format);
392
pattern = convertPattern(template, formatData.getLocalPatternChars(),
PATTERN_CHARS
, true);
587
int index =
PATTERN_CHARS
.indexOf(format);
[
all
...]
DateFormatSymbols.java
108
this.localPatternChars = SimpleDateFormat.
PATTERN_CHARS
;
/external/icu4c/test/intltest/
dtfmttst.cpp
302
static const char*
PATTERN_CHARS
= "GyMdkHmsSEDFwWahKzYeugAZvcLQqV";
361
assertEquals("patternChars",
PATTERN_CHARS
, rootSyms.getLocalPatternChars(buf));
362
assertEquals("patternChars",
PATTERN_CHARS
, DateFormatSymbols::getPatternUChars());
364
assertTrue("Data", UDAT_FIELD_COUNT == uprv_strlen(
PATTERN_CHARS
));
372
buf.remove().append(
PATTERN_CHARS
);
[
all
...]
Completed in 691 milliseconds