HomeSort by relevance Sort by last modified time
    Searched defs:CurrencyUnit (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4c/source/i18n/unicode/
currunit.h 37 class U_I18N_API CurrencyUnit: public MeasureUnit {
43 CurrencyUnit();
54 CurrencyUnit(ConstChar16Ptr isoCode, UErrorCode &ec);
60 CurrencyUnit(const CurrencyUnit& other);
64 * restore a CurrencyUnit that was sliced to MeasureUnit.
70 CurrencyUnit(const MeasureUnit& measureUnit, UErrorCode &ec);
76 CurrencyUnit& operator=(const CurrencyUnit& other);
89 virtual ~CurrencyUnit();
    [all...]
  /external/icu/icu4c/source/i18n/
currunit.cpp 26 CurrencyUnit::CurrencyUnit(ConstChar16Ptr _isoCode, UErrorCode& ec) {
27 // The constructor always leaves the CurrencyUnit in a valid state (with a 3-character currency code).
53 CurrencyUnit::CurrencyUnit(const CurrencyUnit& other) : MeasureUnit(other) {
57 CurrencyUnit::CurrencyUnit(const MeasureUnit& other, UErrorCode& ec) : MeasureUnit(other) {
70 CurrencyUnit::CurrencyUnit() : MeasureUnit()
    [all...]

Completed in 1424 milliseconds