Home
last modified time | relevance | path

Searched refs:timeScale (Results 1 – 9 of 9) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/util/
DUniversalTimeScale.java335 public static long from(long otherTime, int timeScale) in from() argument
337 TimeScaleData data = fromRangeCheck(otherTime, timeScale); in from()
352 public static BigDecimal bigDecimalFrom(double otherTime, int timeScale) in bigDecimalFrom() argument
354 TimeScaleData data = getTimeScaleData(timeScale); in bigDecimalFrom()
372 public static BigDecimal bigDecimalFrom(long otherTime, int timeScale) in bigDecimalFrom() argument
374 TimeScaleData data = getTimeScaleData(timeScale); in bigDecimalFrom()
392 public static BigDecimal bigDecimalFrom(BigDecimal otherTime, int timeScale) in bigDecimalFrom() argument
394 TimeScaleData data = getTimeScaleData(timeScale); in bigDecimalFrom()
440 public static long toLong(long universalTime, int timeScale) in toLong() argument
442 TimeScaleData data = toRangeCheck(universalTime, timeScale); in toLong()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DUniversalTimeScale.java373 public static long from(long otherTime, int timeScale) in from() argument
375 TimeScaleData data = fromRangeCheck(otherTime, timeScale); in from()
392 public static BigDecimal bigDecimalFrom(double otherTime, int timeScale) in bigDecimalFrom() argument
394 TimeScaleData data = getTimeScaleData(timeScale); in bigDecimalFrom()
414 public static BigDecimal bigDecimalFrom(long otherTime, int timeScale) in bigDecimalFrom() argument
416 TimeScaleData data = getTimeScaleData(timeScale); in bigDecimalFrom()
436 public static BigDecimal bigDecimalFrom(BigDecimal otherTime, int timeScale) in bigDecimalFrom() argument
438 TimeScaleData data = getTimeScaleData(timeScale); in bigDecimalFrom()
486 public static long toLong(long universalTime, int timeScale) in toLong() argument
488 TimeScaleData data = toRangeCheck(universalTime, timeScale); in toLong()
[all …]
/external/icu/icu4c/source/i18n/
Dutmscale.c38 utmscale_getTimeScaleValue(UDateTimeScale timeScale, UTimeScaleValue value, UErrorCode *status) in utmscale_getTimeScaleValue() argument
44 if (timeScale < UDTS_JAVA_TIME || UDTS_MAX_SCALE <= timeScale in utmscale_getTimeScaleValue()
51 return timeScaleTable[timeScale][value]; in utmscale_getTimeScaleValue()
55 utmscale_fromInt64(int64_t otherTime, UDateTimeScale timeScale, UErrorCode *status) in utmscale_fromInt64() argument
63 if ((int32_t)timeScale < 0 || timeScale >= UDTS_MAX_SCALE) { in utmscale_fromInt64()
68 data = (const int64_t *)(&timeScaleTable[timeScale]); in utmscale_fromInt64()
79 utmscale_toInt64(int64_t universalTime, UDateTimeScale timeScale, UErrorCode *status) in utmscale_toInt64() argument
87 if ((int32_t)timeScale < 0 || timeScale >= UDTS_MAX_SCALE) { in utmscale_toInt64()
92 data = (const int64_t *)(&timeScaleTable[timeScale]); in utmscale_toInt64()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26244/
DSegmentIndexBox.java47 long timeScale; field in SegmentIndexBox
75 IsoTypeWriter.writeUInt32(byteBuffer, timeScale); in getContent()
102 timeScale = IsoTypeReader.readUInt32(content); in _parseDetails()
144 return timeScale; in getTimeScale()
147 public void setTimeScale(long timeScale) { in setTimeScale() argument
148 this.timeScale = timeScale; in setTimeScale()
/external/icu/icu4c/source/i18n/unicode/
Dutmscale.h444 utmscale_getTimeScaleValue(UDateTimeScale timeScale, UTimeScaleValue value, UErrorCode *status);
460 utmscale_fromInt64(int64_t otherTime, UDateTimeScale timeScale, UErrorCode *status);
476 utmscale_toInt64(int64_t universalTime, UDateTimeScale timeScale, UErrorCode *status);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
DSyncSampleIntersectFinderImpl.java176 …public long[] getCommonIndices(long[] syncSamples, long[] syncSampleTimes, long timeScale, long[].… in getCommonIndices() argument
237 …(lastSyncSampleTime == -1 || (curSyncSampleTime - lastSyncSampleTime) / timeScale >= minFragmentDu… in getCommonIndices()
294 long timeScale = 1; in calculateTracktimesScalingFactor() local
298 timeScale = lcm(timeScale, track1.getTrackMetaData().getTimescale()); in calculateTracktimesScalingFactor()
302 return timeScale; in calculateTracktimesScalingFactor()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DChangeTimeScaleTrack.java39 long timeScale; field in ChangeTimeScaleTrack
51 this.timeScale = targetTimeScale; in ChangeTimeScaleTrack()
105 trackMetaData.setTimescale(timeScale); in getTrackMetaData()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
DFlatPackageWriterImpl.java38 long timeScale = 10000000; field in FlatPackageWriterImpl
191 …nuMovie.addTrack(new ChangeTimeScaleTrack(track, timeScale, ismvBuilder.getFragmentIntersectionFin… in correctTimescale()
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
DActions.java326 static public TimeScaleAction timeScale (float scale, Action scaledAction) { in timeScale() method in Actions