Searched refs:zeroDigit (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/libxslt/libxslt/ |
D | numbers.c | 128 ((xsltUTF8Charcmp((letter), (self)->zeroDigit) == 0) || \ 1050 } else if (xsltUTF8Charcmp(the_format, self->zeroDigit) == 0) { in xsltFormatNumberConversion() 1091 if (xsltUTF8Charcmp(the_format, self->zeroDigit) == 0) { in xsltFormatNumberConversion() 1291 xsltNumberFormatDecimal(buffer, floor(number), self->zeroDigit[0], in xsltFormatNumberConversion() 1296 xsltNumberFormatDecimal(buffer, floor(number), self->zeroDigit[0], in xsltFormatNumberConversion() 1311 xmlBufferAdd(buffer, self->zeroDigit, xsltUTF8Size(self->zeroDigit)); in xsltFormatNumberConversion() 1331 xsltNumberFormatDecimal(buffer, floor(number), self->zeroDigit[0], in xsltFormatNumberConversion()
|
D | xslt.c | 292 self->zeroDigit = xmlStrdup(BAD_CAST("0")); in xsltNewDecimalFormat() 316 if (self->zeroDigit) in xsltFreeDecimalFormat() 317 xmlFree(self->zeroDigit); in xsltFreeDecimalFormat() 1444 if (format->zeroDigit != NULL) xmlFree(format->zeroDigit); in xsltParseStylesheetDecimalFormat() 1445 format->zeroDigit = prop; in xsltParseStylesheetDecimalFormat()
|
D | xsltInternals.h | 321 xmlChar *zeroDigit; member
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | decimfmt.cpp | 4820 UChar32 zeroDigit = kPatternZeroDigit; // '0' in applyPatternWithoutExpandAffix() local 4834 zeroDigit = getConstSymbol(DecimalFormatSymbols::kZeroDigitSymbol).char32At(0); in applyPatternWithoutExpandAffix() 4847 UChar nineDigit = (UChar)(zeroDigit + 9); in applyPatternWithoutExpandAffix() 4915 } else if ((ch >= zeroDigit && ch <= nineDigit) || in applyPatternWithoutExpandAffix() 4927 if (ch != zeroDigit && roundingPos < 0) { in applyPatternWithoutExpandAffix() 4931 roundingInc.append((char)(ch - zeroDigit + '0')); in applyPatternWithoutExpandAffix() 4990 pattern.char32At(pos) == zeroDigit) { in applyPatternWithoutExpandAffix() 4992 pos += U16_LENGTH(zeroDigit); in applyPatternWithoutExpandAffix() 5028 (ch >= zeroDigit && ch <= nineDigit) || in applyPatternWithoutExpandAffix()
|