Searched defs:PP_Rect (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ppapi/c/
H A Dpp_rect.h27 * The <code>PP_Rect</code> struct contains the size and location of a 2D
30 struct PP_Rect { struct
39 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_Rect, 16);
65 * PP_MakeRectFromXYWH() creates a <code>PP_Rect</code> given x and y
75 * @return A <code>PP_Rect</code> structure.
77 PP_INLINE struct PP_Rect PP_MakeRectFromXYWH(int32_t x, int32_t y,
79 struct PP_Rect ret;
/external/chromium_org/ppapi/cpp/
H A Drect.h31 /// A constructor accepting a reference to a <code>PP_Rect and</code>
32 /// converting the <code>PP_Rect</code> to a <code>Rect</code>. This is an
35 /// @param[in] rect A <code>PP_Rect</code>.
36 Rect(const PP_Rect& rect) { // Implicit.
99 /// PP_Rect() allows implicit conversion of a <code>Rect</code> to a
100 /// <code>PP_Rect</code>.
103 operator PP_Rect() const {
107 /// Getter function for returning the internal <code>PP_Rect</code> struct.
109 /// @return A const reference to the internal <code>PP_Rect</code> struct.
110 const PP_Rect
[all...]

Completed in 79 milliseconds