Searched refs:compiledPattern (Results 1 – 1 of 1) sorted by relevance
525 transient private char[] compiledPattern; field in SimpleDateFormat718 compiledPattern = compile(pattern); in initialize()1065 for (int i = 0; i < compiledPattern.length; ) { in format()1066 int tag = compiledPattern[i] >>> 8; in format()1067 int count = compiledPattern[i++] & 0xff; in format()1069 count = compiledPattern[i++] << 16; in format()1070 count |= compiledPattern[i++]; in format()1079 toAppendTo.append(compiledPattern, i, count); in format()1745 for (int i = 0; i < compiledPattern.length; ) { in parseInternal()1746 int tag = compiledPattern[i] >>> 8; in parseInternal()[all …]