Lines Matching refs:allCalendars

506         sal_Unicode **allCalendars = NULL;  in getAllCalendars()  local
511 allCalendars = func(calendarsCount); in getAllCalendars()
517 Sequence< CalendarItem > days(allCalendars[0][i]); in getAllCalendars()
518 Sequence< CalendarItem > months(allCalendars[1][i]); in getAllCalendars()
519 Sequence< CalendarItem > eras(allCalendars[2][i]); in getAllCalendars()
520 OUString calendarID(allCalendars[offset]); in getAllCalendars()
522 … sal_Bool defaultCalendar = sal::static_int_cast<sal_Bool>( allCalendars[offset][0] ); in getAllCalendars()
524 if (OUString(allCalendars[offset]).equalsAscii("ref")) { in getAllCalendars()
525 …days = getCalendarItemByName(OUString(allCalendars[offset+1]), rLocale, calendarsSeq, i, REF_DAYS); in getAllCalendars()
528 for(j = 0; j < allCalendars[0][i]; j++) { in getAllCalendars()
529 CalendarItem day(allCalendars[offset], in getAllCalendars()
530 allCalendars[offset+1], allCalendars[offset+2]); in getAllCalendars()
535 if (OUString(allCalendars[offset]).equalsAscii("ref")) { in getAllCalendars()
536 …months = getCalendarItemByName(OUString(allCalendars[offset+1]), rLocale, calendarsSeq, i, REF_MON… in getAllCalendars()
539 for(j = 0; j < allCalendars[1][i]; j++) { in getAllCalendars()
540 CalendarItem month(allCalendars[offset], in getAllCalendars()
541 allCalendars[offset+1], allCalendars[offset+2]); in getAllCalendars()
546 if (OUString(allCalendars[offset]).equalsAscii("ref")) { in getAllCalendars()
547 …eras = getCalendarItemByName(OUString(allCalendars[offset+1]), rLocale, calendarsSeq, i, REF_ERAS); in getAllCalendars()
550 for(j = 0; j < allCalendars[2][i]; j++) { in getAllCalendars()
551 CalendarItem era(allCalendars[offset], in getAllCalendars()
552 allCalendars[offset+1], allCalendars[offset+2]); in getAllCalendars()
557 OUString startOfWeekDay(allCalendars[offset]); in getAllCalendars()
559 sal_Int16 minimalDaysInFirstWeek = allCalendars[offset][0]; in getAllCalendars()