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

/frameworks/base/core/java/android/text/format/
H A DDateFormat.java527 boolean standalone = (kind == 'c');
529 return standalone ? ld.tinyStandAloneWeekdayNames[day] : ld.tinyWeekdayNames[day];
531 return standalone ? ld.longStandAloneWeekdayNames[day] : ld.longWeekdayNames[day];
533 return standalone ? ld.shortStandAloneWeekdayNames[day] : ld.shortWeekdayNames[day];
538 boolean standalone = (kind == 'L');
540 return standalone ? ld.tinyStandAloneMonthNames[month] : ld.tinyMonthNames[month];
542 return standalone ? ld.longStandAloneMonthNames[month] : ld.longMonthNames[month];
544 return standalone ? ld.shortStandAloneMonthNames[month] : ld.shortMonthNames[month];
/frameworks/base/core/java/com/android/internal/util/
H A DFastXmlSerializer.java345 public void startDocument(String encoding, Boolean standalone) throws IOException, argument
347 append("<?xml version='1.0' encoding='utf-8' standalone='"
348 + (standalone ? "yes" : "no") + "' ?>\n");
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java134 boolean standalone; // certain "batches" don't participate in coalescing field in class:AlarmManagerService.Batch
297 if (standalone) {
363 if (!b.standalone && b.canHold(whenElapsed, maxWhen)) {
401 a.repeatInterval, a.operation, batch.standalone, doValidate, a.workSource);
566 + " interval=" + interval + " standalone=" + isStandalone);
583 batch.standalone = isStandalone;
601 + " standalone=" + isStandalone);
632 // duplicate start times are okay because of standalone batches
1056 alarm.repeatInterval, alarm.operation, batch.standalone, true,

Completed in 107 milliseconds