HomeSort by relevance Sort by last modified time
    Searched defs:progress (Results 101 - 125 of 151) sorted by null

1 2 3 45 6 7

  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp 753 double progress = webPage->corePage()->progress()->estimatedProgress(); local
754 webPage->send(Messages::WebPageProxy::DidChangeProgress(progress));
    [all...]
  /external/webkit/Tools/EWebLauncher/
main.c 242 title_set(Ecore_Evas *ee, const char *title, int progress)
254 if (progress < 100)
255 size = snprintf(label, sizeof(label), "%s (%d%%)%s%s", title, progress, separator, appname);
295 double *progress = (double *)event_info; local
297 title_set(app->ee, ewk_view_title_get(app->browser), *progress * 100);
713 evas_object_smart_callback_add(app->browser, "load,progress", on_progress, app);
  /packages/apps/Browser/src/com/android/browser/
PhoneUi.java 113 int progress = tab.getLoadProgress(); local
114 mTitleBar.setProgress(progress);
115 if (progress == 100) {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PositionController.java 434 float progress; local
436 progress = 1;
438 progress = (now - mAnimationStartTime) / mAnimationDuration;
441 if (progress >= 1) {
442 progress = 1;
448 float f = 1 - progress;
452 progress = 1 - f; // linear
455 progress = 1 - f * f; // quadratic
460 progress = 1 - f * f * f * f * f; // x^5
464 flingInterpolate(progress);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
CryptKeeper.java 63 * -e "com.android.settings.CryptKeeper.DEBUG_FORCE_VIEW" "progress" \
85 private static final String FORCE_VIEW_PROGRESS = "progress";
279 String progress = SystemProperties.get("vold.encrypt_progress"); local
280 if (!"".equals(progress) || isDebugView(FORCE_VIEW_PROGRESS)) {
330 Log.d(TAG, "Encryption progress screen initializing.");
378 int progress = 0; local
380 // Force a 50% progress state when debugging the view.
381 progress = isDebugView() ? 50 : Integer.parseInt(state);
383 Log.w(TAG, "Error parsing progress: " + e.toString());
387 Log.v(TAG, "Encryption progress: " + progress)
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
AudioTrackLinearLayout.java 148 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
150 mAudioTrack.setAppVolume(progress);
152 mAudioTrack.getId(), progress); local
307 * @param inProgress true if playback is in progress
313 // is in progress
429 * @param progress The progress
431 public void onGeneratePreviewProgress(String audioTrackId, int action, int progress) {
438 audioTrackView.setProgress(progress);
442 * Set the waveform progress
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
CodeGen.java 1131 private IProgressMonitor progress; field in class:CodeGen
    [all...]
  /external/bluetooth/glib/gio/
gfile.c 4736 ProgressData *progress = user_data; local
4761 ProgressData *progress; local
    [all...]
  /external/e2fsprogs/e2fsck/
e2fsck.h 170 #define E2F_FLAG_PROG_BAR 0x0020 /* Progress bar on screen */
171 #define E2F_FLAG_PROG_SUPPRESS 0x0040 /* Progress suspended */
222 int (*progress)(e2fsck_t ctx, int pass, unsigned long cur, member in struct:e2fsck_struct
309 * How we display the progress update (for unix)
  /external/e2fsprogs/misc/
mke2fs.c 307 * These functions implement a generalized progress meter.
316 static void progress_init(struct progress_struct *progress,
321 memset(progress, 0, sizeof(struct progress_struct));
329 sprintf(progress->format, "%%%dd/%%%dld", i, i);
330 memset(progress->backup, '\b', sizeof(progress->backup)-1);
331 progress->backup[sizeof(progress->backup)-1] = 0;
332 if ((2*i)+1 < (int) sizeof(progress->backup))
333 progress->backup[(2*i)+1] = 0
365 struct progress_struct progress; local
550 struct progress_struct progress; local
    [all...]
  /external/openssl/ssl/
ssltest.c 1313 int progress = 0; local
    [all...]
  /external/quake/src/com/android/quake/
DownloaderActivity.java 168 mProgress = (TextView) findViewById(R.id.progress);
251 private void onReportProgress(int progress) {
252 mProgress.setText(mPercentFormat.format(progress / 10000.0));
259 if ((delta > 3 * MS_PER_SECOND) && (progress > 100)) {
260 long totalTime = 10000 * delta / progress;
545 private void reportProgress(int progress) {
547 Message.obtain(mHandler, MSG_REPORT_PROGRESS, progress, 0));
961 int progress = (int) (Math.min(mTotalExpectedSize, local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.cpp 807 // 7 - Queue a task to fire a progress event called error at the media element, in
944 // Schedule one last progress event so we guarantee that at least one is fired
1058 unsigned progress = m_player->bytesLoaded(); local
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_frame.cpp 1932 double progress = sd->frame->page()->progress()->estimatedProgress(); local
    [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 59 * Visual indicator of progress in some operation. Displays a bar to the user
61 * change the amount of progress (modifying the length of the bar) as it moves
62 * forward. There is also a secondary progress displayable on a progress bar
63 * which is useful for displaying intermediate progress, such as the buffer
64 * level during a streaming playback progress bar.
68 * A progress bar can also be made indeterminate. In indeterminate mode, the
69 * progress bar shows a cyclic animation without an indication of progress. This mode is used by
70 * applications when the length of the task is unknown. The indeterminate progress bar can be eithe
1041 int progress; field in class:ProgressBar.SavedState
    [all...]
  /frameworks/base/media/jni/mediaeditor/
VideoEditorMain.cpp 136 int progress);
2753 M4OSA_UInt8 progress = 0; local
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
TestShellActivity.java 206 int progress = (int)(ratio * Window.PROGRESS_END); local
207 getWindow().setFeatureInt(Window.FEATURE_PROGRESS, progress);
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 1094 public boolean progress() { method in class:OldDatabaseTest.TestProgressHandler
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 59 * Visual indicator of progress in some operation. Displays a bar to the user
61 * change the amount of progress (modifying the length of the bar) as it moves
62 * forward. There is also a secondary progress displayable on a progress bar
63 * which is useful for displaying intermediate progress, such as the buffer
64 * level during a streaming playback progress bar.
68 * A progress bar can also be made indeterminate. In indeterminate mode, the
69 * progress bar shows a cyclic animation without an indication of progress. This mode is used by
70 * applications when the length of the task is unknown. The indeterminate progress bar can be eithe
1017 int progress; field in class:ProgressBar.SavedState
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageDetail.java 206 final ProgressBar progress = (ProgressBar) mRootView.findViewById(android.R.id.progress); local
207 progress.setProgress(gaugeValue);
  /prebuilt/common/swing-worker/
swing-worker-1.1.jar 
  /external/chromium/chrome/browser/ui/gtk/
browser_window_gtk.cc 1940 double progress = bookmark_bar_.get() && !bookmark_bar_is_floating_ ? local
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebCoreFrameBridge.cpp 762 int progress = static_cast<int>(100 * newProgress); local
763 env->CallVoidMethod(javaFrame.get(), mJavaFrame->mSetProgress, progress);
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 147 private JProgressBar progress; field in class:Workspace
424 progress = new JProgressBar();
425 progress.setVisible(false);
426 progress.setIndeterminate(true);
427 progress.putClientProperty("JComponent.sizeVariant", "mini");
428 progress.putClientProperty("JProgressBar.style", "circular");
429 rightSide.add(progress);
    [all...]
  /external/libxml2/
relaxng.c 9983 int progress; local
    [all...]

Completed in 2023 milliseconds

1 2 3 45 6 7