/external/threetenbp/src/main/java/org/threeten/bp/format/ |
D | DateTimePrintContext.java | 34 import static org.threeten.bp.temporal.ChronoField.EPOCH_DAY; 35 import static org.threeten.bp.temporal.ChronoField.INSTANT_SECONDS; 48 import org.threeten.bp.temporal.ChronoField; 49 import org.threeten.bp.temporal.TemporalAccessor; 50 import org.threeten.bp.temporal.TemporalField; 51 import org.threeten.bp.temporal.TemporalQueries; 52 import org.threeten.bp.temporal.TemporalQuery; 53 import org.threeten.bp.temporal.ValueRange; 68 * The temporal being output. 70 private TemporalAccessor temporal; field in DateTimePrintContext [all …]
|
/external/threetenbp/src/main/java/org/threeten/bp/chrono/ |
D | ChronoPeriodImpl.java | 34 import static org.threeten.bp.temporal.ChronoUnit.DAYS; 35 import static org.threeten.bp.temporal.ChronoUnit.MONTHS; 36 import static org.threeten.bp.temporal.ChronoUnit.YEARS; 45 import org.threeten.bp.temporal.ChronoField; 46 import org.threeten.bp.temporal.Temporal; 47 import org.threeten.bp.temporal.TemporalAmount; 48 import org.threeten.bp.temporal.TemporalQueries; 49 import org.threeten.bp.temporal.TemporalUnit; 50 import org.threeten.bp.temporal.UnsupportedTemporalTypeException; 154 public Temporal addTo(Temporal temporal) { in addTo() argument [all …]
|
D | ChronoPeriod.java | 38 import org.threeten.bp.temporal.ChronoUnit; 39 import org.threeten.bp.temporal.Temporal; 40 import org.threeten.bp.temporal.TemporalAmount; 41 import org.threeten.bp.temporal.TemporalUnit; 42 import org.threeten.bp.temporal.UnsupportedTemporalTypeException; 250 * Adds this period to the specified temporal object. 252 * This returns a temporal object of the same observable type as the input 256 * {@link Temporal#plus(TemporalAmount)}. 263 * The specified temporal must have the same chronology as this period. 264 * This returns a temporal with the non-zero supported units added. [all …]
|
D | Chronology.java | 60 import org.threeten.bp.temporal.ChronoField; 61 import org.threeten.bp.temporal.Temporal; 62 import org.threeten.bp.temporal.TemporalAccessor; 63 import org.threeten.bp.temporal.TemporalField; 64 import org.threeten.bp.temporal.TemporalQueries; 65 import org.threeten.bp.temporal.TemporalQuery; 66 import org.threeten.bp.temporal.UnsupportedTemporalTypeException; 67 import org.threeten.bp.temporal.ValueRange; 148 public Chronology queryFrom(TemporalAccessor temporal) { 149 return Chronology.from(temporal); [all …]
|
/external/threetenbp/src/main/java/org/threeten/bp/temporal/ |
D | TemporalField.java | 32 package org.threeten.bp.temporal; 125 * Checks if this field is supported by the temporal object. 127 * This determines whether the temporal accessor supports this field. 128 * If this returns false, the temporal cannot be queried for this field. 135 * temporal = thisField.isSupportedBy(temporal); 136 * temporal = temporal.isSupported(thisField); 144 * @param temporal the temporal object to query, not null 147 boolean isSupportedBy(TemporalAccessor temporal); in isSupportedBy() argument 150 * Get the range of valid values for this field using the temporal object to 153 * This uses the temporal object to find the range of valid values for the field. [all …]
|
D | IsoFields.java | 32 package org.threeten.bp.temporal; 36 import static org.threeten.bp.temporal.ChronoField.DAY_OF_WEEK; 37 import static org.threeten.bp.temporal.ChronoField.DAY_OF_YEAR; 38 import static org.threeten.bp.temporal.ChronoField.EPOCH_DAY; 39 import static org.threeten.bp.temporal.ChronoField.MONTH_OF_YEAR; 40 import static org.threeten.bp.temporal.ChronoField.YEAR; 41 import static org.threeten.bp.temporal.ChronoUnit.DAYS; 42 import static org.threeten.bp.temporal.ChronoUnit.FOREVER; 43 import static org.threeten.bp.temporal.ChronoUnit.MONTHS; 44 import static org.threeten.bp.temporal.ChronoUnit.WEEKS; [all …]
|
D | TemporalAdjuster.java | 32 package org.threeten.bp.temporal; 37 * Strategy for adjusting a temporal object. 39 * Adjusters are a key tool for modifying temporal objects. 47 * The second is to use {@link Temporal#with(TemporalAdjuster)}: 50 * temporal = thisAdjuster.adjustInto(temporal); 51 * temporal = temporal.with(thisAdjuster); 67 * Adjusts the specified temporal object. 69 * This adjusts the specified temporal object using the logic 76 * The second is to use {@link Temporal#with(TemporalAdjuster)}: 79 * temporal = thisAdjuster.adjustInto(temporal); [all …]
|
D | TemporalAmount.java | 32 package org.threeten.bp.temporal; 86 * Adds to the specified temporal object. 88 * This adds to the specified temporal object using the logic 93 * The second is to use {@link Temporal#plus(TemporalAmount)}: 105 * documenting that logic. It may use any method on {@code Temporal} to 106 * query the temporal object and perform the addition. 111 * This provides equivalent, safe behavior for immutable and mutable temporal objects. 113 * The input temporal object may be in a calendar system other than ISO. 115 …* or reject non-ISO temporal objects by {@link TemporalQueries#chronology() querying the chronolog… 120 * @param temporal the temporal object to adjust, not null [all …]
|
D | TemporalQuery.java | 32 package org.threeten.bp.temporal; 37 * Strategy for querying a temporal object. 39 * Queries are a key tool for extracting information from temporal objects. 46 * temporal objects. That interface is limited to returning a {@code long}. 54 * temporal = thisQuery.queryFrom(temporal); 55 * temporal = temporal.query(thisQuery); 72 * Queries the specified temporal object. 74 * This queries the specified temporal object to return an object using the logic 84 * temporal = thisQuery.queryFrom(temporal); 85 * temporal = temporal.query(thisQuery); [all …]
|
D | TemporalUnit.java | 32 package org.threeten.bp.temporal; 109 * Checks if this unit is supported by the specified temporal object. 114 * @param temporal the temporal object to check, not null 117 boolean isSupportedBy(Temporal temporal); in isSupportedBy() argument 120 * Returns a copy of the specified temporal object with the specified period added. 129 * The second is to use {@link Temporal#plus(long, TemporalUnit)}: 132 * temporal = thisUnit.doPlus(temporal); 133 * temporal = temporal.plus(thisUnit); 142 * Implementations must not alter the specified temporal object. 146 * @param <R> the type of the Temporal object [all …]
|
D | TemporalQueries.java | 32 package org.threeten.bp.temporal; 34 import static org.threeten.bp.temporal.ChronoField.EPOCH_DAY; 35 import static org.threeten.bp.temporal.ChronoField.NANO_OF_DAY; 36 import static org.threeten.bp.temporal.ChronoField.OFFSET_SECONDS; 52 * can also use the {@code from(TemporalAccessor)} method on most temporal 118 * @return a query that can obtain the zone ID of a temporal, not null 125 public ZoneId queryFrom(TemporalAccessor temporal) { 126 return temporal.query(this); 163 * @return a query that can obtain the chronology of a temporal, not null 170 public Chronology queryFrom(TemporalAccessor temporal) { [all …]
|
D | TemporalAdjusters.java | 32 package org.threeten.bp.temporal; 34 import static org.threeten.bp.temporal.ChronoField.DAY_OF_MONTH; 35 import static org.threeten.bp.temporal.ChronoField.DAY_OF_WEEK; 36 import static org.threeten.bp.temporal.ChronoField.DAY_OF_YEAR; 37 import static org.threeten.bp.temporal.ChronoUnit.DAYS; 38 import static org.threeten.bp.temporal.ChronoUnit.MONTHS; 39 import static org.threeten.bp.temporal.ChronoUnit.YEARS; 60 * The second is to use {@link Temporal#with(TemporalAdjuster)}: 95 * temporal.with(DAY_OF_MONTH, 1); 117 * long lastDay = temporal.range(DAY_OF_MONTH).getMaximum(); [all …]
|
D | package.html | 53 All units implement {@link org.threeten.bp.temporal.TemporalUnit}. 54 The set of well known units is defined in {@link org.threeten.bp.temporal.ChronoUnit}, 55 for example, {@link org.threeten.bp.temporal.ChronoUnit#DAYS}. 60 All fields implement {@link org.threeten.bp.temporal.TemporalField}. 61 The set of well known fields are defined in {@link org.threeten.bp.temporal.ChronoField}, 62 for example, {@link org.threeten.bp.temporal.ChronoField#HOUR_OF_DAY}. 63 An additional fields are defined by {@link org.threeten.bp.temporal.JulianFields}. 69 {@link org.threeten.bp.temporal.Temporal} provides the abstraction for 87 The functions implement {@link org.threeten.bp.temporal.TemporalAdjuster} and operate 88 on {@link org.threeten.bp.temporal.Temporal}. [all …]
|
D | WeekFields.java | 32 package org.threeten.bp.temporal; 34 import static org.threeten.bp.temporal.ChronoField.DAY_OF_MONTH; 35 import static org.threeten.bp.temporal.ChronoField.DAY_OF_WEEK; 36 import static org.threeten.bp.temporal.ChronoField.DAY_OF_YEAR; 37 import static org.threeten.bp.temporal.ChronoField.MONTH_OF_YEAR; 38 import static org.threeten.bp.temporal.ChronoField.YEAR; 39 import static org.threeten.bp.temporal.ChronoUnit.DAYS; 40 import static org.threeten.bp.temporal.ChronoUnit.MONTHS; 41 import static org.threeten.bp.temporal.ChronoUnit.WEEKS; 42 import static org.threeten.bp.temporal.ChronoUnit.YEARS; [all …]
|
D | Temporal.java | 32 package org.threeten.bp.temporal; 42 * Framework-level interface defining read-write access to a temporal object, 101 public interface Temporal extends TemporalAccessor { interface 115 * is obtained by invoking {@code TemporalUnit.isSupportedBy(Temporal)} 153 Temporal with(TemporalAdjuster adjuster); in with() 173 * is obtained by invoking {@code TemporalField.adjustInto(Temporal, long)} 176 * Implementations must not alter either this object or the specified temporal object. 186 Temporal with(TemporalField field, long newValue); in with() 192 * This adjusts this temporal, adding according to the rules of the specified amount. 216 Temporal plus(TemporalAmount amount); in plus() [all …]
|
/external/libaom/av1/encoder/ |
D | temporal_filter.h | 32 // Block size used in temporal filtering. 35 // Window size for temporal filtering. 43 // 0. A scale factor used in temporal filtering to raise the filter weight from 62 // strength of temporal filtering. When `arnr_strength` is small enough ( 87 // temporal filter. 96 * \brief Parameters related to temporal filtering. 100 * Frame buffers used for temporal filtering. 130 * Number of pixels in the temporal filtering block across all planes. 134 * Number of temporal filtering block rows. 138 * Number of temporal filtering block columns. [all …]
|
/external/threetenbp/src/main/java/org/threeten/bp/ |
D | DayOfWeek.java | 34 import static org.threeten.bp.temporal.ChronoField.DAY_OF_WEEK; 35 import static org.threeten.bp.temporal.ChronoUnit.DAYS; 41 import org.threeten.bp.temporal.ChronoField; 42 import org.threeten.bp.temporal.Temporal; 43 import org.threeten.bp.temporal.TemporalAccessor; 44 import org.threeten.bp.temporal.TemporalAdjuster; 45 import org.threeten.bp.temporal.TemporalAdjusters; 46 import org.threeten.bp.temporal.TemporalField; 47 import org.threeten.bp.temporal.TemporalQueries; 48 import org.threeten.bp.temporal.TemporalQuery; [all …]
|
D | Month.java | 34 import static org.threeten.bp.temporal.ChronoField.MONTH_OF_YEAR; 35 import static org.threeten.bp.temporal.ChronoUnit.MONTHS; 43 import org.threeten.bp.temporal.ChronoField; 44 import org.threeten.bp.temporal.Temporal; 45 import org.threeten.bp.temporal.TemporalAccessor; 46 import org.threeten.bp.temporal.TemporalAdjuster; 47 import org.threeten.bp.temporal.TemporalField; 48 import org.threeten.bp.temporal.TemporalQueries; 49 import org.threeten.bp.temporal.TemporalQuery; 50 import org.threeten.bp.temporal.UnsupportedTemporalTypeException; [all …]
|
D | Year.java | 34 import static org.threeten.bp.temporal.ChronoField.ERA; 35 import static org.threeten.bp.temporal.ChronoField.YEAR; 36 import static org.threeten.bp.temporal.ChronoField.YEAR_OF_ERA; 37 import static org.threeten.bp.temporal.ChronoUnit.CENTURIES; 38 import static org.threeten.bp.temporal.ChronoUnit.DECADES; 39 import static org.threeten.bp.temporal.ChronoUnit.ERAS; 40 import static org.threeten.bp.temporal.ChronoUnit.MILLENNIA; 41 import static org.threeten.bp.temporal.ChronoUnit.YEARS; 58 import org.threeten.bp.temporal.ChronoField; 59 import org.threeten.bp.temporal.ChronoUnit; [all …]
|
D | MonthDay.java | 34 import static org.threeten.bp.temporal.ChronoField.DAY_OF_MONTH; 35 import static org.threeten.bp.temporal.ChronoField.MONTH_OF_YEAR; 51 import org.threeten.bp.temporal.ChronoField; 52 import org.threeten.bp.temporal.Temporal; 53 import org.threeten.bp.temporal.TemporalAccessor; 54 import org.threeten.bp.temporal.TemporalAdjuster; 55 import org.threeten.bp.temporal.TemporalField; 56 import org.threeten.bp.temporal.TemporalQueries; 57 import org.threeten.bp.temporal.TemporalQuery; 58 import org.threeten.bp.temporal.UnsupportedTemporalTypeException; [all …]
|
D | YearMonth.java | 34 import static org.threeten.bp.temporal.ChronoField.ERA; 35 import static org.threeten.bp.temporal.ChronoField.MONTH_OF_YEAR; 36 import static org.threeten.bp.temporal.ChronoField.PROLEPTIC_MONTH; 37 import static org.threeten.bp.temporal.ChronoField.YEAR; 38 import static org.threeten.bp.temporal.ChronoField.YEAR_OF_ERA; 39 import static org.threeten.bp.temporal.ChronoUnit.CENTURIES; 40 import static org.threeten.bp.temporal.ChronoUnit.DECADES; 41 import static org.threeten.bp.temporal.ChronoUnit.ERAS; 42 import static org.threeten.bp.temporal.ChronoUnit.MILLENNIA; 43 import static org.threeten.bp.temporal.ChronoUnit.MONTHS; [all …]
|
/external/threetenbp/src/main/java/org/threeten/bp/jdk8/ |
D | DefaultInterfaceTemporal.java | 34 import org.threeten.bp.temporal.Temporal; 35 import org.threeten.bp.temporal.TemporalAdjuster; 36 import org.threeten.bp.temporal.TemporalAmount; 37 import org.threeten.bp.temporal.TemporalUnit; 45 implements Temporal { 48 public Temporal with(TemporalAdjuster adjuster) { in with() 53 public Temporal plus(TemporalAmount amount) { in plus() 58 public Temporal minus(TemporalAmount amount) { in minus() 63 public Temporal minus(long amountToSubtract, TemporalUnit unit) { in minus()
|
D | DefaultInterfaceEra.java | 34 import static org.threeten.bp.temporal.ChronoField.ERA; 41 import org.threeten.bp.temporal.ChronoField; 42 import org.threeten.bp.temporal.ChronoUnit; 43 import org.threeten.bp.temporal.Temporal; 44 import org.threeten.bp.temporal.TemporalField; 45 import org.threeten.bp.temporal.TemporalQueries; 46 import org.threeten.bp.temporal.TemporalQuery; 47 import org.threeten.bp.temporal.UnsupportedTemporalTypeException; 88 public Temporal adjustInto(Temporal temporal) { in adjustInto() argument 89 return temporal.with(ERA, getValue()); in adjustInto()
|
/external/threetenbp/src/test/java/org/threeten/bp/chrono/ |
D | TestChronoLocalDate.java | 52 import org.threeten.bp.temporal.ChronoUnit; 53 import org.threeten.bp.temporal.Temporal; 54 import org.threeten.bp.temporal.TemporalAccessor; 55 import org.threeten.bp.temporal.TemporalAdjuster; 56 import org.threeten.bp.temporal.TemporalAmount; 57 import org.threeten.bp.temporal.TemporalField; 58 import org.threeten.bp.temporal.TemporalUnit; 59 import org.threeten.bp.temporal.ValueRange; 308 private Temporal datetime; 310 FixedAdjuster(Temporal datetime) { in FixedAdjuster() [all …]
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/ |
D | TemporalLevelEntry.java | 22 …Temporal Level sample grouping ('tele') provides a codec-independent sample grouping that can be u… 24 …* A grouping according to temporal level facilitates easy extraction of temporal subsequences, for…
|