Searched defs:scroll_by_page (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/ppapi/c/
H A Dpp_input_event.h145 * The units are either in pixels (when scroll_by_page is false) or pages
146 * (when scroll_by_page is true). For example, delta_y = -3 means scroll up 3
147 * pixels when scroll_by_page is false, and scroll up 3 pages when
148 * scroll_by_page is true.
165 * The units are either in pixels (when scroll_by_page is false) or pages
166 * (when scroll_by_page is true). For example, delta_y = -3 means scroll up 3
167 * pixels when scroll_by_page is false, and scroll up 3 pages when
168 * scroll_by_page is true.
206 PP_Bool scroll_by_page; member in struct:PP_InputEvent_Wheel
/external/chromium_org/ppapi/cpp/
H A Dinput_event.cc161 bool scroll_by_page) {
168 PP_FromBool(scroll_by_page)));
156 WheelInputEvent(const InstanceHandle& instance, PP_TimeTicks time_stamp, uint32_t modifiers, const FloatPoint& wheel_delta, const FloatPoint& wheel_ticks, bool scroll_by_page) argument
/external/chromium_org/ppapi/shared_impl/
H A Dppb_input_event_shared.cc322 PP_Bool scroll_by_page) {
329 data.wheel_scroll_by_page = PP_ToBool(scroll_by_page);
315 CreateWheelInputEvent( ResourceObjectType type, PP_Instance instance, PP_TimeTicks time_stamp, uint32_t modifiers, const PP_FloatPoint* wheel_delta, const PP_FloatPoint* wheel_ticks, PP_Bool scroll_by_page) argument
/external/chromium_org/content/renderer/pepper/
H A Dresource_creation_impl.cc333 PP_Bool scroll_by_page) {
340 scroll_by_page);
327 CreateWheelInputEvent( PP_Instance instance, PP_TimeTicks time_stamp, uint32_t modifiers, const PP_FloatPoint* wheel_delta, const PP_FloatPoint* wheel_ticks, PP_Bool scroll_by_page) argument
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dresource_creation_impl.cc119 PP_Bool scroll_by_page) {
113 CreateWheelInputEvent( PP_Instance instance, PP_TimeTicks time_stamp, uint32_t modifiers, const PP_FloatPoint* wheel_delta, const PP_FloatPoint* wheel_ticks, PP_Bool scroll_by_page) argument
/external/chromium_org/ppapi/thunk/
H A Dppb_input_event_thunk.cc195 PP_Bool scroll_by_page) {
202 wheel_ticks, scroll_by_page);
190 CreateWheelInputEvent(PP_Instance instance, PP_TimeTicks time_stamp, uint32_t modifiers, const PP_FloatPoint* wheel_delta, const PP_FloatPoint* wheel_ticks, PP_Bool scroll_by_page) argument
/external/chromium_org/ppapi/proxy/
H A Dresource_creation_proxy.cc186 PP_Bool scroll_by_page) {
189 wheel_delta, wheel_ticks, scroll_by_page);
180 CreateWheelInputEvent( PP_Instance instance, PP_TimeTicks time_stamp, uint32_t modifiers, const PP_FloatPoint* wheel_delta, const PP_FloatPoint* wheel_ticks, PP_Bool scroll_by_page) argument
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c982 static PP_Resource Pnacl_M13_PPB_WheelInputEvent_Create(PP_Instance instance, PP_TimeTicks time_stamp, uint32_t modifiers, const struct PP_FloatPoint* wheel_delta, const struct PP_FloatPoint* wheel_ticks, PP_Bool scroll_by_page) { argument
984 return iface->Create(instance, time_stamp, modifiers, wheel_delta, wheel_ticks, scroll_by_page);
4729 .Create = (PP_Resource (*)(PP_Instance instance, PP_TimeTicks time_stamp, uint32_t modifiers, const struct PP_FloatPoint* wheel_delta, const struct PP_FloatPoint* wheel_ticks, PP_Bool scroll_by_page))&Pnacl_M13_PPB_WheelInputEvent_Create,

Completed in 3407 milliseconds