Home | History | Annotate | Download | only in format

Lines Matching refs:active

166      * The currently active builder, used by the outermost builder.
168 private DateTimeFormatterBuilder active = this;
435 * If adjacent parsing is active, then parsing must match exactly the specified
617 * If a PrinterParser is not active then the new PrinterParser becomes
618 * the active PrinterParser.
619 * Otherwise, the active PrinterParser is modified depending on the new PrinterParser.
621 * then its width is added to the active PP and
623 * If the new PrinterParser is variable width, the active PrinterParser is changed
624 * to be fixed width and the new PrinterParser becomes the active PP.
630 if (active.valueParserIndex >= 0) {
631 final int activeValueParser = active.valueParserIndex;
634 NumberPrinterParser basePP = (NumberPrinterParser) active.printerParsers.get(activeValueParser);
636 // Append the width to the subsequentWidth of the active parser
640 // Retain the previous active parser
641 active.valueParserIndex = activeValueParser;
643 // Modify the active parser to be fixed width
645 // The new parser becomes the mew active parser
646 active.valueParserIndex = appendInternal(pp);
649 active.printerParsers.set(activeValueParser, basePP);
651 // The new Parser becomes the active parser
652 active.valueParserIndex = appendInternal(pp);
1696 if (active.parent == null) {
1922 active.padNextWidth = padWidth;
1923 active.padNextChar = padChar;
1924 active.valueParserIndex = -1;
1950 active.valueParserIndex = -1;
1951 active = new DateTimeFormatterBuilder(active, true);
1981 if (active.parent == null) {
1984 if (active.printerParsers.size() > 0) {
1985 CompositePrinterParser cpp = new CompositePrinterParser(active.printerParsers, active.optional);
1986 active = active.parent;
1989 active = active.parent;
1999 * @return the index into the active parsers list
2003 if (active.padNextWidth > 0) {
2005 pp = new PadPrinterParserDecorator(pp, active.padNextWidth, active.padNextChar);
2007 active.padNextWidth = 0;
2008 active.padNextChar = 0;
2010 active.printerParsers.add(pp);
2011 active.valueParserIndex = -1;
2012 return active.printerParsers.size() - 1;
2077 while (active.parent != null) {
2510 * -1 if fixed width due to active adjacent parsing