HomeSort by relevance Sort by last modified time
    Searched refs:Duration (Results 26 - 50 of 113) sorted by null

12 3 4 5

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddbeep.h 35 ULONG Duration;
  /libcore/luni/src/main/java/javax/xml/datatype/
Duration.java 18 //$Id: Duration.java 759828 2009-03-30 01:26:29Z mrglavas $
33 * <p>A Duration object represents a period of Gregorian time,
40 * A negative sign indicates a negative duration.</p>
43 * to use for the duration datatype of XML Schema 1.0 with
47 * <p>Duration objects only have partial order, where two values A and B
52 * <li>A==B (A and B are of the same duration)
57 * The {@link #compare(Duration duration)} method implements this
60 * <p>See the {@link #isLongerThan(Duration)} method for details about
61 * the order relationship among <code>Duration</code> objects.</p
    [all...]
DatatypeFactory.java 140 * <p>Obtain a new instance of a <code>Duration</code>
141 * specifying the <code>Duration</code> as its string representation, "PnYnMnDTnHnMnS",
144 * <p>XML Schema Part 2: Datatypes, 3.2.6 duration, defines <code>duration</code> as:</p>
146 * duration represents a duration of time.
147 * The value space of duration is a six-dimensional space where the coordinates designate the
152 * <p>All six values are set and available from the created {@link Duration}</p>
159 * @param lexicalRepresentation <code>String</code> representation of a <code>Duration</code>.
161 * @return New <code>Duration</code> created from parsing the <code>lexicalRepresentation</code>
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ToneSettings.java 27 public Duration duration; field in class:ToneSettings
31 public ToneSettings(Duration duration, Tone tone, boolean vibrate) {
32 this.duration = duration;
38 duration = in.readParcelable(null);
50 dest.writeParcelable(duration, 0);
TextMessage.java 31 public Duration duration = null; field in class:TextMessage
44 duration = in.readParcelable(null);
61 dest.writeParcelable(duration, 0);
81 userClear + " duration=" + duration;
Input.java 39 public Duration duration; field in class:Input
53 duration = null;
68 duration = in.readParcelable(null);
89 dest.writeParcelable(duration, 0);
ValueParser.java 20 import com.android.internal.telephony.cat.Duration.TimeUnit;
80 * Retrieves Duration information from the Duration COMPREHENSION-TLV
84 * @return A Duration object
87 static Duration retrieveDuration(ComprehensionTlv ctlv) throws ResultException {
100 return new Duration(timeInterval, timeUnit);
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
try_lock_until.pass.cpp 16 // template <class Clock, class Duration>
17 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
28 template <class Clock, class Duration>
29 bool try_lock_shared_until(const std::chrono::time_point<Clock, Duration>& abs_time)
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
try_lock_until.pass.cpp 16 // template <class Clock, class Duration>
17 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
26 template <class Clock, class Duration>
27 bool try_lock_until(const std::chrono::time_point<Clock, Duration>& abs_time)
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
DurationTest.java 30 Duration duration = new Duration(); local
31 duration.parse(str);
33 assertEquals("Duration sign is not equal for " + str, sign, duration.sign);
34 assertEquals("Duration weeks is not equal for " + str, weeks, duration.weeks);
35 assertEquals("Duration days is not equal for " + str, days, duration.days)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
try_lock_until.pass.cpp 14 // template <class Clock, class Duration>
15 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
26 template <class Clock, class Duration>
27 bool try_lock_shared_until(const std::chrono::time_point<Clock, Duration>& abs_time)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
try_lock_until.pass.cpp 14 // template <class Clock, class Duration>
15 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
24 template <class Clock, class Duration>
25 bool try_lock_until(const std::chrono::time_point<Clock, Duration>& abs_time)
  /frameworks/base/core/java/android/hardware/hdmi/
HdmiTimerRecordSources.java 41 * <li>[Duration]
51 * TimeOrDuration duration = HdmiTimerRecordSource.ofDuration(1, 00); // 1 hour duration.
53 * TimerInfo timerInfo = HdmiTimerRecordSource.timerInfoOf(10, 8, starTime, duration,
143 * Creates {@link Duration} for time value.
147 * @return {@link Duration}
165 * Creates {@link Duration} for duration value.
169 * @return {@link Duration}
172 public static Duration durationOf(int hour, int minute)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
ICUDurationTest.java 8 package android.icu.dev.test.duration;
19 import javax.xml.datatype.Duration;
36 * We need just a tiny subset of the Duration API:
38 * to convert the Duration into an internal Period type.
40 private static final class ICUTestDuration extends javax.xml.datatype.Duration {
42 // Duration docs say BigInteger/BigDecimal but
95 public Duration add(Duration rhs) {
105 public int compare(Duration duration) {
281 final Duration duration; field in class:ICUDurationTest.TestCase
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
ICUDurationTest.java 7 package com.ibm.icu.dev.test.duration;
18 import javax.xml.datatype.Duration;
32 * We need just a tiny subset of the Duration API:
34 * to convert the Duration into an internal Period type.
36 private static final class ICUTestDuration extends javax.xml.datatype.Duration {
38 // Duration docs say BigInteger/BigDecimal but
91 public Duration add(Duration rhs) {
101 public int compare(Duration duration) {
277 final Duration duration; field in class:ICUDurationTest.TestCase
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
BasicDurationFormat.java 8 package android.icu.impl.duration;
42 } else if (object instanceof javax.xml.datatype.Duration) {
46 throw new IllegalArgumentException("Cannot format given Object as a Duration");
68 public String formatDurationFrom(long duration, long referenceDate) {
69 return formatter.formatDurationFrom(duration, referenceDate);
75 public String formatDurationFromNow(long duration) {
76 return formatter.formatDurationFromNow(duration);
90 * @see "http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/datatype/Duration.html"
110 javax.xml.datatype.Duration inDuration = (javax.xml.datatype.Duration)obj
112 javax.xml.datatype.Duration duration = inDuration; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
BasicDurationFormat.java 7 package com.ibm.icu.impl.duration;
40 } else if (object instanceof javax.xml.datatype.Duration) {
44 throw new IllegalArgumentException("Cannot format given Object as a Duration");
66 public String formatDurationFrom(long duration, long referenceDate) {
67 return formatter.formatDurationFrom(duration, referenceDate);
73 public String formatDurationFromNow(long duration) {
74 return formatter.formatDurationFromNow(duration);
88 * @see "http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/datatype/Duration.html"
108 javax.xml.datatype.Duration inDuration = (javax.xml.datatype.Duration)obj
110 javax.xml.datatype.Duration duration = inDuration; local
    [all...]
  /external/libchrome/base/debug/
task_annotator.cc 33 tracked_objects::Duration queue_duration =
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
Duration.java 29 public class Duration
38 public Duration()
80 "Duration.parse(str='" + str + "') expected 'P' at index="
120 "Duration.parse(str='" + str + "') unexpected char '"
  /external/libnfc-nxp/src/
phHciNfc_PollingLoop.c 67 /* Default duration (100 ms * 1000) micro seconds,
68 always duration shall be less then 3145680
71 /* Maximum duration */
74 #define PL_DURATION_CALC(duration) \
75 ((uint16_t)((duration)/PL_DURATION_MIN_VALUE))
386 if(p_poll_cfg->Duration > PL_MAX_DURATION)
388 p_poll_cfg->Duration = PL_MAX_DURATION;
395 p_poll_cfg->Duration = ((p_poll_cfg->Duration <
399 p_poll_cfg->Duration );
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialRunLoop.java 32 import org.joda.time.Duration;
51 private static final Duration WORKER_CLEANUP_DURATION = Duration.standardSeconds(2);
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
v8_execution.py 81 def Duration(self):
88 return statistics.DivideIfPossibleOrZero(self.Duration(), self.Count())
94 self.name, 'ms', self.Duration(),
116 self.durations.append(event.duration)
  /external/autotest/frontend/client/src/autotest/tko/
SpreadsheetDataProcessor.java 12 import com.google.gwt.core.client.Duration;
34 private Duration timer;
150 timer = new Duration();
175 timer = new Duration();
  /frameworks/base/core/java/android/widget/
Toast.java 73 public @interface Duration {}
111 * Show the view for the specified duration.
133 * after the appropriate duration.
166 public void setDuration(@Duration int duration) {
167 mDuration = duration;
168 mTN.mDuration = duration;
172 * Return the duration.
175 @Duration
257 * @param duration How long to display the message. Either {@link #LENGTH_SHORT} o
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
GoogleCalendarUriIntentFilter.java 40 import com.android.calendarcommon2.Duration;
55 Events.DURATION, // 3
179 String duration = eventCursor.getString(EVENT_INDEX_DURATION); local
180 if (debug) Log.d(TAG, "duration: " + duration);
181 if (TextUtils.isEmpty(duration)) {
186 Duration d = new Duration();
187 d.parse(duration);
195 if (debug) Log.d(TAG, "duration:" + e.toString())
    [all...]

Completed in 7864 milliseconds

12 3 4 5