HomeSort by relevance Sort by last modified time
    Searched full:bounce (Results 1 - 25 of 239) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/java/android/view/animation/
BounceInterpolator.java 38 private static float bounce(float t) { method in class:BounceInterpolator
50 if (t < 0.3535f) return bounce(t);
51 else if (t < 0.7408f) return bounce(t - 0.54719f) + 0.7f;
52 else if (t < 0.9644f) return bounce(t - 0.8526f) + 0.9f;
53 else return bounce(t - 1.0435f) + 0.95f;
  /external/chromium_org/third_party/WebKit/ManualTests/
animate-left.html 15 -webkit-animation-name: bounce;
22 @-webkit-keyframes bounce {
36 <p>The element below should bounce 200 pixels left and right continuously</p>
svg-css-animate-compound.html 42 -webkit-animation-name: bounce;
49 @-webkit-keyframes bounce {
drag-color-to-contenteditable.html 19 If the color change does not apply to the text, and the drag appears to bounce back, then the bug is probably occurring. The bug can be confirmed by looking for evidence of an uncaught exception in the system console log.
  /external/chromium_org/tools/perf/page_sets/
tough_scheduling_cases.py 323 def __init__(self, name, desktop, slow_handler, bounce, page_set):
334 self.bounce = bounce
337 if self.bounce:
344 bounce """
408 bounce=False,
415 bounce=False,
422 bounce=False,
424 # Why: Scroll bounce showing repeated transitions between scrolling and
428 name='bounce',
    [all...]
  /external/chromium_org/chrome/renderer/searchbox/
search_bouncer.h 26 // Returns whether a navigation to |url| should bounce back to the browser as
42 // URLs to bounce back to the browser.
  /frameworks/base/libs/hwui/
Interpolator.cpp 62 static float bounce(float t) { function in namespace:android::uirenderer
68 if (t < 0.3535f) return bounce(t);
69 else if (t < 0.7408f) return bounce(t - 0.54719f) + 0.7f;
70 else if (t < 0.9644f) return bounce(t - 0.8526f) + 0.9f;
71 else return bounce(t - 1.0435f) + 0.95f;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
animator1.xml 1 <!-- Simple bounce animation -->
  /external/chromium_org/native_client_sdk/src/build_tools/screenshot_extension/
injected.js 10 // Bounce message from webpage to background page.
58 // Bounce response from background page back to webpage.
  /external/chromium_org/third_party/skia/samplecode/
SampleBitmapRect.cpp 57 static void bounce(SkScalar* value, SkScalar* delta, SkScalar min, SkScalar max) { function
69 bounce(&pt->fX, &vec->fX, limit.fLeft, limit.fRight);
70 bounce(&pt->fY, &vec->fY, limit.fTop, limit.fBottom);
79 void bounce() { function in class:BitmapRectView
140 this->bounce();
184 bounce(&fSrcR.fLeft, &fDX, fLimitR.fLeft, fLimitR.fRight - width);
  /external/skia/samplecode/
SampleBitmapRect.cpp 57 static void bounce(SkScalar* value, SkScalar* delta, SkScalar min, SkScalar max) { function
69 bounce(&pt->fX, &vec->fX, limit.fLeft, limit.fRight);
70 bounce(&pt->fY, &vec->fY, limit.fTop, limit.fBottom);
79 void bounce() { function in class:BitmapRectView
140 this->bounce();
184 bounce(&fSrcR.fLeft, &fDX, fLimitR.fLeft, fLimitR.fRight - width);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_buffer.c 109 struct nouveau_bo *bounce = NULL; local
114 mm = nouveau_mm_allocate(nv->screen->mm_GART, size, &bounce, &offset);
115 if (!bounce)
118 nv->copy_data(nv, bounce, offset, NOUVEAU_BO_GART,
121 if (nouveau_bo_map(bounce, NOUVEAU_BO_RD, nv->screen->client))
123 memcpy(buf->data + start, (uint8_t *)bounce->map + offset, size);
127 nouveau_bo_ref(NULL, &bounce);
138 struct nouveau_bo *bounce = NULL; local
151 mm = nouveau_mm_allocate(nv->screen->mm_GART, size, &bounce, &offset);
152 if (!bounce)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.c 109 struct nouveau_bo *bounce = NULL; local
114 mm = nouveau_mm_allocate(nv->screen->mm_GART, size, &bounce, &offset);
115 if (!bounce)
118 nv->copy_data(nv, bounce, offset, NOUVEAU_BO_GART,
121 if (nouveau_bo_map(bounce, NOUVEAU_BO_RD, nv->screen->client))
123 memcpy(buf->data + start, (uint8_t *)bounce->map + offset, size);
127 nouveau_bo_ref(NULL, &bounce);
138 struct nouveau_bo *bounce = NULL; local
151 mm = nouveau_mm_allocate(nv->screen->mm_GART, size, &bounce, &offset);
152 if (!bounce)
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
scroll_bounce.py 19 # Fail if browser doesn't support synthetic scroll bounce gestures.
23 'Synthetic scroll bounce not supported for this browser')
64 'Invalid scroll bounce direction: %s' % direction)
  /external/chromium_org/chrome/browser/ui/
browser_content_setting_bubble_model_delegate.cc 37 // blocking, so bounce to an explanatory page for now.
  /external/replicaisland/src/com/replica/replicaisland/
GameComponent.java 30 POST_PHYSICS, // inertia, friction, and bounce
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 92 void *bounce; member in struct:unix_private_data
202 actual = read(data->dev, data->bounce, channel->block_size);
208 memcpy(buf, data->bounce, actual);
271 actual = read(data->dev, data->bounce,
281 memcpy(data->bounce, buf, actual);
282 actual = write(data->dev, data->bounce, channel->block_size);
323 if (data->bounce)
324 ext2fs_free_mem(&data->bounce);
325 retval = io_channel_alloc_buf(channel, 0, &data->bounce);
345 if (data->bounce)
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
DefaultVideoPosterRequestHandler.java 34 // valid bitmap bounce on to the worker thread pool to compress it into the piped
  /external/chromium_org/build/ios/
mac_build.gypi 48 # Bounce through clean_env to clean up the environment so things
  /external/chromium_org/content/browser/geolocation/
location_api_adapter_android.h 27 // in the java side to listen for location updates. We then bounce these updates
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMMimeType.cpp 68 // to bounce through the loader to get there.
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
ChallengeLayout.java 62 * Returns the duration of the bounce animation.
  /external/chromium_org/chrome/browser/resources/ntp4/
tile_page.css 134 @-webkit-keyframes bounce {
149 -webkit-animation: bounce 500ms ease-in-out;
  /external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls.js 124 // left side bounce
128 // right side bounce
  /packages/services/Telephony/src/com/android/phone/
HfaLogic.java 42 * If successful, we bounce the radio so that the service picks up the new number.
45 * If there is an error, we do not bounce the radio but still callback with a failure.

Completed in 871 milliseconds

1 2 3 4 5 6 7 8 910