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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Browser/res/layout/
title_bar.xml 40 android:id="@+id/progress"
45 android:src="@drawable/progress"
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
WeakAsyncTask.java 23 public abstract class WeakAsyncTask<Params, Progress, Result, WeakTarget> extends
24 AsyncTask<Params, Progress, Result> {
  /packages/apps/Dialer/res/values/
colors.xml 35 <!-- Colour of voicemail progress bar to the right of position indicator. -->
38 <!-- Colour of voicemail progress bar to the left of position indicator. -->
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
TransitionView.java 122 // Initialize the progress value
189 * Resets the transition generation progress.
196 * Sets the transition generation progress.
198 public void setGeneratingTransitionProgress(int progress) {
199 if (progress == 100) {
204 mGeneratingTransitionProgress = progress;
211 * @return true if generation is in progress
220 * @param playback true if playback is in progress
MediaItemView.java 72 // Progress of generation of the effect applied on this media item view.
73 // -1 indicates the generation is not in progress. 0-100 indicates the
74 // generation is in progress. Currently only Ken Burns effect is used with
75 // the progress bar.
132 // Prepare the progress bar rectangles
141 // Initialize the progress value
319 * @param playback true if playback is in progress
327 * Resets the effect generation progress status.
334 * Sets the effect generation progress of this view.
336 public void setGeneratingEffectProgress(int progress) {
    [all...]
AudioTrackLinearLayout.java 150 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
152 mProgress = progress;
310 * @param inProgress true if playback is in progress
316 // is in progress
432 * @param progress The progress
434 public void onGeneratePreviewProgress(String audioTrackId, int action, int progress) {
441 audioTrackView.setProgress(progress);
445 * Set the waveform progress
448 * @param progress The progres
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
TransitionDrawableTest.java 74 // start when there is a transition in progress
81 // start when there is a reverse transition in progress
101 // reset when there is a transition in progress
109 // reset when there is a reverse transition in progress
134 // reverse when there is a transition in progress
142 // reverse when there is a reverse transition in progress
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentRetainInstance.java 96 * we have that sits around incrementing a progress indicator.
106 * the progress up until it has reached the top, then stops and waits.
131 // Now update the progress. Note it is important that
132 // we touch the progress bar with the lock held, so it
177 // Retrieve the progress bar from the target's view hierarchy.
223 * API for our UI to restart the progress thread.
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentRetainInstanceSupport.java 97 * we have that sits around incrementing a progress indicator.
107 * the progress up until it has reached the top, then stops and waits.
132 // Now update the progress. Note it is important that
133 // we touch the progress bar with the lock held, so it
178 // Retrieve the progress bar from the target's view hierarchy.
224 * API for our UI to restart the progress thread.
  /external/chromium/chrome/browser/ui/gtk/download/
download_item_gtk.h 78 // Functions for controlling the progress animation.
79 // Repaint the download progress.
159 // The widget that contains the name of the download and the progress
186 // The widget that contains the animation progress and the file's icon
213 // Progress animation.
233 // For canceling an in progress icon request.
  /frameworks/base/core/java/android/app/backup/
IRestoreSession.aidl 46 * progress callbacks if this method returned zero.
50 * progress callbacks during the restore operation.
62 * progress callbacks if this method returned zero.
66 * progress callbacks during the restore operation.
81 * progress callbacks if this method returned zero.
86 * progress callbacks during the restore operation.
RestoreSession.java 68 * progress callbacks if this method returned zero.
72 * progress callbacks during the restore operation.
97 * progress callbacks if this method returned zero.
101 * progress callbacks during the restore operation.
131 * progress callbacks if this method returned zero.
136 * progress callbacks during the restore operation.
182 * progress callbacks nicely within the usual main-thread lifecycle pattern.
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationShowcaseActivity.java 104 if (i.hasExtra("id") && i.hasExtra("when") && i.hasExtra("progress")) {
108 int progress = i.getIntExtra("progress", 0); local
111 while (progress <= 100) {
117 Log.v(TAG, "id: " + id + " when: " + when + " progress: " + progress);
119 makeUploadNotification(this, progress, id, when));
120 progress+=10;
126 Log.v(TAG, "progress extra " + (i.hasExtra("progress") ? "present" : "missing"))
    [all...]
  /external/chromium/chrome/browser/resources/
downloads.html 114 .progress {
122 html[dir=rtl] .progress {
127 .progress.background {
131 .progress.foreground {
367 createElementWithClassName('div', 'progress background');
372 Download.Progress.width,
373 Download.Progress.height);
376 createElementWithClassName('div', 'progress foreground');
481 * Constants for the progress meter.
483 Download.Progress =
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPathBlender.cpp 38 static inline FloatPoint blendFloatPoint(const FloatPoint& a, const FloatPoint& b, float progress)
40 return FloatPoint((b.x() - a.x()) * progress + a.x(), (b.y() - a.y()) * progress + a.y());
43 static inline float blendAnimatedFloat(float from, float to, float progress)
45 return (to - from) * progress + from;
62 // Transform the animated point to the coordinate mode, needed for the current progress.
84 // Transform the animated point to the coordinate mode, needed for the current progress.
276 bool SVGPathBlender::blendAnimatedPath(float progress, SVGPathSource* fromSource, SVGPathSource* toSource, SVGPathConsumer* consumer)
284 m_isInFirstHalfOfAnimation = progress < 0.5f;
286 m_progress = progress;
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
EmailActivity.java 365 MessagingException result, long accountId, long messageId, int progress) {
366 handleError(result, accountId, progress);
371 MessagingException result, long accountId, long mailboxId, int progress, long tag) {
372 handleError(result, accountId, progress);
377 int progress, int numNewMessages, ArrayList<Long> addedMessages) {
378 handleError(result, accountId, progress);
383 MessagingException result, long accountId, int progress) {
384 handleError(result, accountId, progress);
389 long messageId, long attachmentId, int progress) {
390 handleError(result, accountId, progress);
    [all...]
  /development/samples/RenderScript/Levels/src/com/android/rs/levels/
LevelsDalvikActivity.java 82 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
85 mInBlack = (float)progress;
88 mOutBlack = (float)progress;
91 mInWhite = (float)progress + 127.0f;
94 mOutWhite = (float)progress + 127.0f;
97 mGamma = (float)progress/100.0f;
101 mSaturation = (float)progress / 50.0f;
  /external/dropbear/
progressmeter.c 35 #define PADDING 1 /* padding between the progress indicators */
36 #define UPDATE_INTERVAL 1 /* update the progress meter every second */
53 /* signal handler for updating the progress meter */
56 static time_t start; /* start progress */
57 static time_t last_update; /* last progress update */
61 static volatile off_t *counter; /* progress counter */
266 /* Ensure we complete the progress */
  /external/openssh/
progressmeter.c 45 #define PADDING 1 /* padding between the progress indicators */
46 #define UPDATE_INTERVAL 1 /* update the progress meter every second */
63 /* signal handler for updating the progress meter */
66 static time_t start; /* start progress */
67 static time_t last_update; /* last progress update */
71 static volatile off_t *counter; /* progress counter */
277 /* Ensure we complete the progress */
  /external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
tst_qdeclarativewebview.cpp 102 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0);
132 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0);
143 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0);
178 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0);
197 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0);
214 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0);
240 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0);
260 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0);
293 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0);
319 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AbsSeekBarTest.java 185 int progress = 10; local
186 myAbsSeekBar.setProgress(progress);
187 int max = progress + 1;
190 assertEquals(progress, myAbsSeekBar.getProgress());
193 max = progress - 1;
  /external/chromium/chrome/browser/chromeos/login/
