Lines Matching refs:uz

79 func (uz *uz_Latn) Locale() string {
80 return uz.locale
84 func (uz *uz_Latn) PluralsCardinal() []locales.PluralRule {
85 return uz.pluralsCardinal
89 func (uz *uz_Latn) PluralsOrdinal() []locales.PluralRule {
90 return uz.pluralsOrdinal
94 func (uz *uz_Latn) PluralsRange() []locales.PluralRule {
95 return uz.pluralsRange
99 func (uz *uz_Latn) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
111 func (uz *uz_Latn) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
116 func (uz *uz_Latn) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.Plural…
118 start := uz.CardinalPluralRule(num1, v1)
119 end := uz.CardinalPluralRule(num2, v2)
132 func (uz *uz_Latn) MonthAbbreviated(month time.Month) string {
133 return uz.monthsAbbreviated[month]
137 func (uz *uz_Latn) MonthsAbbreviated() []string {
138 return uz.monthsAbbreviated[1:]
142 func (uz *uz_Latn) MonthNarrow(month time.Month) string {
143 return uz.monthsNarrow[month]
147 func (uz *uz_Latn) MonthsNarrow() []string {
148 return uz.monthsNarrow[1:]
152 func (uz *uz_Latn) MonthWide(month time.Month) string {
153 return uz.monthsWide[month]
157 func (uz *uz_Latn) MonthsWide() []string {
158 return uz.monthsWide[1:]
162 func (uz *uz_Latn) WeekdayAbbreviated(weekday time.Weekday) string {
163 return uz.daysAbbreviated[weekday]
167 func (uz *uz_Latn) WeekdaysAbbreviated() []string {
168 return uz.daysAbbreviated
172 func (uz *uz_Latn) WeekdayNarrow(weekday time.Weekday) string {
173 return uz.daysNarrow[weekday]
177 func (uz *uz_Latn) WeekdaysNarrow() []string {
178 return uz.daysNarrow
182 func (uz *uz_Latn) WeekdayShort(weekday time.Weekday) string {
183 return uz.daysShort[weekday]
187 func (uz *uz_Latn) WeekdaysShort() []string {
188 return uz.daysShort
192 func (uz *uz_Latn) WeekdayWide(weekday time.Weekday) string {
193 return uz.daysWide[weekday]
197 func (uz *uz_Latn) WeekdaysWide() []string {
198 return uz.daysWide
202 func (uz *uz_Latn) Decimal() string {
203 return uz.decimal
207 func (uz *uz_Latn) Group() string {
208 return uz.group
212 func (uz *uz_Latn) Minus() string {
213 return uz.minus
217 func (uz *uz_Latn) FmtNumber(num float64, v uint64) string {
228 b = append(b, uz.decimal[0])
235 for j := len(uz.group) - 1; j >= 0; j-- {
236 b = append(b, uz.group[j])
248 b = append(b, uz.minus[0])
261 func (uz *uz_Latn) FmtPercent(num float64, v uint64) string {
269 b = append(b, uz.decimal[0])
277 b = append(b, uz.minus[0])
285 b = append(b, uz.percent...)
291 func (uz *uz_Latn) FmtCurrency(num float64, v uint64, currency currency.Type) string {
294 symbol := uz.currencies[currency]
303 b = append(b, uz.decimal[0])
310 for j := len(uz.group) - 1; j >= 0; j-- {
311 b = append(b, uz.group[j])
323 b = append(b, uz.minus[0])
334 b = append(b, uz.decimal...)
342 b = append(b, uz.currencyPositiveSuffix...)
351 func (uz *uz_Latn) FmtAccounting(num float64, v uint64, currency currency.Type) string {
354 symbol := uz.currencies[currency]
363 b = append(b, uz.decimal[0])
370 for j := len(uz.group) - 1; j >= 0; j-- {
371 b = append(b, uz.group[j])
384 b = append(b, uz.minus[0])
396 b = append(b, uz.decimal...)
405 b = append(b, uz.currencyNegativeSuffix...)
409 b = append(b, uz.currencyPositiveSuffix...)
417 func (uz *uz_Latn) FmtDateShort(t time.Time) string {
446 func (uz *uz_Latn) FmtDateMedium(t time.Time) string {
452 b = append(b, uz.monthsAbbreviated[t.Month()]...)
465 func (uz *uz_Latn) FmtDateLong(t time.Time) string {
471 b = append(b, uz.monthsWide[t.Month()]...)
484 func (uz *uz_Latn) FmtDateFull(t time.Time) string {
488 b = append(b, uz.daysWide[t.Weekday()]...)
492 b = append(b, uz.monthsWide[t.Month()]...)
505 func (uz *uz_Latn) FmtTimeShort(t time.Time) string {
514 b = append(b, uz.timeSeparator...)
526 func (uz *uz_Latn) FmtTimeMedium(t time.Time) string {
535 b = append(b, uz.timeSeparator...)
542 b = append(b, uz.timeSeparator...)
554 func (uz *uz_Latn) FmtTimeLong(t time.Time) string {
559 b = append(b, uz.timeSeparator...)
566 b = append(b, uz.timeSeparator...)
584 func (uz *uz_Latn) FmtTimeFull(t time.Time) string {
589 b = append(b, uz.timeSeparator...)
596 b = append(b, uz.timeSeparator...)
607 if btz, ok := uz.timezones[tz]; ok {