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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DPrecisionDecimalDV.java251 private void truncateTrailingZeros(StringBuffer fValue, StringBuffer otherFValue) { argument
258 for(int i = otherFValue.length() - 1;i >= 0; i--)
259 if(otherFValue.charAt(i) == '0')
260 otherFValue.deleteCharAt(i);
358 private int compareDecimal(String iValue, String fValue, String otherIValue, String otherFValue) { argument
363 if(fValue.equals(otherFValue))
367 StringBuffer temp2=new StringBuffer(otherFValue);

Completed in 30 milliseconds