HomeSort by relevance Sort by last modified time
    Searched full:progress (Results 601 - 625 of 2620) sorted by null

<<21222324252627282930>>

  /frameworks/base/core/java/android/speech/tts/
BlockingAudioTrack.java 34 * The maximum amount of time to wait for an audio track to make progress while
293 // Check if the audio track has made progress since the last loop
300 // If we've taken too long to make progress, bail.
303 "for AudioTrack to make progress, Aborting");
  /frameworks/base/core/java/android/widget/
MediaController.java 45 * buttons like "Play/Pause", "Rewind", "Fast Forward" and a progress
351 // cause the progress bar to be updated even if mShowing
353 // paused with the progress bar showing the user hits play.
547 // By removing these pending progress messages we make sure
548 // that a) we won't update the progress while the user adjusts
555 public void onProgressChanged(SeekBar bar, int progress, boolean fromuser) {
558 // the progress bar's position.
563 long newposition = (duration * progress) / 1000L;
575 // Ensure that progress is properly updated in the future,
  /frameworks/base/core/res/res/layout/
usb_storage_activity.xml 59 <ProgressBar android:id="@+id/progress"
  /frameworks/base/core/res/res/layout-land/
usb_storage_activity.xml 67 <ProgressBar android:id="@+id/progress"
  /frameworks/base/docs/downloads/training/
ThreadSample.zip 
  /frameworks/base/docs/html/training/animation/
index.jd 60 Learn how to crossfade between two overlapping views. This lesson shows you how to crossfade a progress
  /frameworks/base/test-runner/src/android/test/
SyncBaseInstrumentation.java 58 // and active tables and loaded in memory (therefore sync might be still in progress)
  /libcore/luni/src/main/java/java/nio/channels/
DatagramChannel.java 122 * operation is in progress. The calling thread will have the
173 * operation is in progress. The calling thread will have the
211 * operation is in progress. The calling thread will have the
242 * operation is in progress. The calling thread will have the
282 * operation is in progress. The calling thread will have the
314 * operation is in progress. The calling thread will have the
345 * operation is in progress. The calling thread will have the
385 * operation is in progress. The calling thread will have the
417 * operation is in progress. The calling thread will have the
WritableByteChannel.java 27 * if a write is already in progress on the channel then subsequent writes will
  /packages/apps/Browser/src/com/android/browser/
TitleBar.java 79 mProgress = (PageProgressView) findViewById(R.id.progress);
162 void setShowProgressOnly(boolean progress) {
163 if (progress && !wantsToBeVisible()) {
265 * Update the progress, from 0 to 100.
  /packages/apps/Calendar/src/com/android/calendar/alerts/
InitAlarmsService.java 48 // Delay to avoid race condition of in-progress alarm scheduling in provider.
  /packages/apps/Gallery/src/com/android/camera/
DeleteImage.java 74 // The max progress value of the bar is set to 10000 in the xml file.
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Utils.java 219 float source, float target, float progress) {
227 float result = source + diff * progress;
232 float source, float target, float progress) {
233 return source + progress * (target - source);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 571 ProgressDialog progress; local
573 progress = mSavingProgressDialog.get();
574 if (progress != null) {
575 progress.show();
586 progress = ProgressDialog.show(this, "", progressText, true, false);
587 mSavingProgressDialog = new WeakReference<ProgressDialog>(progress);
592 ProgressDialog progress = mSavingProgressDialog.get(); local
593 if (progress != null)
594 progress.dismiss();
    [all...]
  /packages/apps/Music/src/com/android/music/
AudioPreview.java 102 mSeekBar = (SeekBar) findViewById(R.id.progress);
308 int progress = mPlayer.getCurrentPosition() / mDuration; local
332 public void onProgressChanged(SeekBar bar, int progress, boolean fromuser) {
340 mPlayer.seekTo(progress);
  /packages/apps/Settings/res/layout/
app_percentage_item.xml 53 android:id="@android:id/progress"
  /packages/apps/Stk/res/values-en-rGB/
strings.xml 31 <string name="default_call_setup_msg" msgid="7960194995759849940">"Call in progress?"</string>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
pg.h 20 in progress.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
pg.h 20 in progress.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
pg.h 20 in progress.
  /sdk/templates/activities/LoginActivity/root/res/layout/
activity_login.xml.ftl 5 <!-- Login progress -->
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp     [all...]
  /hardware/ti/wpan/tools/FM/service/src/java/com/ti/server/
StubFmService.java 206 /*Variable to protect the FM APIS when Seek,Tune,CompleteScan is in progress*/
238 /* pause the music while a conversation is in progress.
695 Log.e(TAG, "Seek is in progress.cannot call the API");
735 Log.e(TAG, "Seek is in progress.cannot call the API");
780 Log.e(TAG, "Seek is in progress.cannot call the API");
813 Log.e(TAG, "Seek is in progress.cannot call the API");
    [all...]
  /external/webkit/Source/WebKit/qt/declarative/
qdeclarativewebview.cpp 47 , progress(1.0)
62 qreal progress; member in class:QDeclarativeWebViewPrivate
173 the \l progress property is updated to indicate how much of the page has been
316 \qmlproperty real WebView::progress
317 This property holds the progress of loading the current URL, from 0 to 1.
319 If you just want to know when progress gets to 1, use
322 qreal QDeclarativeWebView::progress() const function in class:QDeclarativeWebView
324 return d->progress;
338 if (d->progress == p / 100.0)
340 d->progress = p / 100.0
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
VideoEditorPreviewTest.java 158 public void onProgress(Object item, int action, int progress) {
159 progressUpdate[i++] = progress;
458 public void onProgress(Object item, int action, int progress) {
460 progressValues[i] = progress;
465 progressValues[i] = progress;
470 progressValues[i] = progress;
696 public void onProgress(Object item, int action, int progress) {
712 String outFileName,int progress) {
    [all...]

Completed in 2335 milliseconds

<<21222324252627282930>>