Lines Matching defs:ne

1 package ne  package
12 type ne 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 currencyPositivePrefix string
26 currencyNegativePrefix 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 (ne *ne) Locale() string {
84 func (ne *ne) PluralsCardinal() []locales.PluralRule {
89 func (ne *ne) PluralsOrdinal() []locales.PluralRule {
94 func (ne *ne) PluralsRange() []locales.PluralRule {
99 func (ne *ne) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
111 func (ne *ne) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
123 func (ne *ne) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
139 func (ne *ne) MonthAbbreviated(month time.Month) string {
144 func (ne *ne) MonthsAbbreviated() []string {
149 func (ne *ne) MonthNarrow(month time.Month) string {
154 func (ne *ne) MonthsNarrow() []string {
159 func (ne *ne) MonthWide(month time.Month) string {
164 func (ne *ne) MonthsWide() []string {
169 func (ne *ne) WeekdayAbbreviated(weekday time.Weekday) string {
174 func (ne *ne) WeekdaysAbbreviated() []string {
179 func (ne *ne) WeekdayNarrow(weekday time.Weekday) string {
184 func (ne *ne) WeekdaysNarrow() []string {
189 func (ne *ne) WeekdayShort(weekday time.Weekday) string {
194 func (ne *ne) WeekdaysShort() []string {
199 func (ne *ne) WeekdayWide(weekday time.Weekday) string {
204 func (ne *ne) WeekdaysWide() []string {
209 func (ne *ne) Decimal() string {
214 func (ne *ne) Group() string {
219 func (ne *ne) Minus() string {
224 func (ne *ne) FmtNumber(num float64, v uint64) string {
266 func (ne *ne) FmtPercent(num float64, v uint64) string {
296 func (ne *ne) FmtCurrency(num float64, v uint64, currency currency.Type) string {
358 func (ne *ne) FmtAccounting(num float64, v uint64, currency currency.Type) string {
431 func (ne *ne) FmtDateShort(t time.Time) string {
450 func (ne *ne) FmtDateMedium(t time.Time) string {
469 func (ne *ne) FmtDateLong(t time.Time) string {
488 func (ne *ne) FmtDateFull(t time.Time) string {
509 func (ne *ne) FmtTimeShort(t time.Time) string {
530 func (ne *ne) FmtTimeMedium(t time.Time) string {
558 func (ne *ne) FmtTimeLong(t time.Time) string {
590 func (ne *ne) FmtTimeFull(t time.Time) string {