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

  /external/icu/icu4c/source/i18n/
number_decnum.h 17 // Export an explicit template instantiation of the MaybeStackHeaderAndArray that is used as a data member of DecNum.
29 class U_I18N_API DecNum : public UMemory {
31 DecNum(); // leaves object in valid but undefined state
34 DecNum(const DecNum& other, UErrorCode& status);
50 void multiplyBy(const DecNum& rhs, UErrorCode& status);
52 void divideBy(const DecNum& rhs, UErrorCode& status);
number_utils.cpp 95 DecNum::DecNum() {
101 DecNum::DecNum(const DecNum& other, UErrorCode& status)
103 // Allocate memory for the new DecNum.
113 // Copy the data from the old DecNum to the new one.
120 void DecNum::setTo(StringPiece str, UErrorCode& status) {
127 void DecNum::setTo(const char* str, UErrorCode& status) {
131 void DecNum::setTo(double d, UErrorCode& status)
    [all...]

Completed in 41 milliseconds