/external/chromium_org/content/renderer/pepper/ |
D | ppb_widget_impl.h | 34 virtual PP_Bool Paint(const PP_Rect* rect, PP_Resource) OVERRIDE; 36 virtual PP_Bool GetLocation(PP_Rect* location) OVERRIDE; 37 virtual void SetLocation(const PP_Rect* location) OVERRIDE; 41 void Invalidate(const PP_Rect* dirty); 49 virtual void SetLocationInternal(const PP_Rect* location) = 0; 51 PP_Rect location() const { return location_; } in location() 55 PP_Rect location_;
|
D | ppb_widget_impl.cc | 32 PP_Bool PPB_Widget_Impl::Paint(const PP_Rect* rect, PP_Resource image_id) { in Paint() 49 PP_Bool PPB_Widget_Impl::GetLocation(PP_Rect* location) { in GetLocation() 54 void PPB_Widget_Impl::SetLocation(const PP_Rect* location) { in SetLocation() 61 void PPB_Widget_Impl::Invalidate(const PP_Rect* dirty) { in Invalidate()
|
/external/chromium_org/ppapi/c/dev/ |
D | ppb_widget_dev.h | 47 const struct PP_Rect* rect, 57 PP_Bool (*GetLocation)(PP_Resource widget, struct PP_Rect* location); 61 void (*SetLocation)(PP_Resource widget, const struct PP_Rect* location); 73 const struct PP_Rect* rect, 76 PP_Bool (*GetLocation)(PP_Resource widget, struct PP_Rect* location); 77 void (*SetLocation)(PP_Resource widget, const struct PP_Rect* location);
|
D | ppb_text_input_dev.h | 85 const struct PP_Rect* caret, 86 const struct PP_Rect* bounding_box); 133 const struct PP_Rect* caret, 134 const struct PP_Rect* bounding_box);
|
D | pp_print_settings_dev.h | 60 struct PP_Rect printable_area; 61 struct PP_Rect content_area;
|
/external/chromium_org/ppapi/c/ |
D | ppb_view.h | 77 PP_Bool (*GetRect)(PP_Resource resource, struct PP_Rect* rect); 171 PP_Bool (*GetClipRect)(PP_Resource resource, struct PP_Rect* clip); 221 PP_Bool (*GetRect)(PP_Resource resource, struct PP_Rect* rect); 225 PP_Bool (*GetClipRect)(PP_Resource resource, struct PP_Rect* clip); 230 PP_Bool (*GetRect)(PP_Resource resource, struct PP_Rect* rect); 234 PP_Bool (*GetClipRect)(PP_Resource resource, struct PP_Rect* clip);
|
D | pp_rect.h | 30 struct PP_Rect { struct 39 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_Rect, 16); argument 77 PP_INLINE struct PP_Rect PP_MakeRectFromXYWH(int32_t x, int32_t y, in PP_MakeRectFromXYWH() 79 struct PP_Rect ret; in PP_MakeRectFromXYWH()
|
D | ppb_graphics_2d.h | 134 const struct PP_Rect* src_rect); 154 const struct PP_Rect* clip_rect, 294 const struct PP_Rect* src_rect); 296 const struct PP_Rect* clip_rect,
|
D | ppp_instance.h | 187 const struct PP_Rect* position, 188 const struct PP_Rect* clip);
|
/external/chromium_org/ppapi/shared_impl/ |
D | ppp_instance_combined.h | 38 const struct PP_Rect* position, 39 const struct PP_Rect* clip); 54 const struct PP_Rect* position, 55 const struct PP_Rect* clip);
|
D | ppb_view_shared.h | 24 PP_Rect rect; 27 PP_Rect clip_rect; 46 virtual PP_Bool GetRect(PP_Rect* viewport) const OVERRIDE; 50 virtual PP_Bool GetClipRect(PP_Rect* clip) const OVERRIDE;
|
D | ppb_view_shared.cc | 9 bool IsRectNonempty(const PP_Rect& rect) { in IsRectNonempty() 54 PP_Bool PPB_View_Shared::GetRect(PP_Rect* viewport) const { in GetRect() 73 PP_Bool PPB_View_Shared::GetClipRect(PP_Rect* clip) const { in GetClipRect()
|
/external/chromium_org/ppapi/proxy/ |
D | graphics_2d_resource.cc | 59 const PP_Rect* src_rect) { in PaintImageData() 68 PP_Rect dummy; in PaintImageData() 69 memset(&dummy, 0, sizeof(PP_Rect)); in PaintImageData() 75 void Graphics2DResource::Scroll(const PP_Rect* clip_rect, in Scroll() 77 PP_Rect dummy; in Scroll() 78 memset(&dummy, 0, sizeof(PP_Rect)); in Scroll()
|
D | ppp_instance_proxy_unittest.cc | 45 PP_Rect received_position; 46 PP_Rect received_clip; 50 void DidChangeView(PP_Instance instance, const PP_Rect* position, in DidChangeView() 51 const PP_Rect* clip) { in DidChangeView() 157 PP_Rect expected_position = { {1, 2}, {3, 4} }; in TEST_F() 158 PP_Rect expected_clip = { {5, 6}, {7, 8} }; in TEST_F()
|
/external/chromium_org/ppapi/c/private/ |
D | ppb_flash.h | 161 const struct PP_Rect* clip, 202 PP_Bool (*IsRectTopmost)(PP_Instance instance, const struct PP_Rect* rect); 248 const struct PP_Rect* clip, 263 PP_Bool (*IsRectTopmost)(PP_Instance instance, const struct PP_Rect* rect); 279 const struct PP_Rect* clip, 294 PP_Bool (*IsRectTopmost)(PP_Instance instance, const struct PP_Rect* rect); 313 const struct PP_Rect* clip, 328 PP_Bool (*IsRectTopmost)(PP_Instance instance, const struct PP_Rect* rect);
|
/external/chromium_org/ppapi/thunk/ |
D | ppb_widget_api.h | 17 virtual PP_Bool Paint(const PP_Rect* rect, PP_Resource image_id) = 0; 19 virtual PP_Bool GetLocation(PP_Rect* location) = 0; 20 virtual void SetLocation(const PP_Rect* location) = 0;
|
D | ppb_text_input_thunk.cc | 53 const PP_Rect* caret, in UpdateCaretPosition_0_2() 54 const PP_Rect* bounding_box) { in UpdateCaretPosition_0_2() 61 const PP_Rect* caret) { in UpdateCaretPosition() 64 enter.functions()->UpdateCaretPosition(instance, *caret, PP_Rect()); in UpdateCaretPosition()
|
D | ppb_widget_dev_thunk.cc | 26 const struct PP_Rect* rect, in Paint() 43 PP_Bool GetLocation(PP_Resource widget, struct PP_Rect* location) { in GetLocation() 51 void SetLocation(PP_Resource widget, const struct PP_Rect* location) { in SetLocation()
|
D | ppb_view_api.h | 23 virtual PP_Bool GetRect(PP_Rect* viewport) const = 0; 27 virtual PP_Bool GetClipRect(PP_Rect* clip) const = 0;
|
D | ppb_graphics_2d_api.h | 30 const PP_Rect* src_rect) = 0; 31 virtual void Scroll(const PP_Rect* clip_rect,
|
/external/chromium_org/mojo/examples/pepper_container_app/ |
D | type_converters.h | 57 struct TypeConverter<RectPtr, PP_Rect> { 58 static RectPtr Convert(const PP_Rect& input) { 69 struct TypeConverter<PP_Rect, SizePtr> { 70 static PP_Rect Convert(const SizePtr& input) {
|
/external/chromium_org/ppapi/api/ |
D | pp_rect.idl | 11 * The <code>PP_Rect</code> struct contains the size and location of a 2D 15 struct PP_Rect { 49 * PP_MakeRectFromXYWH() creates a <code>PP_Rect</code> given x and y 59 * @return A <code>PP_Rect</code> structure. 61 PP_INLINE struct PP_Rect PP_MakeRectFromXYWH(int32_t x, int32_t y, 63 struct PP_Rect ret;
|
/external/chromium_org/ppapi/api/dev/ |
D | ppb_widget_dev.idl | 33 [in] PP_Rect rect, 48 [out] PP_Rect location); 55 [in] PP_Rect location);
|
/external/chromium_org/ppapi/cpp/ |
D | rect.h | 36 Rect(const PP_Rect& rect) { // Implicit. in Rect() 103 operator PP_Rect() const { in PP_Rect() function 110 const PP_Rect& pp_rect() const { in pp_rect() 117 PP_Rect& pp_rect() { in pp_rect() 255 void SetRect(const PP_Rect& rect) { in SetRect() 396 PP_Rect rect_;
|
/external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/ |
D | test_interface.h | 58 struct PP_Rect; 193 bool IsRectEqual(PP_Rect position, PP_Rect expected);
|