HomeSort by relevance Sort by last modified time
    Searched refs:PP_Rect (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/chromium_org/ppapi/c/
pp_rect.h 6 /* From pp_rect.idl modified Wed Oct 5 14:06:02 2011. */
27 * The <code>PP_Rect</code> struct contains the size and location of a 2D
30 struct PP_Rect {
39 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_Rect, 16);
51 * PP_MakeRectFromXYWH() creates a <code>PP_Rect</code> given x and y
61 * @return A <code>PP_Rect</code> structure.
63 PP_INLINE struct PP_Rect PP_MakeRectFromXYWH(int32_t x, int32_t y,
65 struct PP_Rect ret;
ppb_view.h 14 #include "ppapi/c/pp_rect.h"
71 * @param rect A <code>PP_Rect</code> receiving the rectangle on success.
76 PP_Bool (*GetRect)(PP_Resource resource, struct PP_Rect* rect);
170 PP_Bool (*GetClipRect)(PP_Resource resource, struct PP_Rect* clip);
206 PP_Bool (*GetRect)(PP_Resource resource, struct PP_Rect* rect);
210 PP_Bool (*GetClipRect)(PP_Resource resource, struct PP_Rect* clip);
ppb_graphics_2d.h 16 #include "ppapi/c/pp_rect.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,
ppp_instance.h 15 #include "ppapi/c/pp_rect.h"
187 const struct PP_Rect* position,
188 const struct PP_Rect* clip);
ppb_text_input_controller.h 15 #include "ppapi/c/pp_rect.h"
86 const struct PP_Rect* caret);
  /external/chromium_org/ppapi/thunk/
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;
ppb_view_api.h 23 virtual PP_Bool GetRect(PP_Rect* viewport) const = 0;
27 virtual PP_Bool GetClipRect(PP_Rect* clip) const = 0;
ppb_graphics_2d_api.h 13 #include "ppapi/c/pp_rect.h"
31 const PP_Rect* src_rect) = 0;
32 virtual void Scroll(const PP_Rect* clip_rect,
ppb_scrollbar_api.h 22 virtual void SetTickMarks(const PP_Rect* tick_marks, uint32_t count) = 0;
  /external/chromium_org/content/renderer/pepper/
ppb_widget_impl.h 10 #include "ppapi/c/pp_rect.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_; }
55 PP_Rect location_;
ppb_widget_impl.cc 36 PP_Bool PPB_Widget_Impl::Paint(const PP_Rect* rect, PP_Resource image_id) {
52 PP_Bool PPB_Widget_Impl::GetLocation(PP_Rect* location) {
57 void PPB_Widget_Impl::SetLocation(const PP_Rect* location) {
66 void PPB_Widget_Impl::Invalidate(const PP_Rect* dirty) {
gfx_conversion.h 9 #include "ppapi/c/pp_rect.h"
28 inline gfx::Rect PP_ToGfxRect(const PP_Rect& r) {
32 inline PP_Rect PP_FromGfxRect(const gfx::Rect& r) {
  /external/chromium_org/ppapi/c/dev/
ppb_widget_dev.h 14 #include "ppapi/c/pp_rect.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);
ppb_text_input_dev.h 14 #include "ppapi/c/pp_rect.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);
ppp_widget_dev.h 14 #include "ppapi/c/pp_rect.h"
41 const struct PP_Rect* dirty_rect);
pp_print_settings_dev.h 14 #include "ppapi/c/pp_rect.h"
60 struct PP_Rect printable_area;
61 struct PP_Rect content_area;
  /external/chromium_org/ppapi/api/dev/
ppp_widget_dev.idl 23 [in] PP_Rect dirty_rect);
pp_print_settings_dev.idl 36 PP_Rect printable_area;
37 PP_Rect content_area;
ppb_widget_dev.idl 33 [in] PP_Rect rect,
48 [out] PP_Rect location);
55 [in] PP_Rect location);
ppb_text_input_dev.idl 63 [in] PP_Rect caret,
64 [in] PP_Rect bounding_box);
  /external/chromium_org/ppapi/shared_impl/
ppb_view_shared.h 9 #include "ppapi/c/pp_rect.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
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);
  /external/chromium_org/ppapi/api/
pp_rect.idl 11 * The <code>PP_Rect</code> struct contains the size and location of a 2D
15 struct PP_Rect {
34 * PP_MakeRectFromXYWH() creates a <code>PP_Rect</code> given x and y
44 * @return A <code>PP_Rect</code> structure.
46 PP_INLINE struct PP_Rect PP_MakeRectFromXYWH(int32_t x, int32_t y,
48 struct PP_Rect ret;
ppb_view.idl 57 * @param rect A <code>PP_Rect</code> receiving the rectangle on success.
63 [out] PP_Rect rect);
162 [out] PP_Rect clip);
ppp_instance.idl 155 [in] PP_Rect position,
160 [in] PP_Rect clip);

Completed in 164 milliseconds

1 2 3 4