HomeSort by relevance Sort by last modified time
    Searched refs:EdgeEffect (Results 1 - 21 of 21) sorted by null

  /frameworks/support/v4/ics/android/support/v4/widget/
EdgeEffectCompatIcs.java 20 import android.widget.EdgeEffect;
23 * Stub implementation that contains a real EdgeEffect on ICS.
30 return new EdgeEffect(context);
33 public static void setSize(Object edgeEffect, int width, int height) {
34 ((EdgeEffect) edgeEffect).setSize(width, height);
37 public static boolean isFinished(Object edgeEffect) {
38 return ((EdgeEffect) edgeEffect).isFinished();
41 public static void finish(Object edgeEffect) {
    [all...]
  /external/chromium_org/content/browser/android/
edge_effect.h 21 // |EdgeEffect| mirrors its Android counterpart, EdgeEffect.java.
25 class EdgeEffect : public EdgeEffectBase {
27 explicit EdgeEffect(ui::SystemUIResourceManager* resource_manager,
29 virtual ~EdgeEffect();
77 DISALLOW_COPY_AND_ASSIGN(EdgeEffect);
edge_effect.cc 78 class EdgeEffect::EffectLayer {
117 EdgeEffect::EdgeEffect(ui::SystemUIResourceManager* resource_manager,
141 EdgeEffect::~EdgeEffect() {
144 bool EdgeEffect::IsFinished() const {
148 void EdgeEffect::Finish() {
155 void EdgeEffect::Pull(base::TimeTicks current_time,
199 void EdgeEffect::Release(base::TimeTicks current_time) {
220 void EdgeEffect::Absorb(base::TimeTicks current_time, float velocity)
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
OverScrollGlow.java 10 import android.widget.EdgeEffect;
18 private EdgeEffect mEdgeGlowTop;
19 private EdgeEffect mEdgeGlowBottom;
20 private EdgeEffect mEdgeGlowLeft;
21 private EdgeEffect mEdgeGlowRight;
30 mEdgeGlowTop = new EdgeEffect(context);
31 mEdgeGlowBottom = new EdgeEffect(context);
32 mEdgeGlowLeft = new EdgeEffect(context);
33 mEdgeGlowRight = new EdgeEffect(context);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
EdgeView.java 24 // EdgeView draws EdgeEffect (blue glow) at four sides of the view.
43 private EdgeEffect[] mEffect = new EdgeEffect[4];
48 mEffect[i] = new EdgeEffect(context);
68 // EdgeEffect draws the TOP edge from (0, 0) to (w, Y * h) where Y
EdgeEffect.java 29 // This is copied from android.widget.EdgeEffect with some small modifications:
41 * <p>EdgeEffect is stateful. Custom widgets using EdgeEffect should create an
55 public class EdgeEffect {
57 private static final String TAG = "EdgeEffect";
133 * Construct a new EdgeEffect with a theme appropriate for the provided context.
134 * @param context Context used to provide theming and resource information for the EdgeEffect
136 public EdgeEffect(Context context) {
156 * Reports if this EdgeEffect's animation is finished. If this method returns false
  /frameworks/base/core/java/android/widget/
EdgeEffect.java 36 * <p>EdgeEffect is stateful. Custom widgets using EdgeEffect should create an
50 public class EdgeEffect {
52 private static final String TAG = "EdgeEffect";
115 * Construct a new EdgeEffect with a theme appropriate for the provided context.
116 * @param context Context used to provide theming and resource information for the EdgeEffect
118 public EdgeEffect(Context context) {
121 com.android.internal.R.styleable.EdgeEffect);
152 * Reports if this EdgeEffect's animation is finished. If this method returns false
176 * <p>Views using EdgeEffect should favor {@link #onPull(float, float)} when the displacemen
    [all...]
HorizontalScrollView.java 76 private EdgeEffect mEdgeGlowLeft;
77 private EdgeEffect mEdgeGlowRight;
    [all...]
ScrollView.java 82 private EdgeEffect mEdgeGlowTop;
83 private EdgeEffect mEdgeGlowBottom;
    [all...]
AbsListView.java 655 private EdgeEffect mEdgeGlowTop;
660 private EdgeEffect mEdgeGlowBottom;
878 mEdgeGlowTop = new EdgeEffect(context);
879 mEdgeGlowBottom = new EdgeEffect(context);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
MultiShrinkScroller.java 37 import android.widget.EdgeEffect;
62 * order to track velocity, modify EdgeEffect color & perform the originally specified animations.
146 private final EdgeEffect mEdgeGlowBottom;
147 private final EdgeEffect mEdgeGlowTop;
244 // Drawing must be enabled in order to support EdgeEffect
247 mEdgeGlowBottom = new EdgeEffect(context);
248 mEdgeGlowTop = new EdgeEffect(context);
797 // Examine the fling results in order to activate EdgeEffect and halt flings.
    [all...]
  /packages/apps/FMRadio/src/com/android/fmradio/views/
FmScroller.java 52 import android.widget.EdgeEffect;
113 private final EdgeEffect mEdgeGlowBottom;
174 // Drawing must be enabled in order to support EdgeEffect
177 mEdgeGlowBottom = new EdgeEffect(context);
537 // Examine the fling results in order to activate EdgeEffect when we
566 // Draw the EdgeEffect on the bottom of the Window (Or a little bit
568 // of the Window if we start to scroll upwards while EdgeEffect is
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_android.cc 91 // Used for conditional creation of EdgeEffect types for overscroll.
183 new EdgeEffect(resource_manager, device_scale_factor));
198 EdgeEffect::PreloadResources(system_resource_manager);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
DayView.java 73 import android.widget.EdgeEffect;
639 private final EdgeEffect mEdgeEffectTop;
640 private final EdgeEffect mEdgeEffectBottom;
769 mEdgeEffectTop = new EdgeEffect(context);
770 mEdgeEffectBottom = new EdgeEffect(context);
    [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 620 milliseconds