Searched refs:compiledPattern (Results 1 – 1 of 1) sorted by relevance
542 private transient char[] compiledPattern; field in SimpleDateFormat735 compiledPattern = compile(pattern); in initialize()1094 for (int i = 0; i < compiledPattern.length; ) { in format()1095 int tag = compiledPattern[i] >>> 8; in format()1096 int count = compiledPattern[i++] & 0xff; in format()1098 count = compiledPattern[i++] << 16; in format()1099 count |= compiledPattern[i++]; in format()1108 toAppendTo.append(compiledPattern, i, count); in format()1774 for (int i = 0; i < compiledPattern.length; ) { in parseInternal()1775 int tag = compiledPattern[i] >>> 8; in parseInternal()[all …]