Searched defs:whole (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java563 * @param whole String to parse.
568 * @throws IllegalArgumentException If whole cannot be parsed.
570 private static String parsePiece(String whole, int[] idx) argument
573 while (idx[0] < whole.length()
574 && isDigitOrPeriod(whole.charAt(idx[0]))) {
577 if (idx[0] == whole.length()) {
578 throw new IllegalArgumentException(whole); // ,idx[0]);
583 return whole.substring(start, idx[0]);
589 * @param whole TODO: ???
598 String whole,
597 organizeParts( String whole, String[] parts, int[] partsIndex, int len, String tokens) argument
639 parseBigInteger( String whole, String part, int index) argument
666 parseBigDecimal( String whole, String part, int index) argument
[all...]

Completed in 693 milliseconds