OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:glowmanager
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
PointCloud.java
43
GlowManager
glowManager
= new
GlowManager
();
67
public class
GlowManager
{
180
float glowDistance = hypot(
glowManager
.x - point.x,
glowManager
.y - point.y);
182
if (glowDistance <
glowManager
.radius) {
183
float cosf = FloatMath.cos(PI * 0.25f * glowDistance /
glowManager
.radius);
184
glowAlpha =
glowManager
.alpha * max(0.0f, (float) Math.pow(cosf, 10.0f));
GlowPadView.java
278
mPointCloud.
glowManager
.setRadius(mGlowRadius);
404
mGlowAnimations.add(Tweener.to(mPointCloud.
glowManager
, duration,
416
mGlowAnimations.add(Tweener.to(mPointCloud.
glowManager
, duration,
802
mPointCloud.
glowManager
.setX(mOuterRing.getX() + dx);
803
mPointCloud.
glowManager
.setY(mOuterRing.getY() + dy);
[
all
...]
/packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
PointCloud.java
43
GlowManager
glowManager
= new
GlowManager
();
67
public class
GlowManager
{
180
float glowDistance = hypot(
glowManager
.x - point.x,
glowManager
.y - point.y);
183
if (glowDistance <
glowManager
.radius) {
184
float cosf = FloatMath.cos(PI * 0.25f * glowDistance /
glowManager
.radius);
185
glowAlpha =
glowManager
.alpha * max(0.0f, (float) Math.pow(cosf, 10.0f));
GlowPadView.java
276
mPointCloud.
glowManager
.setRadius(mGlowRadius);
400
mGlowAnimations.add(Tweener.to(mPointCloud.
glowManager
, duration,
412
mGlowAnimations.add(Tweener.to(mPointCloud.
glowManager
, duration,
787
mPointCloud.
glowManager
.setX(x);
788
mPointCloud.
glowManager
.setY(y);
[
all
...]
/packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
PointCloud.java
43
GlowManager
glowManager
= new
GlowManager
();
67
public class
GlowManager
{
180
float glowDistance = hypot(
glowManager
.x - point.x,
glowManager
.y - point.y);
183
if (glowDistance <
glowManager
.radius) {
184
float cosf = FloatMath.cos(PI * 0.25f * glowDistance /
glowManager
.radius);
185
glowAlpha =
glowManager
.alpha * max(0.0f, (float) Math.pow(cosf, 10.0f));
GlowPadView.java
279
mPointCloud.
glowManager
.setRadius(mGlowRadius);
426
mGlowAnimations.add(Tweener.to(mPointCloud.
glowManager
, duration,
438
mGlowAnimations.add(Tweener.to(mPointCloud.
glowManager
, duration,
819
mPointCloud.
glowManager
.setX(mOuterRing.getX() + dx);
820
mPointCloud.
glowManager
.setY(mOuterRing.getY() + dy);
[
all
...]
Completed in 1202 milliseconds