Searched refs:standalone (Results 1 - 6 of 6) sorted by relevance

/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlSerializer.java106 * and standalone flag (if standalone not null)
109 void startDocument (String encoding, Boolean standalone) argument
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java372 public void startDocument(String encoding, Boolean standalone) throws IOException { argument
388 if (standalone != null) {
389 append("standalone='");
390 append(standalone.booleanValue() ? "yes" : "no");
H A DKXmlParser.java44 = "http://xmlpull.org/v1/doc/properties.html#xmldecl-standalone";
92 private Boolean standalone; field in class:KXmlParser
541 if (pos < attributeCount && "standalone".equals(attributes[4 * pos + 2])) {
544 standalone = Boolean.TRUE;
546 standalone = Boolean.FALSE;
548 checkRelaxed("illegal standalone value: " + st);
1616 standalone = null;
1797 return standalone;
/libcore/ojluni/src/main/java/java/text/
H A DSimpleDateFormat.java1217 false /* standalone */);
1224 true /* standalone */);
1241 current = formatWeekday(count, value, useDateFormatSymbols, false /* standalone */);
1247 current = formatWeekday(count, value, useDateFormatSymbols, true /* standalone */);
1387 boolean standalone) {
1391 weekdays = standalone ? formatData.getStandAloneWeekdays() : formatData.getWeekdays();
1394 standalone ? formatData.getTinyStandAloneWeekdays() : formatData.getTinyWeekdays();
1397 weekdays = standalone ? formatData.getShortStandAloneWeekdays() : formatData.getShortWeekdays();
1407 boolean useDateFormatSymbols, boolean standalone) {
1412 months = standalone
1386 formatWeekday(int count, int value, boolean useDateFormatSymbols, boolean standalone) argument
1406 formatMonth(int count, int value, int maxIntCount, StringBuffer buffer, boolean useDateFormatSymbols, boolean standalone) argument
2392 parseMonth(String text, int count, int value, int start, int field, ParsePosition pos, boolean useDateFormatSymbols, boolean standalone, CalendarBuilder out) argument
2435 parseWeekday(String text, int start, int field, boolean useDateFormatSymbols, boolean standalone, CalendarBuilder out) argument
[all...]
/libcore/luni/src/test/java/libcore/xml/
H A DXmlPullParserFactoryTest.java161 public void startDocument(String encoding, Boolean standalone) throws IOException { argument
/libcore/ojluni/src/main/java/java/time/format/
H A DDateTimeFormatterBuilder.java1711 boolean standalone = false;
1730 standalone = true;
1752 appendText(field, standalone ? TextStyle.SHORT_STANDALONE : TextStyle.SHORT);
1755 appendText(field, standalone ? TextStyle.FULL_STANDALONE : TextStyle.FULL);
1758 appendText(field, standalone ? TextStyle.NARROW_STANDALONE : TextStyle.NARROW);

Completed in 158 milliseconds