Home
last modified time | relevance | path

Searched refs:currency_symbol (Results 1 – 25 of 2605) sorted by relevance

12345678910>>...105

/dports/misc/rump/buildrump.sh-b914579/src/lib/libc/stdlib/
H A Dstrfmon.c133 *currency_symbol; in strfmon() local
145 currency_symbol = NULL; in strfmon()
243 if (currency_symbol) in strfmon()
244 free(currency_symbol); in strfmon()
250 currency_symbol = strdup(lc->currency_symbol); in strfmon()
252 if (currency_symbol == NULL) in strfmon()
267 currency_symbol) - in strfmon()
330 PRINTS(currency_symbol); in strfmon()
397 free(currency_symbol); in strfmon()
411 if (currency_symbol != NULL) in strfmon()
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/twig/twig/doc/filters/
H A Dcurrency_symbol.rst1 ``currency_symbol``
5 The ``currency_symbol`` filter was added in Twig 2.12.
7 The ``currency_symbol`` filter returns the currency symbol given its three-letter
13 {{ 'EUR'|currency_symbol }}
16 {{ 'JPY'|currency_symbol }}
23 {{ 'JPY'|currency_symbol('fr') }}
27 The ``currency_symbol`` filter is part of the ``IntlExtension`` which is not
/dports/deskutils/egroupware/egroupware/vendor/twig/twig/doc/filters/
H A Dcurrency_symbol.rst1 ``currency_symbol``
5 The ``currency_symbol`` filter was added in Twig 2.12.
7 The ``currency_symbol`` filter returns the currency symbol given its three-letter
13 {{ 'EUR'|currency_symbol }}
16 {{ 'JPY'|currency_symbol }}
23 {{ 'JPY'|currency_symbol('fr') }}
27 The ``currency_symbol`` filter is part of the ``IntlExtension`` which is not
/dports/www/baikal/baikal/vendor/twig/twig/doc/filters/
H A Dcurrency_symbol.rst1 ``currency_symbol``
5 The ``currency_symbol`` filter was added in Twig 2.12.
7 The ``currency_symbol`` filter returns the currency symbol given its three-letter
13 {{ 'EUR'|currency_symbol }}
16 {{ 'JPY'|currency_symbol }}
23 {{ 'JPY'|currency_symbol('fr') }}
27 The ``currency_symbol`` filter is part of the ``IntlExtension`` which is not
/dports/www/opencart/opencart-3.0.3.8/upload/system/storage/vendor/twig/twig/doc/filters/
H A Dcurrency_symbol.rst1 ``currency_symbol``
5 The ``currency_symbol`` filter was added in Twig 2.12.
7 The ``currency_symbol`` filter returns the currency symbol given its three-letter
13 {{ 'EUR'|currency_symbol }}
16 {{ 'JPY'|currency_symbol }}
23 {{ 'JPY'|currency_symbol('fr') }}
27 The ``currency_symbol`` filter is part of the ``IntlExtension`` which is not
/dports/finance/p5-Locale-Currency-Format/Locale-Currency-Format-1.35/t/
H A Dformat.t16 is( currency_symbol( 'vnd', SYM_UTF ), "\x{20AB}", "Check VND Symbol" );
17 is( currency_symbol( 'vnd', SYM_HTML ), "₫", "Check VND HTML" );
18 is( currency_symbol(), undef, "Check symbol" );
19 is( currency_symbol( 'usd', 10 ), undef, "Check USD symbol" );
20 is( currency_symbol('vn'), undef, "Check VN symbol" );
21 is( currency_symbol('aed'), undef, "Check SED symbol" );
/dports/finance/grisbi/grisbi-2.0.5/src/
H A Dgsb_locale.c82 if (g_utf8_validate (locale->currency_symbol, -1, NULL)) in gsb_locale_init_lconv_struct()
83 _locale->currency_symbol = g_strdup (locale->currency_symbol); in gsb_locale_init_lconv_struct()
85 _locale->currency_symbol = g_locale_to_utf8 (locale->currency_symbol, -1, NULL, NULL, NULL); in gsb_locale_init_lconv_struct()
123 g_free (_locale->currency_symbol); in gsb_locale_shutdown()
212 gchar *currency_symbol; in gsb_locale_get_print_locale_var() local
218 currency_symbol = g_strdup (_locale->currency_symbol); in gsb_locale_get_print_locale_var()
236 currency_symbol, in gsb_locale_get_print_locale_var()
246 g_free (currency_symbol); in gsb_locale_get_print_locale_var()
H A Dutils_real.c106 const gchar *currency_symbol = (currency_number && show_symbol) in utils_real_get_string_with_currency() local
121 if (currency_symbol && locale -> p_cs_precedes) in utils_real_get_string_with_currency()
122 tmp_str = g_strdup_printf ( "%s %s", currency_symbol, zero_str); in utils_real_get_string_with_currency()
123 else if (currency_symbol && ! locale -> p_cs_precedes) in utils_real_get_string_with_currency()
124 tmp_str = g_strdup_printf ( "%s %s", zero_str, currency_symbol ); in utils_real_get_string_with_currency()
142 return gsb_real_raw_format_string ( number, locale, currency_symbol ); in utils_real_get_string_with_currency()
H A Dgsb_real.c340 const gchar *currency_symbol) in gsb_real_raw_format_string() argument
355 cs_start = (currency_symbol && locale->p_cs_precedes) ? currency_symbol : ""; in gsb_real_raw_format_string()
356 … cs_start_space = (currency_symbol && locale->p_cs_precedes && locale->p_sep_by_space) ? " " : ""; in gsb_real_raw_format_string()
359 cs_end_space = (currency_symbol && !locale->p_cs_precedes && locale->p_sep_by_space) ? " " : ""; in gsb_real_raw_format_string()
360 cs_end = (currency_symbol && !locale->p_cs_precedes) ? currency_symbol : ""; in gsb_real_raw_format_string()
/dports/devel/py-oci/oci-2.53.1/src/oci/osp_gateway/models/
H A Dcurrency.py89 def currency_symbol(self): member in Currency
100 @currency_symbol.setter
101 def currency_symbol(self, currency_symbol): member in Currency
110 self._currency_symbol = currency_symbol
/dports/finance/grisbi/grisbi-2.0.5/src/tests/
H A Dgsb_real_cunit.c316 gchar *currency_symbol = "<€>"; in gsb_real_cunit__gsb_real_raw_format_string() local
320 s = gsb_real_raw_format_string(n, &conv, currency_symbol); in gsb_real_cunit__gsb_real_raw_format_string()
326 s = gsb_real_raw_format_string(n, &conv, currency_symbol); in gsb_real_cunit__gsb_real_raw_format_string()
332 s = gsb_real_raw_format_string(n, &conv, currency_symbol); in gsb_real_cunit__gsb_real_raw_format_string()
338 s = gsb_real_raw_format_string(n, &conv, currency_symbol); in gsb_real_cunit__gsb_real_raw_format_string()
344 s = gsb_real_raw_format_string(n, &conv, currency_symbol); in gsb_real_cunit__gsb_real_raw_format_string()
350 s = gsb_real_raw_format_string(n, &conv, currency_symbol); in gsb_real_cunit__gsb_real_raw_format_string()
356 s = gsb_real_raw_format_string(n, &conv, currency_symbol); in gsb_real_cunit__gsb_real_raw_format_string()
362 s = gsb_real_raw_format_string(n, &conv, currency_symbol); in gsb_real_cunit__gsb_real_raw_format_string()
368 s = gsb_real_raw_format_string(n, &conv, currency_symbol); in gsb_real_cunit__gsb_real_raw_format_string()
[all …]
/dports/finance/moneymanagerex/moneymanagerex-1.2.7/src/
H A Dmaincurrencydialog.cpp407 const wxString currency_symbol = currency.CURRENCY_SYMBOL.Upper(); in onlineUpdateCurRate() local
408 if (!currency_symbol.IsEmpty()) in onlineUpdateCurRate()
410 if (currency_data.find(currency_symbol) != currency_data.end()) in onlineUpdateCurRate()
413 … , currency_symbol, currency.BASECONVRATE, currency_data[currency_symbol].first); in onlineUpdateCurRate()
414 currency.BASECONVRATE = currency_data[currency_symbol].first; in onlineUpdateCurRate()
415 if (base_symbol == currency_symbol) in onlineUpdateCurRate()
421 … msg << wxString::Format(_("%s\t: %s\n"), currency_symbol, _("Invalid value ")); in onlineUpdateCurRate()
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/libdruntime/core/sys/posix/
H A Dlocale.d53 char* currency_symbol; in version() member
136 char* currency_symbol; in version() member
233 char* currency_symbol; in version() member
309 char* currency_symbol; in version() member
384 char* currency_symbol; in version() member
/dports/lang/gcc11/gcc-11.2.0/libphobos/libdruntime/core/sys/posix/
H A Dlocale.d53 char* currency_symbol; in version() member
136 char* currency_symbol; in version() member
233 char* currency_symbol; in version() member
309 char* currency_symbol; in version() member
384 char* currency_symbol; in version() member
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/libdruntime/core/sys/posix/
H A Dlocale.d53 char* currency_symbol; in version() member
136 char* currency_symbol; in version() member
233 char* currency_symbol; in version() member
309 char* currency_symbol; in version() member
384 char* currency_symbol; in version() member
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libphobos/libdruntime/core/sys/posix/
H A Dlocale.d53 char* currency_symbol; in version() member
136 char* currency_symbol; in version() member
233 char* currency_symbol; in version() member
309 char* currency_symbol; in version() member
384 char* currency_symbol; in version() member
/dports/textproc/p5-Number-Format/Number-Format-1.75/t/
H A Dformat_price.t14 -currency_symbol => '$',
46 is($usd->format_price(19.95, undef, 'currency_symbol'),
52 is($usd->format_price(19.95, undef, 'currency_symbol'),
148 -currency_symbol => '$',
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/StdLib/LibC/Locale/
H A Dlocaleconv.c40 ret.currency_symbol = in localeconv()
41 __UNCONST(_CurrentMonetaryLocale->currency_symbol); in localeconv()
/dports/lang/fpc-source/fpc-3.2.2/packages/rtl-extra/src/unix/
H A Dclocale.pp251 ( (4, 15), (0, 14) ), //Parentheses surround the quantity and currency_symbol
252 ( (5, 8), (1, 9) ), //The sign string precedes the quantity and currency_symbol
253 ( (7, 10), (3, 11) ), //The sign string follows the quantity and currency_symbol
254 ( (6, 13), (1, 9) ), //The sign string immediately precedes the currency_symbol
255 ( (7, 10), (2, 12) ) //The sign string immediately follows the currency_symbol
313 fmts.CurrencyString:=plocale^.currency_symbol; // int_CURR_SYMBOL (in latin chars)
318 OrgFormatSettings.CurrencyString1:=plocale^.currency_symbol;
/dports/lang/fpc-rtl-extra/fpc-3.2.2/packages/rtl-extra/src/unix/
H A Dclocale.pp251 ( (4, 15), (0, 14) ), //Parentheses surround the quantity and currency_symbol
252 ( (5, 8), (1, 9) ), //The sign string precedes the quantity and currency_symbol
253 ( (7, 10), (3, 11) ), //The sign string follows the quantity and currency_symbol
254 ( (6, 13), (1, 9) ), //The sign string immediately precedes the currency_symbol
255 ( (7, 10), (2, 12) ) //The sign string immediately follows the currency_symbol
313 fmts.CurrencyString:=plocale^.currency_symbol; // int_CURR_SYMBOL (in latin chars)
318 OrgFormatSettings.CurrencyString1:=plocale^.currency_symbol;
/dports/astro/gnuastro/gnuastro-0.16/bootstrapped/lib/
H A Dlocaleconv.c43 result.currency_symbol = sys_result->currency_symbol; in localeconv()
/dports/print/texinfo/texinfo-6.8/gnulib/lib/
H A Dlocaleconv.c43 result.currency_symbol = sys_result->currency_symbol; in localeconv()
/dports/misc/amanda-client/amanda-3.3.9/gnulib/
H A Dlocaleconv.c43 result.currency_symbol = sys_result->currency_symbol; in localeconv()
/dports/misc/amanda-server/amanda-3.3.9/gnulib/
H A Dlocaleconv.c43 result.currency_symbol = sys_result->currency_symbol; in localeconv()
/dports/lang/guile2/guile-2.2.7/lib/
H A Dlocaleconv.c43 result.currency_symbol = sys_result->currency_symbol; in localeconv()

12345678910>>...105