Home
last modified time | relevance | path

Searched refs:format_opts (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_locale.py145 def _test_formatfunc(self, format, value, out, func, **format_opts): argument
147 func(format, value, **format_opts), out)
149 def _test_format(self, format, value, out, **format_opts): argument
151 func=locale.format, **format_opts)
153 def _test_format_string(self, format, value, out, **format_opts): argument
155 func=locale.format_string, **format_opts)
157 def _test_currency(self, value, out, **format_opts): argument
158 self.assertEqual(locale.currency(value, **format_opts), out)
/external/python/cpython3/Lib/test/
Dtest_locale.py141 def _test_formatfunc(self, format, value, out, func, **format_opts): argument
143 func(format, value, **format_opts), out)
145 def _test_format(self, format, value, out, **format_opts): argument
147 func=locale.format, **format_opts)
149 def _test_format_string(self, format, value, out, **format_opts): argument
151 func=locale.format_string, **format_opts)
153 def _test_currency(self, value, out, **format_opts): argument
154 self.assertEqual(locale.currency(value, **format_opts), out)
/external/harfbuzz_ng/util/
Doptions.cc827 format_options_t *format_opts = (format_options_t *) data; in parse_verbose() local
828 format_opts->show_text = format_opts->show_unicode = format_opts->show_line_num = true; in parse_verbose()