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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationYearMonthImpl.java63 * @param months of this <code>Duration</code>
66 * If years, months parameters are all <code>null</code>. Or if any
72 BigInteger months) {
74 super(isPositive, years, months, null, null, null, null);
96 final int months) {
100 wrap(months));
169 * @throws IllegalArgumentException If <code>lexicalRepresentation</code> is not a valid representation of a <code>Duration</code> expressed only in terms of years and months.
196 months = months.subtract(BigInteger.valueOf(12));
69 DurationYearMonthImpl( boolean isPositive, BigInteger years, BigInteger months) argument
93 DurationYearMonthImpl( final boolean isPositive, final int years, final int months) argument
H A DDurationImpl.java44 * which consists of six fields (years, months, days, hours,
167 protected BigInteger months; field in class:DurationImpl
209 && (months == null || months.signum() == 0)
234 * @param months of this <code>Duration</code>
241 * If years, months, days, hours, minutes and
248 BigInteger months,
255 this.months = months;
265 && months
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...]
H A DDatatypeFactoryImpl.java149 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
159 * @param months of this <code>Duration</code>
171 * @see #newDuration(boolean isPositive, BigInteger years, BigInteger months, BigInteger days,
177 final BigInteger months,
186 months,
280 * @throws IllegalArgumentException If <code>lexicalRepresentation</code> is not a valid representation of a <code>Duration</code> expressed only in terms of years and months.
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 DDurationDayTimeImpl.java159 months = null;
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DDateFormatSymbolsProviderImpl.java80 String[] months = null; field in class:DateFormatSymbolsProviderImpl.FooDateFormatSymbols
114 if (months == null) {
115 months = super.getMonths();
116 for (int i = 0; i < months.length; i++) {
117 months[i] = months[i]+dialect;
120 return months;
128 months = newMonths;
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDatatypeFactory.java251 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
263 * @param months of this <code>Duration</code>
272 * <code>Duration</code>: if all the fields (years, months, ...) are null or
279 final BigInteger months,
287 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
294 * @param months of this <code>Duration</code>
308 * BigInteger months,
317 final int months,
326 // months may not be set
327 BigInteger realMonths = (months !
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...]
H A DDuration.java41 * which consists of six fields (years, months, days, hours,
549 * determine the duration of months and years.
653 * "P1M" (1 month) * "12" = "P12M" (12 months)
672 * to days, or year to months, this will cause an
679 * and months fields.
687 * the months field.
710 * <p>Converts the years and months fields into the days field
719 * <li>the years, months and days fields will be added to the {@link Calendar} object
731 * a very large value in the years or months fields.</p>
735 * @return <code>Duration</code> of years and months o
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DDateFormatSymbols.java62 * months, the names of the days of the week, and the time zone data.
153 * of 13 strings (some calendars have 13 months), indexed by
157 String months[] = null; field in class:DateFormatSymbols
161 * 13 strings (some calendars have 13 months), indexed by
406 return Arrays.copyOf(months, months.length);
414 months = Arrays.copyOf(newMonths, newMonths.length);
625 && Arrays.equals(months, that.months)
667 months
[all...]
H A DSimpleDateFormat.java1133 String[] months;
1135 months = formatData.getMonths();
1136 current = months[value];
1138 months = formatData.getShortMonths();
1139 current = months[value];
/openjdk7/jdk/test/java/util/PluggableLocale/
H A Dfooprovider.jar ... java.text.DateFormatSymbols { String dialect String[] eras String[] months String[] shortMonths String[] weekdays String[] shortWeekdays String[] ampms final synthetic ...
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A Dinit.js525 var months = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", variable
543 sb.append(months[c.get(java.util.Calendar.MONTH)]

Completed in 56 milliseconds