Lines Matching refs:tprops
935 DecimalFormatProperties tprops(*fields->properties); in toPattern() local
936 bool useCurrency = ((!tprops.currency.isNull()) || !tprops.currencyPluralInfo.fPtr.isNull() || in toPattern()
937 !tprops.currencyUsage.isNull() || AffixUtils::hasCurrencySymbols( in toPattern()
938 tprops.positivePrefixPattern, localStatus) || AffixUtils::hasCurrencySymbols( in toPattern()
939 tprops.positiveSuffixPattern, localStatus) || AffixUtils::hasCurrencySymbols( in toPattern()
940 tprops.negativePrefixPattern, localStatus) || AffixUtils::hasCurrencySymbols( in toPattern()
941 tprops.negativeSuffixPattern, localStatus)); in toPattern()
943 tprops.minimumFractionDigits = fields->exportedProperties->minimumFractionDigits; in toPattern()
944 tprops.maximumFractionDigits = fields->exportedProperties->maximumFractionDigits; in toPattern()
945 tprops.roundingIncrement = fields->exportedProperties->roundingIncrement; in toPattern()
947 result = PatternStringUtils::propertiesToPatternString(tprops, localStatus); in toPattern()