| /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/ |
| PowerTestActivity.java | 157 int progress = webView.getProgress(); local 159 Log.v(LOGTAG, "Page timeout triggered, progress = " + progress);
|
| /frameworks/support/v4/java/android/support/v4/app/ |
| ListFragment.java | 86 * way to have the built-in indeterminant progress state be shown. 103 ProgressBar progress = new ProgressBar(context, null, local 105 pframe.addView(progress, new FrameLayout.LayoutParams( 246 * this time an indeterminant progress indicator will be shown instead. 254 * @param shown If true, the list view is shown; if false, the progress 272 * this time an indeterminant progress indicator will be shown instead. 274 * @param shown If true, the list view is shown; if false, the progress 368 // have our data right away and start with the progress indicator.
|
| /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) { 336 mPlayer.seekTo(progress);
|
| /packages/apps/SoundRecorder/src/com/android/soundrecorder/ |
| Recorder.java | 105 public int progress() { method in class:Recorder
|
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/ |
| CalibrateVolumeActivity.java | 125 int progress = (max / 2 * rms) / Math.round(TARGET_RMS); local 126 if (progress > max) progress = max; 127 mSlider.setProgress(progress);
|
| /cts/tests/tests/widget/src/android/widget/cts/ |
| ProgressBarTest.java | 185 // set Progress 424 // set Progress 425 int progress = 10; local 426 progressBar.setProgress(progress); 429 int max = progress + 1; 432 assertEquals(progress, progressBar.getProgress()); 434 max = progress - 1;
|
| /external/bzip2/ |
| bzlib.c | 67 "possibly monitoring progress in detail with the -vv flag.\n" 409 Bool progress; local 424 progress = handle_compress ( strm ); 425 return progress ? BZ_RUN_OK : BZ_PARAM_ERROR; 446 progress = handle_compress ( strm ); 456 progress = handle_compress ( strm ); 457 if (!progress) return BZ_SEQUENCE_ERROR; [all...] |
| /external/chromium/chrome/browser/ui/gtk/download/ |
| download_item_gtk.cc | 102 // an in-progress download that has since completed. 230 // Put the download progress icon on the left of the labels. 444 int progress = static_cast<int>((dangerous_hbox_full_width_ - local 447 int showing_width = dangerous_hbox_start_width_ + progress; 497 // Download progress animation functions. [all...] |
| /external/v8/test/cctest/ |
| test-parsing.cc | 570 unsigned progress = stream.SeekForward(12); local 571 i += progress;
|
| /external/webkit/Source/WebCore/rendering/ |
| RenderThemeChromiumSkia.cpp | 568 double progress = renderProgress->animationProgress(); local 569 if (progress < 0.5) 570 return IntRect(rect.x() + progress * 2 * movableWidth, rect.y(), valueWidth, rect.height()); 571 return IntRect(rect.x() + (1.0 - progress) * 2 * movableWidth, rect.y(), valueWidth, rect.height());
|
| /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/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
| NotificationRowLayout.java | 349 float progress = 1.0f; local 351 progress = 1.0f - mDisappearingViews.get(child).getAnimatedFraction(); 353 progress = 1.0f - mAppearingViews.get(child).getAnimatedFraction(); 355 if (progress > 1.0f) { 357 Slog.w(TAG, "progress=" + progress + " > 1!!! " + child); 359 progress = 1f; 361 final int thisRowHeight = (int)(progress * mRowHeight);
|
| /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
| ReliabilityTestActivity.java | 161 int progress = webView.getProgress(); local 163 Log.v(LOGTAG, "Page timeout triggered, progress = " + progress);
|
| /packages/apps/Browser/src/com/android/browser/ |
| XLargeUi.java | 164 int progress = tab.getLoadProgress(); local 165 mTabBar.onProgress(tab, progress); 167 mTitleBar.setProgress(progress);
|
| /packages/apps/MusicFX/src/com/android/musicfx/ |
| ActivityMusic.java | 323 public void onProgressChanged(final SeekBar seekBar, final int progress, 327 mAudioSession, ControlPanelEffect.Key.virt_strength, progress); 375 public void onProgressChanged(final SeekBar seekBar, final int progress, 379 mAudioSession, ControlPanelEffect.Key.bb_strength, progress); 661 public void onProgressChanged(final SeekBar seekbar, final int progress, final boolean fromUser) { 666 final short level = (short) (progress + mEqualizerMinBandLevel); 718 final int progress = level - mEqualizerMinBandLevel; local 719 mEqualizerSeekBar[band].setProgress(progress);
|
| /packages/apps/Settings/src/com/android/settings/ |
| TrustedCredentialsSettings.java | 74 private Tab(String tag, int label, int view, int progress, int list, boolean checkbox) { 78 mProgress = progress; 227 int progress = 0; local 236 publishProgress(++progress, max); 242 int progress = progressAndMax[0]; local 247 mProgressBar.setProgress(progress);
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
| AndroidTargetParser.java | 83 * @param monitor A progress monitor. Can be null. Caller is responsible for calling done. 88 SubMonitor progress = SubMonitor.convert(monitor, local 99 preload(classLoader, progress.newChild(40, SubMonitor.SUPPRESS_NONE)); 101 if (progress.isCanceled()) { 106 progress.subTask("Permissions"); 108 progress.worked(1); 110 if (progress.isCanceled()) { 115 progress.subTask("Intents"); 122 progress.worked(1); 124 if (progress.isCanceled()) [all...] |
| /system/core/toolbox/ |
| dd.c | 92 extern int progress; 117 int progress = 0; /* display sign of life */ variable 596 if (progress) 1000 if (progress) 1081 { "progress", f_progress, 0, 0 }, 1284 progress = 1;
|
| /bootable/recovery/ |
| ui.c | 45 6, // indeterminate progress bar frames 75 // Progress bar scope of current operation 79 // Set to 1 when both graphics pages are the same (except for the progress bar) 142 // Draw the progress bar (if any) on the screen. Does not flip pages. 158 // Erase behind the progress bar (in case this was a progress-only update) 163 float progress = gProgressScopeStart + gProgress * gProgressScopeSize; local 164 int pos = (int) (progress * width); 235 // Updates only the progress bar, if possible, otherwise redraws the screen. 243 draw_progress_locked(); // Draw only the progress bar and overlay 278 float progress = 1.0 * elapsed \/ duration; local [all...] |
| /development/tools/glesv2debugger/src/com/android/glesv2debugger/ |
| CodeGen.java | 1131 private IProgressMonitor progress; field in class:CodeGen [all...] |
| /external/e2fsprogs/misc/ |
| fsck.c | 112 int progress = 0; variable 454 if (progress) { 627 if (progress && (inst->flags & FLAG_PROGRESS) && 1169 progress++;
|
| /external/libvpx/ |
| vpxdec.c | 76 static const arg_def_t progressarg = ARG_DEF(NULL, "progress", 0, 77 "Show progress after each frame decodes"); 703 int frame_in = 0, frame_out = 0, flipuv = 0, noblit = 0, do_md5 = 0, progress = 0; local 769 progress = 1; 1043 if (progress) 1099 if (summary || progress) [all...] |
| /external/webkit/Source/WebCore/page/ |
| Page.h | 190 ProgressTracker* progress() const { return m_progress.get(); } function in class:WebCore::Page
|
| /external/webkit/Source/WebCore/page/animation/ |
| AnimationBase.cpp | 80 static inline int blendFunc(const AnimationBase*, int from, int to, double progress) 82 return int(from + (to - from) * progress); 85 static inline double blendFunc(const AnimationBase*, double from, double to, double progress) 87 return from + (to - from) * progress; 90 static inline float blendFunc(const AnimationBase*, float from, float to, double progress) 92 return narrowPrecisionToFloat(from + (to - from) * progress); 95 static inline Color blendFunc(const AnimationBase* anim, const Color& from, const Color& to, double progress) 98 if (progress == 1 && !to.isValid()) 106 Color premultBlended(blendFunc(anim, premultFrom.red(), premultTo.red(), progress), 107 blendFunc(anim, premultFrom.green(), premultTo.green(), progress), 1293 double AnimationBase::progress(double scale, double offset, const TimingFunction* tf) const function in class:WebCore::AnimationBase [all...] |
| /external/webkit/Source/WebCore/svg/animation/ |
| SVGSMILElement.cpp | 882 void SVGSMILElement::progress(SMILTime elapsed, SVGSMILElement* resultElement) function in class:WebCore::SVGSMILElement [all...] |