/external/chromium_org/ppapi/c/ |
D | pp_point.h | 28 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()
|
D | ppb_graphics_2d.h | 133 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);
|
D | ppb_input_event.h | 512 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/ |
D | ppb_graphics_2d_api.h | 30 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;
|
D | ppb_flash_functions_api.h | 37 const PP_Point* position, 43 const PP_Point glyph_advances[]) = 0;
|
D | ppb_input_event_api.h | 31 virtual PP_Point GetMousePosition() = 0; 33 virtual PP_Point GetMouseMovement() = 0;
|
D | ppb_input_event_thunk.cc | 94 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()
|
D | ppb_graphics_2d_thunk.cc | 55 const struct PP_Point* top_left, in PaintImageData() 66 const struct PP_Point* amount) { in Scroll()
|
D | ppb_flash_menu_api.h | 21 virtual int32_t Show(const PP_Point* location,
|
/external/chromium_org/ppapi/api/ |
D | pp_point.idl | 12 * 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/ |
D | ppb_flash.h | 160 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/ |
D | graphics_2d_resource.h | 36 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;
|
D | graphics_2d_resource.cc | 58 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()
|
D | ppb_testing_proxy.h | 15 struct PP_Point; 37 const PP_Point& top_left,
|
D | flash_resource.h | 50 const PP_Point* position, 56 const PP_Point glyph_advances[]) OVERRIDE;
|
D | serialized_structs.h | 112 PP_Point position; 117 std::vector<PP_Point> glyph_advances;
|
/external/chromium_org/ppapi/shared_impl/ |
D | ppb_input_event_shared.h | 35 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);
|
D | ppb_input_event_shared.cc | 71 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/ |
D | pepper_graphics_2d_host.h | 62 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);
|
D | gfx_conversion.h | 20 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/ |
D | point.h | 40 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/ |
D | browser_font_resource_trusted.h | 50 const PP_Point* position, 69 const PP_Point* position,
|
/external/chromium_org/ppapi/cpp/private/ |
D | flash.h | 15 struct PP_Point; 49 const PP_Point glyph_advances[]);
|
/external/chromium_org/ppapi/tests/ |
D | test_mouse_cursor.cc | 43 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/ |
D | test_interface.h | 173 const PP_Point kOrigin = PP_MakePoint(0, 0); 220 PP_Point origin,
|