HomeSort by relevance Sort by last modified time
    Searched full:frand (Results 1 - 9 of 9) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
LLand.java 238 mFlipped = frand() > 0.5f;
256 boolean showingSun = (mTimeOfDay == DAY || mTimeOfDay == SUNSET) && frand() > 0.25;
261 sun.setTranslationX(frand(w, mWidth-w)); method
263 sun.setTranslationY(frand(w, (mHeight * 0.66f))); method
266 sun.setTranslationY(frand(mHeight * 0.66f, mHeight - w));
275 final float ff = frand();
280 moon.setScaleX(frand() > 0.5 ? -1 : 1);
281 moon.setRotation(moon.getScaleX() * frand(5, 30));
283 moon.setTranslationX(frand(w, mWidth - w)); method
284 moon.setTranslationY(frand(w, mHeight - w)) method
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseView.java 295 final float which = frand();
348 final float rnd = frand();
465 static float frand() {
469 static float frand(float a, float b) {
470 return (frand() * (b-a) + a);
474 return (int)(frand(a, b));
  /external/chromium_org/third_party/skia/samplecode/
SampleDraw.cpp 261 SkRandom fRand;
281 return (SkColor)fRand.nextU() | 0xFF000000;
  /external/skia/samplecode/
SampleDraw.cpp 261 SkRandom fRand;
281 return (SkColor)fRand.nextU() | 0xFF000000;
  /external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
voronoi.cc 53 inline float frand() { function in namespace:__anon13528
160 const float x = frand();
161 const float y = frand();
165 const float u = (frand() * 2.0f - 1.0f) * speed;
166 const float v = (frand() * 2.0f - 1.0f) * speed;
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
voronoi.cc 52 inline float frand() { function in namespace:__anon13534
149 const float x = frand();
150 const float y = frand();
154 const float u = (frand() * 2.0f - 1.0f) * speed;
155 const float v = (frand() * 2.0f - 1.0f) * speed;
  /ndk/sources/host-tools/nawk-20071023/
awk.h 121 #define FRAND 7
lex.c 77 { "rand", FRAND, BLTIN },
run.c     [all...]

Completed in 694 milliseconds