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

1 2 3 4 5 6 7 8 91011>>

  /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_org/content/browser/fileapi/
copy_or_move_operation_delegate_unittest.cc 129 int64 progress) {
130 records->push_back(progress);
666 // Verify progress callback.
675 // Find the first and last progress record.
698 // For directory copy, the progress shouldn't be interlaced.
701 // PROGRESS event's size should be assending order.
705 EXPECT_EQ(FileSystemOperation::PROGRESS, records[j].type);
740 std::vector<int64> progress; local
745 base::Bind(&RecordFileProgressCallback, base::Unretained(&progress)),
746 base::TimeDelta()); // For testing, we need all the progress
796 std::vector<int64> progress; local
847 std::vector<int64> progress; local
    [all...]
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
DesktopView.java 87 // |progress| is 0 at the beginning, 1 at the end.
88 float progress; local
90 progress = (SystemClock.uptimeMillis() - mStartTime) / TOTAL_DURATION_MS;
91 if (progress >= 1) {
100 float radius = size * progress;
101 int alpha = (int)((1 - progress) * 0xff);
  /external/chromium_org/sync/engine/
directory_update_handler_unittest.cc 76 const sync_pb::DataTypeProgressMarker& progress);
124 const sync_pb::DataTypeProgressMarker& progress) {
125 handler->UpdateProgressMarker(progress);
236 // Tests the setting of progress markers.
241 sync_pb::DataTypeProgressMarker progress; local
242 progress.set_data_type_id(GetSpecificsFieldNumberFromModelType(BOOKMARKS));
243 progress.set_token("token");
245 UpdateProgressMarkers(&handler, progress);
250 EXPECT_EQ(progress.token(), saved.token());
251 EXPECT_EQ(progress.data_type_id(), saved.data_type_id())
260 sync_pb::DataTypeProgressMarker progress; local
326 sync_pb::DataTypeProgressMarker progress; local
    [all...]
  /external/chromium_org/sync/syncable/
directory_unittest.cc 176 sync_pb::DataTypeProgressMarker progress; local
177 dir_->GetDownloadProgress(it.Get(), &progress);
178 EXPECT_EQ("", progress.token());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumSkia.cpp 451 double progress = renderProgress->animationProgress(); local
452 if (progress < 0.5)
453 return IntRect(rect.x() + progress * 2 * movableWidth, rect.y(), valueWidth, rect.height());
454 return IntRect(rect.x() + (1.0 - progress) * 2 * movableWidth, rect.y(), valueWidth, rect.height());
  /external/chromium_org/third_party/webrtc/modules/audio_processing/test/
process_test.cc 114 printf(" --no_progress Suppress progress.\n");
169 bool progress = true; local
423 progress = false;
426 progress = false;
694 if (progress && primary_count % 100 == 0) {
    [all...]
  /external/lzma/CPP/7zip/Archive/
XzHandler.cpp 297 COpenCallbackWrap(IArchiveOpenCallback *progress);
309 p.Progress = OpenCallbackProgress;
481 CMyComPtr<ICompressProgressInfo> progress = lps; local
484 CCompressProgressWrap progressWrap(progress);
665 CMyComPtr<ICompressProgressInfo> progress = lps; local
668 CCompressProgressWrap progressWrap(progress);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 120 String description; // the text above progress bar
292 float progress = 0; local
294 progress = -1;
296 progress = (float)item.totalCurrent / item.totalTotal;
309 intent.putExtra(Constants.EXTRA_BT_OPP_TRANSFER_PROGRESS, progress);
  /packages/apps/Email/src/com/android/email/service/
EmailBroadcastProcessorService.java 312 int progress = pref.getOneTimeInitializationProgress(); local
313 final int initialProgress = progress;
315 if (progress < 1) {
317 progress = 1;
321 if (progress < 2) {
323 progress = 2;
328 // Use "progress" to skip the initializations that's already done before.
332 if (progress != initialProgress) {
333 pref.setOneTimeInitializationProgress(progress);
  /packages/apps/MusicFX/src/com/android/musicfx/
ActivityMusic.java 328 public void onProgressChanged(final SeekBar seekBar, final int progress,
332 mAudioSession, ControlPanelEffect.Key.virt_strength, progress);
390 public void onProgressChanged(final SeekBar seekBar, final int progress,
394 mAudioSession, ControlPanelEffect.Key.bb_strength, progress);
690 public void onProgressChanged(final SeekBar seekbar, final int progress, final boolean fromUser) {
695 final short level = (short) (progress + mEqualizerMinBandLevel);
747 final int progress = level - mEqualizerMinBandLevel; local
748 mEqualizerSeekBar[band].setProgress(progress);
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsDetail.java 125 final ProgressBar progress = (ProgressBar) mRootView.findViewById(android.R.id.progress); local
126 progress.setProgress(appLevel);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollAdapterView.java 383 float progress = 0f; // 0 ~ 1, indication if it's expanding or shrinking field in class:ScrollAdapterView.ExpandedView
410 boolean growing = p > progress;
411 boolean shrinking = p < progress;
412 progress = p;
    [all...]
  /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...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
dojo-1.6.1.js     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 917 ProgressDialog progress; local
938 ProgressDialog progress = mSavingProgressDialog.get(); local
    [all...]
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
MainActivity.java 337 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
340 long pos = progress * item.getDuration() / 100;
529 int progress = 0; local
543 progress = (int) (100.0 * (position + timeDelta) / duration);
546 mSeekBar.setProgress(progress);
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
MainActivity.java 337 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
340 long pos = progress * item.getDuration() / 100;
529 int progress = 0; local
543 progress = (int) (100.0 * (position + timeDelta) / duration);
546 mSeekBar.setProgress(progress);
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouterActivity.java 338 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
341 long pos = progress * item.getDuration() / 100;
543 int progress = 0; local
557 progress = (int)(100.0 * (position + timeDelta) / duration);
560 mSeekBar.setProgress(progress);
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
MainActivity.java 337 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
340 long pos = progress * item.getDuration() / 100;
529 int progress = 0; local
543 progress = (int) (100.0 * (position + timeDelta) / duration);
546 mSeekBar.setProgress(progress);
  /external/chromium_org/cc/animation/
transform_operations_unittest.cc 277 SkMScalar progress = 0.25f; local
280 blended_scale.Blend(scale_from, progress);
283 blended_translate.Blend(translate_from, progress);
289 expected, operations_to.Blend(operations_from, progress));
292 static void CheckProgress(SkMScalar progress,
298 expected_matrix.Blend(from_matrix, progress);
300 expected_matrix, to_transform.Blend(from_transform, progress));
363 SkMScalar progress = 0.25f; local
366 expected.Blend(from, progress);
369 expected, operations_to.Blend(operations_from, progress));
379 SkMScalar progress = 0.5f; local
395 SkMScalar progress = 0.5f; local
410 SkMScalar progress = 0.5f; local
432 SkMScalar progress = 0.5f; local
466 SkMScalar progress = 0.5f; local
500 SkMScalar progress = 0.5f; local
534 SkMScalar progress = 0.5f; local
571 SkMScalar progress = 0.5f; local
589 SkMScalar progress = 0.5f; local
607 SkMScalar progress = 0.5f; local
625 SkMScalar progress = 0.5f; local
643 SkMScalar progress = 0.5f; local
662 SkMScalar progress = 0.5f; local
1108 TestProgress progress[] = { local
1147 double progress = static_cast<double>(i) \/ (steps - 1); local
1171 TestProgress progress[] = { local
1203 TestProgress progress[] = { local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 1137 bool SVGSMILElement::progress(SMILTime elapsed, SVGSMILElement* resultElement, bool seekToTime) function in class:WebCore::SVGSMILElement
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
vpxdec.c 60 static const arg_def_t progressarg = ARG_DEF(NULL, "progress", 0,
61 "Show progress after each frame decodes");
496 int do_md5 = 0, progress = 0; local
566 progress = 1;
842 if (progress)
932 if (summary || progress) {
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs.cpp 1020 * splitting that doesn't result in real progress after the rest of
1265 bool progress = false; local
1427 bool progress = false; local
1466 bool progress = false; local
1496 bool progress = false; local
1551 bool progress = false; local
1673 bool progress = false; local
1851 bool progress = false; local
1999 bool progress; local
    [all...]
  /external/chromium_org/third_party/skia/tests/
PathOpsSkpClipTest.cpp 248 SkString progress() { function in struct:TestResult
801 SkDebugf("%s", result.progress().c_str());
    [all...]

Completed in 1914 milliseconds

1 2 3 4 5 6 7 8 91011>>