Home
last modified time | relevance | path

Searched refs:PP_Rect (Results 1 – 25 of 103) sorted by relevance

12345

/external/chromium_org/content/renderer/pepper/
Dppb_widget_impl.h34 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_;
Dppb_widget_impl.cc32 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/
Dppb_widget_dev.h47 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);
Dppb_text_input_dev.h85 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);
Dpp_print_settings_dev.h60 struct PP_Rect printable_area;
61 struct PP_Rect content_area;
/external/chromium_org/ppapi/c/
Dppb_view.h77 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);
Dpp_rect.h30 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()
Dppb_graphics_2d.h134 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,
Dppp_instance.h187 const struct PP_Rect* position,
188 const struct PP_Rect* clip);
/external/chromium_org/ppapi/shared_impl/
Dppp_instance_combined.h38 const struct PP_Rect* position,
39 const struct PP_Rect* clip);
54 const struct PP_Rect* position,
55 const struct PP_Rect* clip);
Dppb_view_shared.h24 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;
Dppb_view_shared.cc9 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/
Dgraphics_2d_resource.cc59 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()
Dppp_instance_proxy_unittest.cc45 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/
Dppb_flash.h161 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/
Dppb_widget_api.h17 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;
Dppb_text_input_thunk.cc53 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()
Dppb_widget_dev_thunk.cc26 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()
Dppb_view_api.h23 virtual PP_Bool GetRect(PP_Rect* viewport) const = 0;
27 virtual PP_Bool GetClipRect(PP_Rect* clip) const = 0;
Dppb_graphics_2d_api.h30 const PP_Rect* src_rect) = 0;
31 virtual void Scroll(const PP_Rect* clip_rect,
/external/chromium_org/mojo/examples/pepper_container_app/
Dtype_converters.h57 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/
Dpp_rect.idl11 * 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/
Dppb_widget_dev.idl33 [in] PP_Rect rect,
48 [out] PP_Rect location);
55 [in] PP_Rect location);
/external/chromium_org/ppapi/cpp/
Drect.h36 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/
Dtest_interface.h58 struct PP_Rect;
193 bool IsRectEqual(PP_Rect position, PP_Rect expected);

12345