update_view.cc 36 // Y offset for the progress bar.
42 // Progress bar width.
44 // Progress bar height.
130 void UpdateView::SetProgress(int progress) {
131 progress_bar_->SetProgress(progress);
  /external/stlport/test/unit/cppunit/
cppunit_mini.h 38 virtual void progress( const char * /*in_className*/, const char * /*in_testName*/, bool /*ignored*/, bool /* explicit */) {} function in class:Reporter
86 virtual void progress(const char *in_className, const char *in_functionName, bool ignored, bool explicitTest) { function in class:TestCase
89 m_reporter->progress(in_className, in_functionName, ignored, explicitTest);
155 progress(className, #X, ignoring || !shouldRun, !ignoring && Y); \
174 progress(className, #X, ignoring || !shouldRun, !ignoring && Y); \
  /external/webkit/Source/WebCore/loader/
ResourceLoadNotifier.cpp 72 page->progress()->incrementProgress(loader->identifier(), r);
80 page->progress()->incrementProgress(loader->identifier(), data, dataLength);
88 page->progress()->completeProgress(loader->identifier());
95 page->progress()->completeProgress(loader->identifier());
152 oldPage->progress()->completeProgress(identifier);
  /external/webkit/Source/WebKit/mac/WebView/
WebWindowAnimation.m 107 - (void)setCurrentProgress:(NSAnimationProgress)progress
112 [super setCurrentProgress:progress];
120 [_subAnimation setCurrentProgress:progress];
206 - (void)setCurrentProgress:(NSAnimationProgress)progress
212 [super setCurrentProgress:progress];

Completed in 1803 milliseconds

1 2 3 4 5 6 7 8 91011>>