Home
last modified time | relevance | path

Searched refs:PP_Point (Results 1 – 25 of 83) sorted by relevance

1234

/external/chromium_org/ppapi/c/
Dpp_point.h28 struct PP_Point { struct
40 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_Point, 8); argument
71 PP_INLINE struct PP_Point PP_MakePoint(int32_t x, int32_t y) { in PP_MakePoint()
72 struct PP_Point ret; in PP_MakePoint()
Dppb_graphics_2d.h133 const struct PP_Point* top_left,
155 const struct PP_Point* amount);
293 const struct PP_Point* top_left,
297 const struct PP_Point* amount);
Dppb_input_event.h512 const struct PP_Point* mouse_position,
514 const struct PP_Point* mouse_movement);
548 struct PP_Point (*GetPosition)(PP_Resource mouse_event);
565 struct PP_Point (*GetMovement)(PP_Resource mouse_event);
576 const struct PP_Point* mouse_position,
580 struct PP_Point (*GetPosition)(PP_Resource mouse_event);
/external/chromium_org/ppapi/thunk/
Dppb_graphics_2d_api.h30 const PP_Point* top_left,
33 const PP_Point* amount) = 0;
40 virtual void SetOffset(const PP_Point* offset) = 0;
44 virtual bool ReadImageData(PP_Resource image, const PP_Point* top_left) = 0;
Dppb_flash_functions_api.h37 const PP_Point* position,
43 const PP_Point glyph_advances[]) = 0;
Dppb_input_event_api.h31 virtual PP_Point GetMousePosition() = 0;
33 virtual PP_Point GetMouseMovement() = 0;
Dppb_input_event_thunk.cc94 const PP_Point* mouse_position, in CreateMouseInputEvent1_0()
101 PP_Point mouse_movement = PP_MakePoint(0, 0); in CreateMouseInputEvent1_0()
113 const PP_Point* mouse_position, in CreateMouseInputEvent1_1()
115 const PP_Point* mouse_movement) { in CreateMouseInputEvent1_1()
147 PP_Point GetMousePosition(PP_Resource mouse_event) { in GetMousePosition()
163 PP_Point GetMouseMovement(PP_Resource mouse_event) { in GetMouseMovement()
Dppb_graphics_2d_thunk.cc55 const struct PP_Point* top_left, in PaintImageData()
66 const struct PP_Point* amount) { in Scroll()
Dppb_flash_menu_api.h21 virtual int32_t Show(const PP_Point* location,
/external/chromium_org/ppapi/api/
Dpp_point.idl12 * The PP_Point structure defines the integer x and y coordinates of a point.
15 struct PP_Point {
46 * PP_MakePoint() creates a <code>PP_Point</code> given the x and y coordinates
54 * @return A <code>PP_Point</code> structure.
56 PP_INLINE struct PP_Point PP_MakePoint(int32_t x, int32_t y) {
57 struct PP_Point ret;
/external/chromium_org/ppapi/c/private/
Dppb_flash.h160 const struct PP_Point* position,
166 const struct PP_Point glyph_advances[]);
247 const struct PP_Point* position,
253 const struct PP_Point glyph_advances[]);
278 const struct PP_Point* position,
284 const struct PP_Point glyph_advances[]);
312 const struct PP_Point* position,
318 const struct PP_Point glyph_advances[]);
/external/chromium_org/ppapi/proxy/
Dgraphics_2d_resource.h36 const PP_Point* top_left,
39 const PP_Point* amount) OVERRIDE;
43 virtual void SetOffset(const PP_Point* offset) OVERRIDE;
47 const PP_Point* top_left) OVERRIDE;
Dgraphics_2d_resource.cc58 const PP_Point* top_left, in PaintImageData()
76 const PP_Point* amount) { in Scroll()
115 void Graphics2DResource::SetOffset(const PP_Point* offset) { in SetOffset()
153 const PP_Point* top_left) { in ReadImageData()
Dppb_testing_proxy.h15 struct PP_Point;
37 const PP_Point& top_left,
Dflash_resource.h50 const PP_Point* position,
56 const PP_Point glyph_advances[]) OVERRIDE;
Dserialized_structs.h112 PP_Point position;
117 std::vector<PP_Point> glyph_advances;
/external/chromium_org/ppapi/shared_impl/
Dppb_input_event_shared.h35 PP_Point mouse_position;
37 PP_Point mouse_movement;
81 virtual PP_Point GetMousePosition() OVERRIDE;
83 virtual PP_Point GetMouseMovement() OVERRIDE;
129 const PP_Point* mouse_position,
131 const PP_Point* mouse_movement);
Dppb_input_event_shared.cc71 PP_Point PPB_InputEvent_Shared::GetMousePosition() { in GetMousePosition()
79 PP_Point PPB_InputEvent_Shared::GetMouseMovement() { in GetMouseMovement()
290 const PP_Point* mouse_position, in CreateMouseInputEvent()
292 const PP_Point* mouse_movement) { in CreateMouseInputEvent()
/external/chromium_org/content/renderer/pepper/
Dpepper_graphics_2d_host.h62 const PP_Point* top_left);
109 const PP_Point& top_left,
115 const PP_Point& amount);
123 const PP_Point& offset);
128 const PP_Point& top_left);
Dgfx_conversion.h20 inline gfx::Point PP_ToGfxPoint(const PP_Point& p) { in PP_ToGfxPoint()
24 inline PP_Point PP_FromGfxPoint(const gfx::Point& p) { in PP_FromGfxPoint()
/external/chromium_org/ppapi/cpp/
Dpoint.h40 Point(const PP_Point& point) { // Implicit. in Point()
51 operator PP_Point() const { in PP_Point() function
58 const PP_Point& pp_point() const { in pp_point()
65 PP_Point& pp_point() { in pp_point()
150 PP_Point point_;
/external/chromium_org/content/child/
Dbrowser_font_resource_trusted.h50 const PP_Point* position,
69 const PP_Point* position,
/external/chromium_org/ppapi/cpp/private/
Dflash.h15 struct PP_Point;
49 const PP_Point glyph_advances[]);
/external/chromium_org/ppapi/tests/
Dtest_mouse_cursor.cc43 PP_Point point = { 0, 0 }; in TestCustom()
71 PP_Point point = { -1, 0 }; in TestPoint()
/external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
Dtest_interface.h173 const PP_Point kOrigin = PP_MakePoint(0, 0);
220 PP_Point origin,

1234