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

1 2 3 45 6 7 8 91011>>

  /external/qemu/distrib/jpeg-6b/
wrrle.c 83 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local
139 if (progress != NULL) {
140 progress->total_extra_passes++; /* count file writing as separate pass */
182 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local
215 if (progress != NULL) {
216 progress->pub.pass_limit = cinfo->output_height;
217 progress->pub.pass_counter = 0;
218 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowProgressBar.java 11 private int progress; field in class:ShadowProgressBar
29 if (progress > max) {
30 progress = max;
40 public void setProgress(int progress) {
41 if (!isIndeterminate()) this.progress = Math.min(max, progress);
46 return isIndeterminate ? 0 : progress;
71 if (!isIndeterminate()) setProgress(progress + diff);
  /external/skia/tests/
PathOpsSimplifyDegenerateThreadedTest.cpp 14 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? local
15 if (progress) {
47 if (progress) {
61 if (progress) {
PathOpsSimplifyQuadThreadedTest.cpp 15 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? local
16 if (progress) {
51 if (progress) {
66 if (progress) {
PathOpsSimplifyQuadralateralsThreadedTest.cpp 15 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? local
16 if (progress) {
51 if (progress) {
68 if (progress) {
PathOpsSimplifyRectThreadedTest.cpp 22 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? local
23 if (progress) {
69 if (progress) {
100 if (progress) {
131 if (progress) {
162 if (progress) {
171 if (progress) {
175 if (progress) {
PathOpsSimplifyTrianglesThreadedTest.cpp 14 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? local
15 if (progress) {
50 if (progress) {
65 if (progress) {
  /external/wpa_supplicant_8/src/utils/
browser.c 19 int progress; member in struct:browser_context
40 if (ctx->progress == 100) {
47 snprintf(buf, sizeof(buf), "[%d%%] %s", ctx->progress,
56 ctx->progress = 100 * webkit_web_view_get_progress(view);
57 wpa_printf(MSG_DEBUG, "BROWSER:%s progress=%d", __func__,
58 ctx->progress);
181 g_signal_connect(G_OBJECT(view), "notify::progress",
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
PackageInstallerCompat.java 57 public abstract void recordPackageUpdate(String packageName, int state, int progress);
63 public int progress; field in class:PackageInstallerCompat.PackageInstallInfo
69 public PackageInstallInfo(String packageName, int state, int progress) {
72 this.progress = progress;
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
ProgressService.java 32 private static final String ACTION_PROGRESS = "progress";
49 UpdateRunnable(int id, long when, int progress) {
52 mProgress = progress;
58 Log.v(TAG, "id: " + mId + " when: " + mWhen + " progress: " + mProgress);
80 int progress = intent.getIntExtra("progress", 0); local
81 handler.postDelayed(new UpdateRunnable(id, when, progress), 1000);
84 public static void startProgressUpdater(Context context, int id, long when, int progress) {
90 progressIntent.putExtra("progress", progress);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
hooks.py 130 Test that the progress handler is invoked once it is set.
134 def progress(): function in function:ProgressTests.CheckProgressHandlerUsed
137 con.set_progress_handler(progress, 1)
150 def progress(): function in function:ProgressTests.CheckOpcodeCount
153 con.set_progress_handler(progress, 1)
160 con.set_progress_handler(progress, 2)
169 Test that returning a non-zero value stops the operation in progress.
173 def progress(): function in function:ProgressTests.CheckCancelOperation
176 con.set_progress_handler(progress, 1)
185 Test that setting the progress handler to None clears the previously set handler
189 def progress(): function in function:ProgressTests.CheckClearHandler
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
hooks.py 130 Test that the progress handler is invoked once it is set.
134 def progress(): function in function:ProgressTests.CheckProgressHandlerUsed
137 con.set_progress_handler(progress, 1)
150 def progress(): function in function:ProgressTests.CheckOpcodeCount
153 con.set_progress_handler(progress, 1)
160 con.set_progress_handler(progress, 2)
169 Test that returning a non-zero value stops the operation in progress.
173 def progress(): function in function:ProgressTests.CheckCancelOperation
176 con.set_progress_handler(progress, 1)
185 Test that setting the progress handler to None clears the previously set handler
189 def progress(): function in function:ProgressTests.CheckClearHandler
    [all...]
  /development/perftests/panorama/
benchmark.cpp 93 float progress = 0.0; local
96 mosaic.createMosaic(progress, cancelComputation);
  /external/chromium_org/chrome/browser/download/
download_status_updater_unittest.cc 191 float progress = -1; local
193 EXPECT_TRUE(updater_->GetProgress(&progress, &download_count));
194 EXPECT_FLOAT_EQ(0.0f, progress);
205 float progress = -1; local
209 EXPECT_TRUE(updater_->GetProgress(&progress, &download_count));
210 EXPECT_FLOAT_EQ(0.0f, progress);
226 float progress = -1; local
228 EXPECT_TRUE(updater_->GetProgress(&progress, &download_count));
229 EXPECT_FLOAT_EQ((10+50)/(20.0f+60), progress);
232 // Transition one item to completed and confirm progress is update
293 float progress = -1; local
304 float progress = -1; local
319 float progress = -1; local
338 float progress = -1; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation.cc 169 void Operation::SetProgress(int progress) {
176 progress));
180 if (progress <= progress_) {
188 progress_ = progress;
267 int progress = kProgressComplete * curr_bytes / total_bytes; local
269 if (progress > GetProgress()) {
270 SetProgress(progress);
  /external/chromium_org/chrome/browser/ui/webui/chromeos/imageburner/
imageburner_ui.cc 241 base::DictionaryValue progress; local
245 progress.SetString("progressType", "download");
249 progress.SetString("progressType", "unzip");
252 progress.SetString("progressType", "burn");
259 progress.SetInteger("amountFinished", amount_finished);
260 progress.SetInteger("amountTotal", amount_total);
265 progress.SetString("progressText", progress_text);
267 progress.SetString("progressText", "");
269 progress.SetString("timeLeftText", time_remaining_text);
271 web_ui()->CallJavascriptFunction("browserBridge.updateProgress", progress);
    [all...]
  /external/chromium_org/sync/test/engine/
single_type_mock_server.cc 148 sync_pb::DataTypeProgressMarker progress; local
149 progress.set_data_type_id(type_);
150 progress.set_token("non_null_progress_token");
151 return progress;
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformOperationsTest.cpp 114 float progress[][2] = { local
120 for (size_t j = 0; j < WTF_ARRAY_LENGTH(progress); ++j) {
169 float progress[][2] = { local
175 for (size_t j = 0; j < WTF_ARRAY_LENGTH(progress); ++j) {
348 float progress[][2] = { local
355 for (size_t k = 0; k < WTF_ARRAY_LENGTH(progress); ++k) {
365 EmpiricallyTestBounds(fromOps, toOps, progress[k][0], progress[k][1]);
394 float progress[][2] = { local
400 for (size_t j = 0; j < WTF_ARRAY_LENGTH(progress); ++j)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_function_detect_recursion.cpp 176 progress = false;
240 bool progress; member in class:has_recursion_visitor
280 visitor->progress = true;
341 v.progress = false;
343 } while (v.progress);
367 v.progress = false;
369 } while (v.progress);
loop_analysis.cpp 278 * The last requirement is the reason for the progress loop. A variable
282 bool progress; local
284 progress = false;
300 progress = true;
307 } while (progress);
loop_controls.cpp 160 this->progress = false;
167 bool progress; member in class:loop_control_visitor
270 this->progress = true;
303 return v.progress;
lower_clip_distance.cpp 54 : progress(false), old_clip_distance_var(NULL),
66 bool progress; member in class:lower_clip_distance_visitor
94 this->progress = true;
191 this->progress = true;
343 return v.progress;
lower_ubo_reference.cpp 61 bool progress; member in class:__anon17880::lower_ubo_reference_visitor
181 progress = true;
310 v.progress = false;
312 } while (v.progress);
main.cpp 176 bool progress; local
178 progress = do_common_optimization(shader->ir, false, false, 32);
179 } while (progress);
opt_copy_propagation.cpp 75 progress = false;
105 bool progress; member in class:__anon17885::ir_copy_propagation_visitor
175 this->progress = true;
330 this->progress = true;
348 return v.progress;

Completed in 1563 milliseconds

1 2 3 45 6 7 8 91011>>