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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationDayTimeImpl.java59 BigInteger days,
64 super(isPositive, null, null, days, hours, minutes, seconds);
70 int days,
77 wrap(days),
101 * @throws IllegalArgumentException If <code>lexicalRepresentation</code> is not a valid representation of a <code>Duration</code> expressed only in terms of days and time.
142 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
192 days = BigInteger.valueOf((long) getDays()).add(BigInteger.ONE);
57 DurationDayTimeImpl( boolean isPositive, BigInteger days, BigInteger hours, BigInteger minutes, BigDecimal seconds) argument
68 DurationDayTimeImpl( boolean isPositive, int days, int hours, int minutes, int seconds) argument
H A DDatatypeFactoryImpl.java135 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
149 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
160 * @param days of this <code>Duration</code>
171 * @see #newDuration(boolean isPositive, BigInteger years, BigInteger months, BigInteger days,
178 final BigInteger days,
187 days,
315 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
350 * @throws IllegalArgumentException If <code>lexicalRepresentation</code> is not a valid representation of a <code>Duration</code> expressed only in terms of days and time.
390 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
174 newDuration( final boolean isPositive, final BigInteger years, final BigInteger months, final BigInteger days, final BigInteger hours, final BigInteger minutes, final BigDecimal seconds) argument
H A DDurationImpl.java44 * which consists of six fields (years, months, days, hours,
65 * <p>For example, 30 days cannot be meaningfully compared to one month.
79 * subtract 15 days from 1 month. See the javadoc of those methods
172 protected BigInteger days; field in class:DurationImpl
210 && (days == null || days.signum() == 0)
235 * @param days of this <code>Duration</code>
241 * If years, months, days, hours, minutes and
249 BigInteger days,
256 this.days
245 DurationImpl( boolean isPositive, BigInteger years, BigInteger months, BigInteger days, BigInteger hours, BigInteger minutes, BigDecimal seconds) argument
327 DurationImpl( final boolean isPositive, final int years, final int months, final int days, final int hours, final int minutes, final int seconds) argument
[all...]
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDatatypeFactory.java240 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
251 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
264 * @param days of this <code>Duration</code>
280 final BigInteger days,
287 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
295 * @param days of this <code>Duration</code>
309 * BigInteger days,
318 final int days,
329 // days may not be set
330 BigInteger realDays = (days !
276 newDuration( final boolean isPositive, final BigInteger years, final BigInteger months, final BigInteger days, final BigInteger hours, final BigInteger minutes, final BigDecimal seconds) argument
314 newDuration( final boolean isPositive, final int years, final int months, final int days, final int hours, final int minutes, final int seconds) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DFileTime.java69 * The value in days and excess nanos (created lazily)
179 // hashcode of days/nanos representation to satisfy contract with equals
200 // compare using days/nanos representation when unit differs
239 // nothing to do when seconds/minutes/hours/days
293 * Represents a FileTime's value as two longs: the number of days since
308 * The value (in days) since the epoch; can be negative.
310 private final long days; field in class:FileTime.DaysAndNanos
313 * The excess (in nanoseconds); can be negative if days <= 0.
332 this.days = unit.toDays(value);
333 this.excessNanos = unit.toNanos(value - (this.days * scal
[all...]

Completed in 33 milliseconds