Home
last modified time | relevance | path

Searched refs:FormattedValue (Results 1 – 25 of 64) sorted by relevance

123

/third_party/icu/docs/userguide/format_parse/
Dformatted_value.md3 title: FormattedValue
13 # `FormattedValue`
26 `FormattedValue` is an abstraction for localized strings with attributes
27 returned by a number of ICU formatters. APIs for `FormattedValue` are available
31 - [C++ `FormattedValue`](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classicu_1_1F…
33 - [Java `FormattedValue`](https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/com/ibm/icu/…
89 contains both a month and a date. Using `FormattedValue`, those primitive
/third_party/icu/icu4c/source/test/intltest/
Ditformat.h44 const FormattedValue& fv,
53 const FormattedValue& fv,
Dformattedvaluetest.cpp169 const FormattedValue& fv, in checkFormattedValue()
202 const FormattedValue& fv, in checkMixedFormattedValue()
/third_party/icu/icu4c/source/i18n/unicode/
Dformattedvalue.h241 class U_I18N_API FormattedValue /* not : public UObject because this is an interface/mixin class */…
244 virtual ~FormattedValue();
Dlistformatter.h86 class U_I18N_API FormattedList : public UMemory, public FormattedValue {
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Dformattedvalue.h241 class U_I18N_API FormattedValue /* not : public UObject because this is an interface/mixin class */…
244 virtual ~FormattedValue();
Dlistformatter.h86 class U_I18N_API FormattedList : public UMemory, public FormattedValue {
/third_party/node/deps/icu-small/source/i18n/unicode/
Dformattedvalue.h241 class U_I18N_API FormattedValue /* not : public UObject because this is an interface/mixin class */…
244 virtual ~FormattedValue();
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
DFormattedNumber.java14 import ohos.global.icu.text.FormattedValue;
25 public class FormattedNumber implements FormattedValue {
DFormattedNumberRange.java16 import ohos.global.icu.text.FormattedValue;
29 public class FormattedNumberRange implements FormattedValue {
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DFormattedNumber.java13 import com.ibm.icu.text.FormattedValue;
26 public class FormattedNumber implements FormattedValue {
DFormattedNumberRange.java15 import com.ibm.icu.text.FormattedValue;
29 public class FormattedNumberRange implements FormattedValue {
/third_party/icu/icu4c/source/i18n/
Dformattedval_impl.h76 class FormattedValueFieldPositionIteratorImpl : public UMemory, public FormattedValue {
149 class U_I18N_API FormattedValueStringBuilderImpl : public UMemory, public FormattedValue {
204 FormattedValue* fFormattedValue = nullptr;
Dformattedvalue.cpp68 FormattedValue::~FormattedValue() = default;
/third_party/node/deps/icu-small/source/i18n/
Dformattedval_impl.h76 class FormattedValueFieldPositionIteratorImpl : public UMemory, public FormattedValue {
149 class U_I18N_API FormattedValueStringBuilderImpl : public UMemory, public FormattedValue {
205 FormattedValue* fFormattedValue = nullptr;
Dformattedvalue.cpp68 FormattedValue::~FormattedValue() = default;
/third_party/skia/third_party/externals/icu/source/i18n/
Dformattedval_impl.h76 class FormattedValueFieldPositionIteratorImpl : public UMemory, public FormattedValue {
149 class U_I18N_API FormattedValueStringBuilderImpl : public UMemory, public FormattedValue {
204 FormattedValue* fFormattedValue = nullptr;
Dformattedvalue.cpp68 FormattedValue::~FormattedValue() = default;
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DFormattedValue.java17 public interface FormattedValue extends CharSequence { interface
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DFormattedValue.java16 public interface FormattedValue extends CharSequence { interface
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DFormattedValueTest.java21 import com.ibm.icu.text.FormattedValue;
149 public static void checkFormattedValue(String message, FormattedValue fv, String expectedString, in checkFormattedValue()
154 public static void checkFormattedValue(String message, FormattedValue fv, String expectedString, in checkFormattedValue()
/third_party/python/Lib/test/
Dtest_fstring.py100 self.assertEqual(type(t.body[1].value.values[0]), ast.FormattedValue)
134 self.assertEqual(type(t.body[1].value.values[1]), ast.FormattedValue)
137 self.assertEqual(type(t.body[1].value.values[3]), ast.FormattedValue)
183 self.assertEqual(type(t.body[1].value.values[0]), ast.FormattedValue)
203 self.assertEqual(type(binop.right.values[1]), ast.FormattedValue)
229 self.assertEqual(type(t.body[1].value.values[0]), ast.FormattedValue)
232 self.assertEqual(type(t.body[1].value.values[2]), ast.FormattedValue)
235 self.assertEqual(type(t.body[1].value.values[4]), ast.FormattedValue)
291 self.assertEqual(type(t.body[0].value.values[1]), ast.FormattedValue)
326 self.assertEqual(type(t.body[1].value.values[1]), ast.FormattedValue)
Dtest_unparse.py331 ast.FormattedValue(
339 self.check_invalid(ast.FormattedValue(value=ast.Constant(value="\\\\")))
/third_party/python/Python/
Dast_unparse.c672 PyObject *temp_fv_str = expr_as_unicode(e->v.FormattedValue.value, PR_TEST + 1); in append_formattedvalue()
691 if (e->v.FormattedValue.conversion > 0) { in append_formattedvalue()
692 switch (e->v.FormattedValue.conversion) { in append_formattedvalue()
709 if (e->v.FormattedValue.format_spec) { in append_formattedvalue()
712 e->v.FormattedValue.format_spec, in append_formattedvalue()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DFormattedValueTest.java22 import ohos.global.icu.text.FormattedValue;
152 public static void checkFormattedValue(String message, FormattedValue fv, String expectedString, in checkFormattedValue()

123