Searched refs:progress (Results 1 - 25 of 654) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DStatusBarController.java42 private final JProgressBar progress = new JProgressBar(); field in class:StatusBarController
51 progress.setPreferredSize(new Dimension(100, 15));
59 panel.add(progress);
84 this.progress.setIndeterminate(value);
88 this.progress.setIndeterminate(false);
89 this.progress.setValue(value);
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/blktrace/btt/doc/
H A Dbtt.tex1029 granularity) values describing the progress it is making through the
/external/bzip2/
H A Dbzlib.c67 "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;
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwContentsClient.java107 public abstract void onProgressChanged(int progress); argument
H A DAwWebContentsDelegateAdapter.java49 public void onLoadProgressChanged(int progress) { argument
50 mContentsClient.onProgressChanged(progress);
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
H A DNullContentsClient.java65 public void onProgressChanged(int progress) { argument
/external/chromium_org/ash/wm/
H A Dapp_list_controller.cc508 const double progress = 1.0 - pow(1.0 - transition.progress, 4); local
509 const int shift = kMaxOverScrollShift * progress * dir;
/external/chromium_org/athena/content/
H A Dweb_activity.cc190 // If there is a progress bar, we need to get rid of it now since its
327 double progress) OVERRIDE {
328 if (!progress)
336 0, 0, progress * progress_bar_->parent()->bounds().width(), 3));
337 if (progress < 1)
/external/chromium_org/athena/home/
H A Dhome_card_gesture_manager.cc126 float progress = (last_estimated_height_ - smaller_height) / local
128 progress = std::min(1.0f, std::max(0.0f, progress));
133 progress);
H A Dhome_card_gesture_manager.h31 // |from_state| and |to_state|, and that the level of progress is at
32 // |progress|, which is in the range (0, 1]. The home card was previously
39 float progress) = 0;
H A Dhome_card_gesture_manager_unittest.cc108 float progress) OVERRIDE {
111 last_progress_ = progress;
177 // Test gesture progress when the gesture is initiated when the home card is in
204 // Test gesture progress when the gesture is initiated when the home card is in
H A Dhome_card_impl.cc159 float progress) {
163 main_view_->SetLayoutState(1.0f - progress);
165 main_view_->SetLayoutState(progress);
396 State from_state, State to_state, float progress) {
400 (from_state == VISIBLE_MINIMIZED) ? 1.0f - progress : progress;
406 progress,
410 home_card_view_->SetStateProgress(from_state, to_state, progress);
157 SetStateProgress(HomeCard::State from_state, HomeCard::State to_state, float progress) argument
395 OnGestureProgressed( State from_state, State to_state, float progress) argument
H A Dhome_card_impl.h84 float progress) OVERRIDE;
/external/chromium_org/athena/wm/
H A Dwindow_overview_mode.cc42 float progress; member in struct:__anon2168::WindowOverviewState
83 if (state->progress < kProgressToStartShrinking) {
86 state->progress / kProgressToStartShrinking,
95 state->progress, state->min_y, state->max_y);
102 // Sets the progress-state for the window in the overview mode.
103 void SetWindowProgress(aura::Window* window, float progress) { argument
105 state->progress = progress;
171 SetWindowProgress(animate_window, target_state->progress);
292 state->progress
305 float progress = 0.f; local
[all...]
/external/chromium_org/cc/animation/
H A Dkeyframed_animation_curve.cc34 float progress = local
39 progress = keyframes[i]->timing_function()->GetValue(progress);
40 return progress;
200 float progress = GetProgress(t, i, keyframes_); local
203 progress, keyframes_[i]->Value(), keyframes_[i + 1]->Value());
247 float progress = GetProgress(t, i, keyframes_); local
250 (keyframes_[i+1]->Value() - keyframes_[i]->Value()) * progress;
289 double progress = (t - (*keyframes)[i]->Time()) / local
293 progress
[all...]
H A Dscroll_offset_animation_curve.cc78 double progress = (timing_function_->GetValue(t / duration)); local
80 progress, initial_value_.x(), target_value_.x()),
82 progress, initial_value_.y(), target_value_.y()));
H A Dscrollbar_animation_controller.cc36 float progress = AnimationProgressAtTime(now); local
37 RunAnimationFrame(progress);
48 float progress = delta.InSecondsF() / duration_.InSecondsF(); local
49 return std::max(std::min(progress, 1.f), 0.f);
H A Dscrollbar_animation_controller.h45 virtual void RunAnimationFrame(float progress) = 0;
51 // Returns how far through the animation we are as a progress value from
H A Dscrollbar_animation_controller_linear_fade.cc35 void ScrollbarAnimationControllerLinearFade::RunAnimationFrame(float progress) { argument
36 ApplyOpacityToScrollbars(1.f - progress);
37 if (progress == 1.f)
H A Dscrollbar_animation_controller_linear_fade.h35 virtual void RunAnimationFrame(float progress) OVERRIDE;
H A Dscrollbar_animation_controller_thinning.cc48 void ScrollbarAnimationControllerThinning::RunAnimationFrame(float progress) { argument
49 float opacity = OpacityAtAnimationProgress(progress);
51 progress);
53 if (progress == 1.f) {
100 float progress) {
103 float factor = opacity_change_ == INCREASE ? progress : (1.f - progress);
110 float progress) {
113 float factor = thickness_change_ == INCREASE ? progress : (1.f - progress);
[all...]
H A Dscrollbar_animation_controller_thinning.h45 virtual void RunAnimationFrame(float progress) OVERRIDE;
55 float OpacityAtAnimationProgress(float progress);
56 float ThumbThicknessScaleAtAnimationProgress(float progress);
H A Dtransform_operation.cc89 SkMScalar progress) {
90 return from * (1 - progress) + to * progress;
96 SkMScalar progress,
116 result->Translate3d(BlendSkMScalars(from_x, to_x, progress),
117 BlendSkMScalars(from_y, to_y, progress),
118 BlendSkMScalars(from_z, to_z, progress));
129 BlendSkMScalars(from_angle, to_angle, progress));
138 if (!result->Blend(from_matrix, progress))
150 result->Scale3d(BlendSkMScalars(from_x, to_x, progress),
87 BlendSkMScalars(SkMScalar from, SkMScalar to, SkMScalar progress) argument
93 BlendTransformOperations( const TransformOperation* from, const TransformOperation* to, SkMScalar progress, gfx::Transform* result) argument
[all...]
H A Dtransform_operation.h61 SkMScalar progress,

Completed in 414 milliseconds

1234567891011>>