Lines Matching defs:he

1 package he  package
12 type he struct { struct
13 locale string
14 pluralsCardinal []locales.PluralRule
15 pluralsOrdinal []locales.PluralRule
16 pluralsRange []locales.PluralRule
17 decimal string
18 group string
19 minus string
20 percent string
21 perMille string
22 timeSeparator string
23 inifinity string
24 currencies []string // idx = enum of currency code
25 currencyPositiveSuffix string
26 currencyNegativeSuffix string
27 monthsAbbreviated []string
28 monthsNarrow []string
29 monthsWide []string
30 daysAbbreviated []string
31 daysNarrow []string
32 daysShort []string
33 daysWide []string
34 periodsAbbreviated []string
35 periodsNarrow []string
36 periodsShort []string
37 periodsWide []string
38 erasAbbreviated []string
39 erasNarrow []string
40 erasWide []string
41 timezones map[string]string
79 func (he *he) Locale() string {
84 func (he *he) PluralsCardinal() []locales.PluralRule {
89 func (he *he) PluralsOrdinal() []locales.PluralRule {
94 func (he *he) PluralsRange() []locales.PluralRule {
99 func (he *he) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
117 func (he *he) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
122 func (he *he) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
154 func (he *he) MonthAbbreviated(month time.Month) string {
159 func (he *he) MonthsAbbreviated() []string {
164 func (he *he) MonthNarrow(month time.Month) string {
169 func (he *he) MonthsNarrow() []string {
174 func (he *he) MonthWide(month time.Month) string {
179 func (he *he) MonthsWide() []string {
184 func (he *he) WeekdayAbbreviated(weekday time.Weekday) string {
189 func (he *he) WeekdaysAbbreviated() []string {
194 func (he *he) WeekdayNarrow(weekday time.Weekday) string {
199 func (he *he) WeekdaysNarrow() []string {
204 func (he *he) WeekdayShort(weekday time.Weekday) string {
209 func (he *he) WeekdaysShort() []string {
214 func (he *he) WeekdayWide(weekday time.Weekday) string {
219 func (he *he) WeekdaysWide() []string {
224 func (he *he) Decimal() string {
229 func (he *he) Group() string {
234 func (he *he) Minus() string {
239 func (he *he) FmtNumber(num float64, v uint64) string {
283 func (he *he) FmtPercent(num float64, v uint64) string {
315 func (he *he) FmtCurrency(num float64, v uint64, currency currency.Type) string {
375 func (he *he) FmtAccounting(num float64, v uint64, currency currency.Type) string {
441 func (he *he) FmtDateShort(t time.Time) string {
460 func (he *he) FmtDateMedium(t time.Time) string {
479 func (he *he) FmtDateLong(t time.Time) string {
498 func (he *he) FmtDateFull(t time.Time) string {
519 func (he *he) FmtTimeShort(t time.Time) string {
536 func (he *he) FmtTimeMedium(t time.Time) string {
560 func (he *he) FmtTimeLong(t time.Time) string {
588 func (he *he) FmtTimeFull(t time.Time) string {