Lines Matching refs:se

81 func (se *se_SE) Locale() string {
82 return se.locale
86 func (se *se_SE) PluralsCardinal() []locales.PluralRule {
87 return se.pluralsCardinal
91 func (se *se_SE) PluralsOrdinal() []locales.PluralRule {
92 return se.pluralsOrdinal
96 func (se *se_SE) PluralsRange() []locales.PluralRule {
97 return se.pluralsRange
101 func (se *se_SE) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
115 func (se *se_SE) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
120 func (se *se_SE) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRu…
125 func (se *se_SE) MonthAbbreviated(month time.Month) string {
126 return se.monthsAbbreviated[month]
130 func (se *se_SE) MonthsAbbreviated() []string {
131 return se.monthsAbbreviated[1:]
135 func (se *se_SE) MonthNarrow(month time.Month) string {
136 return se.monthsNarrow[month]
140 func (se *se_SE) MonthsNarrow() []string {
141 return se.monthsNarrow[1:]
145 func (se *se_SE) MonthWide(month time.Month) string {
146 return se.monthsWide[month]
150 func (se *se_SE) MonthsWide() []string {
151 return se.monthsWide[1:]
155 func (se *se_SE) WeekdayAbbreviated(weekday time.Weekday) string {
156 return se.daysAbbreviated[weekday]
160 func (se *se_SE) WeekdaysAbbreviated() []string {
161 return se.daysAbbreviated
165 func (se *se_SE) WeekdayNarrow(weekday time.Weekday) string {
166 return se.daysNarrow[weekday]
170 func (se *se_SE) WeekdaysNarrow() []string {
171 return se.daysNarrow
175 func (se *se_SE) WeekdayShort(weekday time.Weekday) string {
176 return se.daysShort[weekday]
180 func (se *se_SE) WeekdaysShort() []string {
181 return se.daysShort
185 func (se *se_SE) WeekdayWide(weekday time.Weekday) string {
186 return se.daysWide[weekday]
190 func (se *se_SE) WeekdaysWide() []string {
191 return se.daysWide
195 func (se *se_SE) Decimal() string {
196 return se.decimal
200 func (se *se_SE) Group() string {
201 return se.group
205 func (se *se_SE) Minus() string {
206 return se.minus
210 func (se *se_SE) FmtNumber(num float64, v uint64) string {
221 b = append(b, se.decimal[0])
228 for j := len(se.group) - 1; j >= 0; j-- {
229 b = append(b, se.group[j])
241 for j := len(se.minus) - 1; j >= 0; j-- {
242 b = append(b, se.minus[j])
256 func (se *se_SE) FmtPercent(num float64, v uint64) string {
264 b = append(b, se.decimal[0])
272 for j := len(se.minus) - 1; j >= 0; j-- {
273 b = append(b, se.minus[j])
282 b = append(b, se.percentSuffix...)
284 b = append(b, se.percent...)
290 func (se *se_SE) FmtCurrency(num float64, v uint64, currency currency.Type) string {
293 symbol := se.currencies[currency]
302 b = append(b, se.decimal[0])
309 for j := len(se.group) - 1; j >= 0; j-- {
310 b = append(b, se.group[j])
322 for j := len(se.minus) - 1; j >= 0; j-- {
323 b = append(b, se.minus[j])
335 b = append(b, se.decimal...)
343 b = append(b, se.currencyPositiveSuffix...)
352 func (se *se_SE) FmtAccounting(num float64, v uint64, currency currency.Type) string {
355 symbol := se.currencies[currency]
364 b = append(b, se.decimal[0])
371 for j := len(se.group) - 1; j >= 0; j-- {
372 b = append(b, se.group[j])
385 for j := len(se.minus) - 1; j >= 0; j-- {
386 b = append(b, se.minus[j])
399 b = append(b, se.decimal...)
408 b = append(b, se.currencyNegativeSuffix...)
412 b = append(b, se.currencyPositiveSuffix...)
420 func (se *se_SE) FmtDateShort(t time.Time) string {
450 func (se *se_SE) FmtDateMedium(t time.Time) string {
461 b = append(b, se.monthsAbbreviated[t.Month()]...)
469 func (se *se_SE) FmtDateLong(t time.Time) string {
480 b = append(b, se.monthsWide[t.Month()]...)
488 func (se *se_SE) FmtDateFull(t time.Time) string {
499 b = append(b, se.monthsWide[t.Month()]...)
503 b = append(b, se.daysWide[t.Weekday()]...)
509 func (se *se_SE) FmtTimeShort(t time.Time) string {
518 b = append(b, se.timeSeparator...)
530 func (se *se_SE) FmtTimeMedium(t time.Time) string {
539 b = append(b, se.timeSeparator...)
546 b = append(b, se.timeSeparator...)
558 func (se *se_SE) FmtTimeLong(t time.Time) string {
567 b = append(b, se.timeSeparator...)
574 b = append(b, se.timeSeparator...)
590 func (se *se_SE) FmtTimeFull(t time.Time) string {
599 b = append(b, se.timeSeparator...)
606 b = append(b, se.timeSeparator...)
617 if btz, ok := se.timezones[tz]; ok {