HomeSort by relevance Sort by last modified time
    Searched full:duration (Results 226 - 250 of 1213) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/provider/
CallLog.java 97 * The duration of the call in seconds
100 public static final String DURATION = "duration";
145 * @param duration call duration in seconds
150 int presentation, int callType, long start, int duration) {
172 values.put(DURATION, Long.valueOf(duration));
  /cts/tests/src/android/provider/cts/
MediaStoreAudioTestHelper.java 91 public static final int DURATION = 340000;
130 values.put(Media.DURATION, DURATION);
164 public static final int DURATION = 338000;
206 values.put(Media.DURATION, DURATION);
  /external/opencore/pvmi/pvmf/src/
pvmf_media_cmd.cpp 36 return hdr_ptr->duration;
77 OSCL_EXPORT_REF void PVMFMediaCmd::setDuration(const uint32& duration)
79 hdr_ptr->duration = duration;
238 media_cmd_ptr->hdr_ptr->duration = msgHeader->duration;
  /external/tcpdump/
ieee802_11.h 126 u_int16_t duration; member in struct:mgmt_header_t
255 u_int16_t duration; member in struct:ctrl_rts_t
266 u_int16_t duration; member in struct:ctrl_cts_t
275 u_int16_t duration; member in struct:ctrl_ack_t
295 u_int16_t duration; member in struct:ctrl_end_t
306 u_int16_t duration; member in struct:ctrl_end_ack_t
  /frameworks/base/graphics/java/android/graphics/drawable/
TransitionDrawable.java 129 * with the specified duration. If the transition is already running, the last
130 * known duration will be used.
132 * @param duration The duration to use if no transition is running.
134 public void reverseTransition(int duration) {
149 mDuration = mOriginalDuration = duration;
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractClientConnAdapter.java 102 /** The duration this is valid for while idle (in ms). */
103 private volatile long duration; field in class:AbstractClientConnAdapter
121 duration = Long.MAX_VALUE;
132 duration = Long.MAX_VALUE;
355 public void setIdleDuration(long duration, TimeUnit unit) {
356 if(duration > 0) {
357 this.duration = unit.toMillis(duration);
359 this.duration = -1;
366 connManager.releaseConnection(this, duration, TimeUnit.MILLISECONDS)
    [all...]
  /frameworks/base/core/java/android/view/
ViewConfiguration.java 34 * Duration of the fade when scrollbars fade away in milliseconds
49 * Defines the duration in milliseconds of the pressed state in child
55 * Defines the duration in milliseconds before a press turns into
61 * Defines the duration in milliseconds a user needs to hold down the
68 * Defines the duration in milliseconds we will wait to see if a touch event
75 * Defines the duration in milliseconds we will wait to see if a touch event
82 * Defines the duration in milliseconds between the first tap's up event and
89 * Defines the duration in milliseconds we want to display zoom controls in response
243 * @return Duration of the fade when scrollbars fade away in milliseconds
274 * @return the duration in milliseconds of the pressed state in chil
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
RotateAnimationTest.java 44 private static final long DURATION = 1000;
132 rotateAnimation.setDuration(DURATION);
153 rotateAnimation.getTransformation(startTime + DURATION / 2, transformation);
161 rotateAnimation.getTransformation(startTime + DURATION, transformation);
200 rotateAnimation.setDuration(DURATION);
221 rotateAnimation.getTransformation(startTime + DURATION / 2, transformation);
229 rotateAnimation.getTransformation(startTime + DURATION, transformation);
TranslateAnimationTest.java 44 private static final long DURATION = 1000;
132 translateAnimation.setDuration(DURATION);
149 translateAnimation.getTransformation(startTime + DURATION / 2, transformation);
155 translateAnimation.getTransformation(startTime + DURATION, transformation);
208 translateAnimation.setDuration(DURATION);
221 translateAnimation.getTransformation(startTime + DURATION / 2, transformation);
229 translateAnimation.getTransformation(startTime + DURATION, transformation);
  /external/opencore/pvmi/pvmf/include/
pvmi_drm_kvp.h 37 * - duration based (a certain amount of time since first use)
42 * "unlimited", "time", "duration", "count", "time-count", "duration-count"
125 * License duration since first use. Duration is specified in number of seconds.
127 #define PVMF_DRM_INFO_LICENSE_DURATION_SINCE_FIRST_USE_QUERY "drm/duration"
128 #define PVMF_DRM_INFO_LICENSE_DURATION_SINCE_FIRST_USE_VALUE "drm/duration;valtype=uint32"
  /external/webkit/WebCore/platform/graphics/cg/
ImageSourceCG.cpp 245 float duration = 0; local
252 CFNumberGetValue(num, kCFNumberFloatType, &duration);
256 // Many annoying ads specify a 0 duration to make an image flash as quickly as possible.
257 // We follow WinIE's behavior and use a duration of 100 ms for any frames that specify
258 // a duration of <= 50 ms. See <http://bugs.webkit.org/show_bug.cgi?id=14413> or Radar 4051389 for more.
259 if (duration < 0.051f)
261 return duration;
  /system/extras/tests/sdcard/
stopwatch.cpp 121 SNPRINTF_OR_RETURN(*str, *size, "# StopWatch %s total/cumulative duration %f Samples: %d\n",
130 SNPRINTF_OR_RETURN(*str, *size, "# Name Iterations Duration Min MinIdx Max MaxIdx SizeKbytes\n");
133 // print each duration sample
221 SNPRINTF_OR_RETURN(*str, *size, "# Average %s duration %f s/op\n", mName, mDuration / mNum);
222 SNPRINTF_OR_RETURN(*str, *size, "# Standard deviation %s duration %f \n", mName, mDeviation);
223 SNPRINTF_OR_RETURN(*str, *size, "# Min %s duration %f [%d]\n", mName, mMinDuration, mMinIdx);
224 SNPRINTF_OR_RETURN(*str, *size, "# Max %s duration %f [%d]\n", mName, mMaxDuration, mMaxIdx);
  /frameworks/base/core/java/android/widget/
Scroller.java 27 * This class encapsulates scrolling. The duration of the scroll
69 * Create a Scroller with the default duration and interpolator.
111 * @return The duration of the scroll in milliseconds.
236 * duration.
262 * @param duration Duration of the scroll in milliseconds.
264 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
267 mDuration = duration;
310 mDuration = (int) (1000 * velocity / mDeceleration); // Duration is in
  /external/opencore/fileformats/mp4/composer/src/
trackfragmentrunatom.cpp 91 (*_psampleEntriesVec)[size-1].sampleDuration = delta; // add sample duration for last sample.. same as second last sample
92 // last sample duration added while rendering
126 size += 4; // sample duration
142 // update duration for last entry
180 // update last sample duration (for last MOOF only)
  /external/opencore/nodes/streaming/jitterbuffernode/include/
pvmf_jitter_buffer_internal.h 150 OSCL_IMPORT_REF void setJitterBufferDurationInMilliSeconds(uint32 duration);
151 OSCL_IMPORT_REF void getJitterBufferDurationInMilliSeconds(uint32& duration);
153 OSCL_IMPORT_REF void setEarlyDecodingTimeInMilliSeconds(uint32 duration);
157 OSCL_IMPORT_REF void setMaxInactivityDurationForMediaInMs(uint32 duration);
158 OSCL_IMPORT_REF void getMaxInactivityDurationForMediaInMs(uint32& duration);
  /frameworks/base/media/java/android/media/
CamcorderProfile.java 58 * Default recording duration in seconds before the session is terminated.
61 public int duration; field in class:CamcorderProfile
139 private CamcorderProfile(int duration,
152 this.duration = duration;
  /packages/providers/CalendarProvider/
maketests.py 37 DURATION = re.compile("DURATION:(.*)")
80 duration = "" variable
96 re_duration = DURATION.match(s)
98 duration = re_duration.group(1) variable
  /external/opencore/android/
pvmediascanner.cpp 76 uint32 duration; local
205 duration = mp3File.GetDuration();
206 sprintf(buffer, "%d", duration);
207 if (!client.addStringTag("duration", buffer)) goto failure;
222 uint64 duration; local
299 // Duration
300 duration = mp4Input->getMovieDuration();
302 // adjust duration to milliseconds if necessary
304 duration = (duration * 1000) / timeScale
423 int duration; local
    [all...]
  /cts/tests/tests/net/src/android/net/wifi/cts/
ScanResultTest.java 50 private static final int DURATION = 10000;
86 Thread.sleep(DURATION);
97 Thread.sleep(DURATION);
  /external/apache-http/src/org/apache/http/conn/
ConnectionKeepAliveStrategy.java 51 * Returns the duration of time which this connection can be safely kept
66 * @return the duration in ms for which it is safe to keep the connection
67 * idle, or <=0 if no suggested duration.
  /external/opencore/nodes/streaming/jitterbuffernode/jitterbuffer/common/include/
pvmf_jb_session_duration_timer.h 42 * Observer class for the session duration timer AO
56 * This object generates event when the session duration expires
68 PVMFStatus setSessionDurationInMS(uint32 duration);
  /frameworks/base/common/java/com/android/common/
GoogleLogTags.logtags 73 # duration is the connection duration.
74 204003 gtalk_conn_close (status|1),(duration|1)
  /frameworks/base/core/tests/coretests/src/android/pim/
RecurrenceSetTest.java 63 String exrule, String exdate, long dtstart, String tzid, String duration, int allDay)
78 assertEquals(duration, values.get(android.provider.Calendar.Events.DURATION));
  /frameworks/base/media/libstagefright/
MP3Extractor.cpp 184 int64_t *duration = NULL) {
198 if (duration) {
199 *duration = 0;
273 if (duration) {
274 *duration = (int64_t)frame * samplesPerFrames[id&1][3-layer] * 1000000LL
487 int64_t duration; local
490 mTableOfContents, NULL, &duration);
491 if (duration > 0) {
492 mMeta->setInt64(kKeyDuration, duration);
600 int64_t duration; local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
CommandParams.java 83 Tone tone, Duration duration, boolean vibrate) {
86 this.settings = new ToneSettings(duration, tone, vibrate);

Completed in 248 milliseconds

1 2 3 4 5 6 7 8 91011>>