OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mEdgeGlowBottom
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
OverScrollGlow.java
19
private EdgeEffect
mEdgeGlowBottom
;
30
mEdgeGlowBottom
= new EdgeEffect(context);
71
if (!
mEdgeGlowBottom
.isFinished()) {
72
mEdgeGlowBottom
.onRelease();
75
mEdgeGlowBottom
.onPull((float) mOverScrollDeltaY / mHostView.getHeight());
101
if (!
mEdgeGlowBottom
.isFinished()) {
102
mEdgeGlowBottom
.onRelease();
105
mEdgeGlowBottom
.onAbsorb((int) currentFlingVelocity);
161
if (!
mEdgeGlowBottom
.isFinished()) {
166
mEdgeGlowBottom
.setSize(width, height)
[
all
...]
/frameworks/base/core/java/android/widget/
ScrollView.java
83
private EdgeEffect
mEdgeGlowBottom
;
651
if (!
mEdgeGlowBottom
.isFinished()) {
652
mEdgeGlowBottom
.onRelease();
655
mEdgeGlowBottom
.onPull((float) deltaY / getHeight());
661
&& (!mEdgeGlowTop.isFinished() || !
mEdgeGlowBottom
.isFinished())) {
[
all
...]
AbsListView.java
639
private EdgeEffect
mEdgeGlowBottom
;
846
mEdgeGlowBottom
= new EdgeEffect(context);
850
mEdgeGlowBottom
= null;
[
all
...]
Completed in 557 milliseconds