Searched refs:intDigits (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDecimalDV.java78 int intDigits = 0; field in class:DecimalDV.XDecimal
154 intDigits = intEnd - actualIntStart;
156 totalDigits = intDigits + fracDigits;
158 if (intDigits > 0) {
211 intDigits = intEnd - actualIntStart;
213 totalDigits = intDigits;
215 if (intDigits > 0) {
240 return intDigits == oval.intDigits && fracDigits == oval.fracDigits &&
249 hash = 17 * hash + this.intDigits;
[all...]
H A DPrecisionDecimalDV.java42 int intDigits = 0; field in class:PrecisionDecimalDV.XPrecisionDecimal
131 intDigits = intEnd - actualIntStart;
134 if (intDigits > 0) {
144 totalDigits = intDigits + fracDigits;
304 if(intDigits + pvalue != val.intDigits + val.pvalue)
305 return intDigits + pvalue > val.intDigits + val.pvalue ? GREATER_THAN : LESS_THAN;
348 if (intDigits != val.intDigits)
[all...]

Completed in 30 milliseconds