Home
last modified time | relevance | path

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

1234

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/
DFormattedPlaceholder.java6 import com.ibm.icu.text.FormattedValue;
18 private final FormattedValue formattedValue;
31 public FormattedPlaceholder(Object inputValue, FormattedValue formattedValue) { in FormattedPlaceholder()
61 public FormattedValue getFormattedValue() { in getFormattedValue()
DFormattedMessage.java9 import com.ibm.icu.text.FormattedValue;
23 public class FormattedMessage implements FormattedValue {
DPlainStringFormattedValue.java11 import com.ibm.icu.text.FormattedValue;
21 public class PlainStringFormattedValue implements FormattedValue {
DPluralSelectorFactory.java10 import com.ibm.icu.text.FormattedValue;
77 FormattedValue formattedValToCheck = null; in matches()
DNumberFormatterFactory.java16 import com.ibm.icu.text.FormattedValue;
101 FormattedValue result = null; in format()
/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,
/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();
/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/icu4c/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.java14 import com.ibm.icu.text.FormattedValue;
27 public class FormattedNumber implements FormattedValue {
DFormattedNumberRange.java15 import com.ibm.icu.text.FormattedValue;
29 public class FormattedNumberRange implements FormattedValue {
/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 {
208 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/icu4c/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/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/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)
/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/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()

1234