Lines Matching refs:allCalendars

508         sal_Unicode **allCalendars = NULL;  in getAllCalendars()  local
513 allCalendars = func(calendarsCount); in getAllCalendars()
519 Sequence< CalendarItem > days(allCalendars[0][i]); in getAllCalendars()
520 Sequence< CalendarItem > months(allCalendars[1][i]); in getAllCalendars()
521 Sequence< CalendarItem > eras(allCalendars[2][i]); in getAllCalendars()
522 OUString calendarID(allCalendars[offset]); in getAllCalendars()
524 … sal_Bool defaultCalendar = sal::static_int_cast<sal_Bool>( allCalendars[offset][0] ); in getAllCalendars()
526 if (OUString(allCalendars[offset]).equalsAscii("ref")) { in getAllCalendars()
527 …days = getCalendarItemByName(OUString(allCalendars[offset+1]), rLocale, calendarsSeq, i, REF_DAYS); in getAllCalendars()
530 for(j = 0; j < allCalendars[0][i]; j++) { in getAllCalendars()
531 CalendarItem day(allCalendars[offset], in getAllCalendars()
532 allCalendars[offset+1], allCalendars[offset+2]); in getAllCalendars()
537 if (OUString(allCalendars[offset]).equalsAscii("ref")) { in getAllCalendars()
538 …months = getCalendarItemByName(OUString(allCalendars[offset+1]), rLocale, calendarsSeq, i, REF_MON… in getAllCalendars()
541 for(j = 0; j < allCalendars[1][i]; j++) { in getAllCalendars()
542 CalendarItem month(allCalendars[offset], in getAllCalendars()
543 allCalendars[offset+1], allCalendars[offset+2]); in getAllCalendars()
548 if (OUString(allCalendars[offset]).equalsAscii("ref")) { in getAllCalendars()
549 …eras = getCalendarItemByName(OUString(allCalendars[offset+1]), rLocale, calendarsSeq, i, REF_ERAS); in getAllCalendars()
552 for(j = 0; j < allCalendars[2][i]; j++) { in getAllCalendars()
553 CalendarItem era(allCalendars[offset], in getAllCalendars()
554 allCalendars[offset+1], allCalendars[offset+2]); in getAllCalendars()
559 OUString startOfWeekDay(allCalendars[offset]); in getAllCalendars()
561 sal_Int16 minimalDaysInFirstWeek = allCalendars[offset][0]; in getAllCalendars()