Searched defs:acceleration (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceAcceleration.h38 static DeviceAcceleration* create(DeviceMotionData::Acceleration* acceleration) argument
40 return new DeviceAcceleration(acceleration);
H A DDeviceAcceleration.cpp31 DeviceAcceleration::DeviceAcceleration(DeviceMotionData::Acceleration* acceleration) argument
32 : m_acceleration(acceleration)
H A DDeviceMotionEvent.cpp63 DeviceAcceleration* DeviceMotionEvent::acceleration() function in class:blink::DeviceMotionEvent
65 if (!m_deviceMotionData->acceleration())
69 m_acceleration = DeviceAcceleration::create(m_deviceMotionData->acceleration());
H A DDeviceMotionData.cpp71 Acceleration* acceleration,
77 return new DeviceMotionData(acceleration, accelerationIncludingGravity, rotationRate, canProvideInterval, interval);
105 Acceleration* acceleration,
110 : m_acceleration(acceleration)
70 create( Acceleration* acceleration, Acceleration* accelerationIncludingGravity, RotationRate* rotationRate, bool canProvideInterval, double interval) argument
104 DeviceMotionData( Acceleration* acceleration, Acceleration* accelerationIncludingGravity, RotationRate* rotationRate, bool canProvideInterval, double interval) argument
H A DDeviceMotionData.h98 Acceleration* acceleration() const { return m_acceleration.get(); } function in class:blink::FINAL
/external/chromium_org/ppapi/cpp/
H A Dvideo_decoder.cc45 PP_HardwareAcceleration acceleration,
52 acceleration,
56 if (acceleration == PP_HARDWAREACCELERATION_NONE)
62 acceleration == PP_HARDWAREACCELERATION_WITHFALLBACK
43 Initialize(const Graphics3D& context, PP_VideoProfile profile, PP_HardwareAcceleration acceleration, const CompletionCallback& cc) argument
/external/chromium_org/ui/views/animation/
H A Dscroll_animator.h30 // The ScrollAnimator does not own the delegate. Uses default acceleration.
34 // Use this if you would prefer different acceleration than the default.
35 void set_acceleration(float acceleration) { acceleration_ = acceleration; } argument
/external/chromium_org/ppapi/thunk/
H A Dppb_video_decoder_thunk.cc52 PP_HardwareAcceleration acceleration,
60 acceleration,
49 Initialize(PP_Resource video_decoder, PP_Resource graphics3d_context, PP_VideoProfile profile, PP_HardwareAcceleration acceleration, struct PP_CompletionCallback callback) argument
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8DeviceMotionEventCustom.cpp110 DeviceMotionData::Acceleration* acceleration = readAccelerationArgument(info[3], isolate); local
115 DeviceMotionData* deviceMotionData = DeviceMotionData::create(acceleration, accelerationIncludingGravity, rotationRate, intervalProvided, interval);
/external/replicaisland/src/com/replica/replicaisland/
H A DInterpolator.java20 * Helper class for interpolating velocity over time given a target velocity and acceleration.
22 * Note that acceleration is effectively an absolute value--it always points in the direction of
35 // Rather than simply interpolating acceleration and velocity for each time step
36 // (as in, position += (velocity * time); velocity += (acceleration * time);),
49 // change in position = velocity * time + (0.5 * acceleration * (time^2))
50 // change in velocity = acceleration * time
52 public void set(float current, float target, float acceleration) { argument
55 mAcceleration = acceleration;
63 // point the acceleration at the target, or zero it if we are already
67 // calculate scaled acceleration (0.
106 calculateAcceleration(float velocity, float acceleration, float target) argument
119 scaleAcceleration(float acceleration, float secondsDelta) argument
[all...]
H A DPatrolComponent.java258 public void setMovementSpeed(float speed, float acceleration) { argument
260 mAcceleration = acceleration;
H A DGameObject.java188 public final void setAcceleration(Vector2 acceleration) { argument
189 mAcceleration.set(acceleration);
H A DNPCComponent.java482 public void setSpeeds(float horizontalImpulse, float slowHorizontalImpulse, float upImpulse, float downImpulse, float acceleration) { argument
487 mAcceleration = acceleration;
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
H A Dgoose.cc52 Vector2 acceleration = DesiredVector(geese, attractors); local
53 velocity_.Add(acceleration);
107 // acceleration.
113 // Limit the effect that alignment has on the final acceleration. The
/external/chromium_org/content/renderer/pepper/
H A Dpepper_video_decoder_host.cc114 PP_HardwareAcceleration acceleration) {
131 if (acceleration != PP_HARDWAREACCELERATION_NONE) {
142 if (acceleration == PP_HARDWAREACCELERATION_ONLY)
110 OnHostMsgInitialize( ppapi::host::HostMessageContext* context, const ppapi::HostResource& graphics_context, PP_VideoProfile profile, PP_HardwareAcceleration acceleration) argument
/external/deqp/framework/platform/win32/
H A DtcuWGL.hpp83 Acceleration acceleration; member in class:tcu::wgl::PixelFormatInfo
135 , acceleration (ACCELERATION_LAST)
/external/chromium_org/ppapi/proxy/
H A Dvideo_decoder_resource.cc104 PP_HardwareAcceleration acceleration,
144 host_resource, profile, acceleration),
101 Initialize( PP_Resource graphics_context, PP_VideoProfile profile, PP_HardwareAcceleration acceleration, scoped_refptr<TrackedCallback> callback) argument
/external/qemu/android/
H A Dhw-sensors.c114 Acceleration acceleration; member in union:__anon29149::__anon29150
152 * acceleration:<x>:<y>:<z>
300 snprintf(buffer, sizeof buffer, "acceleration:%g:%g:%g",
301 sensor->u.acceleration.x,
302 sensor->u.acceleration.y,
303 sensor->u.acceleration.z);
529 qemu_put_float(f, s->u.acceleration.x);
530 qemu_put_float(f, s->u.acceleration.y);
531 qemu_put_float(f, s->u.acceleration.z);
580 s->u.acceleration
[all...]
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c2002 static int32_t Pnacl_M39_PPB_VideoDecoder_Initialize(PP_Resource video_decoder, PP_Resource graphics3d_context, PP_VideoProfile profile, PP_HardwareAcceleration acceleration, struct PP_CompletionCallback* callback) { argument
2004 return iface->Initialize(video_decoder, graphics3d_context, profile, acceleration, *callback);
5015 .Initialize = (int32_t (*)(PP_Resource video_decoder, PP_Resource graphics3d_context, PP_VideoProfile profile, PP_HardwareAcceleration acceleration, struct PP_CompletionCallback callback))&Pnacl_M39_PPB_VideoDecoder_Initialize,
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 622 milliseconds