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

<<11121314151617181920>>

  /packages/apps/Music/res/layout/
music_picker_item.xml 37 <TextView android:id="@+id/duration"
56 android:layout_toLeftOf="@id/duration"
68 android:layout_toLeftOf="@id/duration"
  /packages/apps/Stk/src/com/android/stk/
ToneDialog.java 43 * Handler used to stop tones from playing when the duration ends.
59 // Message id to signal tone duration timeout.
88 int timeout = StkApp.calculateDurationInMilis(settings.duration);
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceSetTest.java 108 values.put(Calendar.Events.DURATION, "P3600S");
124 values.put(Calendar.Events.DURATION, "P3600S");
137 values.put(Calendar.Events.DURATION, "P3600S");
  /cts/tests/tests/view/src/android/view/animation/cts/
ScaleAnimationTest.java 39 private static long DURATION = 1000;
159 scaleAnimation.setDuration(DURATION);
173 // interpolatedTime == startTime + (DURATION / 2)
174 scaleAnimation.getTransformation(startTime + (DURATION / 2), transformation);
179 // interpolatedTime == startTime + DURATION
180 scaleAnimation.getTransformation(startTime + DURATION, transformation);
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
PerfStatCollector.java 42 long startTime, duration; field in class:PerfStatCollector.Item
65 else if (duration >= rthDurat) {
66 // long duration:
108 statCount, duration, lastDuration,
138 duration,
241 current.duration = currentTimeMillis() - current.startTime;
  /external/opencore/pvmi/pvmf/src/
pvmf_media_data.cpp 32 return hdr_ptr->duration;
78 OSCL_EXPORT_REF void PVMFMediaData::setDuration(const uint32& duration)
80 hdr_ptr->duration = duration;
283 media_data_ptr->hdr_ptr->duration = msgHeader->duration;
  /external/opencore/fileformats/mp3/parser/src/
mp3parser.cpp 331 // duration values from various sources
648 // If the mp3Type is XING or VBRI, then first check if they have a valid duration
649 // If the header has no valid duration then just mark the content to as a VBR content
652 // Get the duration
657 // not a valid duration, just set the clip to be VBR type
686 * Purpose : Fetches duration of the clip playing
687 * Duration is returned, by different
709 // if Duration can be obtained from either VBRI/XING Headers or from metadata,
710 // we will not scan the file for duration
723 // If happens return Duration Present to avoid any further ScanMp3File calls
1318 uint32 duration = 0; local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ResultReceiverTest.java 34 private static final long DURATION = 100l;
68 Thread.sleep(DURATION);
ParcelFileDescriptorTest.java 41 private static final long DURATION = 100l;
90 Thread.sleep(DURATION);
99 Thread.sleep(DURATION);
109 mTestThread.joinAndCheck(DURATION * 2);
  /external/icu4c/test/threadtest/
threadtest.h 21 // derived class, which will persist for the duration of the
27 // duration.
  /external/opencore/fileformats/mp4/composer/include/
movieextendsatom.h 44 //get movie extend header (to update fragment duration)
46 void setMovieFragmentDuration(uint32 duration);
trackfragmentatom.h 83 uint32 _interleaveDuration; // determines duration of each TRUN
84 uint32 _fragmentDuration; // determines the duration of samples in this fragment
  /external/skia/include/images/
SkMovie.h 44 SkMSec duration();
49 /** Specify the time code (between 0...duration) to sample a bitmap
  /external/webkit/WebCore/manual-tests/
transition-events.html 17 -webkit-transition-duration: 2s;
29 -webkit-transition-duration: 2s;
  /external/webkit/WebCore/platform/graphics/android/
MediaPlayerPrivateAndroid.h 56 virtual float duration() const;
89 void onPrepared(int duration, int width, int height);
  /external/webkit/WebKit/mac/Plugins/
WebPluginPackage.m 96 CFAbsoluteTime duration = CFAbsoluteTimeGetCurrent() - start;
97 LOG(Plugins, "principalClass took %f seconds for: %@", duration, [self name]);
  /external/webkit/WebKit/mac/WebView/
WebWindowAnimation.h 35 - (id)initWithHintedDuration:(NSTimeInterval)duration window:(NSWindow *)window initalFrame:(NSRect)initialFrame finalFrame:(NSRect)finalFrame;
53 - (id)initWithDuration:(NSTimeInterval)duration window:(NSWindow *)window initialAlpha:(CGFloat)initialAlpha finalAlpha:(CGFloat)finalAlpha;
  /packages/apps/Gallery3D/src/com/cooliris/app/
App.java 122 public void showToast(final String string, final int duration) {
125 Toast.makeText(mContext, string, duration).show();
  /frameworks/base/core/java/android/view/animation/
Animation.java 80 * content for the duration of the animation.
86 * content for the duration of the animation.
141 * The duration of one animation cycle in milliseconds.
192 * Creates a new animation with a duration of 0ms, the default interpolator, with
356 * How long this animation should last. The duration cannot be negative.
358 * @param durationMillis Duration in milliseconds
360 * @throws java.lang.IllegalArgumentException if the duration is < 0
366 throw new IllegalArgumentException("Animation duration cannot be negative");
372 * Ensure that the duration that this animation will run is not longer
373 * than <var>durationMillis</var>. In addition to adjusting the duration
743 final long duration = mDuration; local
    [all...]
  /external/opencore/nodes/pvmp4ffcomposernode/src/
pvmp4ffcn_node.h 289 // Progress and max size / duration routines
292 * Send file size or duration report if enabled.
299 * Check if maximum file size or duration is reached if a maximum is set.
302 * @return PVMFSuccess if feature is enabled and the maximum file size / duration is reached.
303 * PVMFPending if feature is enabled and the max file size / duration has not been reached.
305 * PVMFFailure if informational observer is not set or if max file size or duration is set
311 * Check if maximum file size or duration is reached if a maximum is set.
314 * @return PVMFSuccess if feature is enabled and the maximum file size / duration is reached.
315 * PVMFPending if feature is enabled and the max file size / duration has not been reached.
317 * PVMFFailure if informational observer is not set or if max file size or duration is se
    [all...]
  /frameworks/base/core/java/android/widget/
Toast.java 94 * Show the view for the specified duration.
117 * after the appropriate duration.
145 public void setDuration(int duration) {
146 mDuration = duration;
150 * Return the duration.
226 * @param duration How long to display the message. Either {@link #LENGTH_SHORT} or
230 public static Toast makeText(Context context, CharSequence text, int duration) {
240 result.mDuration = duration;
251 * @param duration How long to display the message. Either {@link #LENGTH_SHORT} or
256 public static Toast makeText(Context context, int resId, int duration)
    [all...]
  /cts/tests/res/anim/
anim_rotate.xml 25 android:duration="700" />
anim_scale.xml 27 android:duration="600" />
anim_translate.xml 24 android:duration="800" />
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiInfoTest.java 52 private static final int DURATION = 10000;
88 Thread.sleep(DURATION);
99 Thread.sleep(DURATION);
189 Thread.sleep(DURATION);

Completed in 142 milliseconds

<<11121314151617181920>>