Home | History | Annotate | Download | only in cpp

Lines Matching defs:PP_Rect

8 #include "ppapi/c/pp_rect.h"
31 /// 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& pp_rect() const {
114 /// Getter function for returning the internal <code>PP_Rect</code> struct.
116 /// @return A mutable reference to the <code>PP_Rect</code> struct.
117 PP_Rect& pp_rect() {
254 /// @param[in] rect A pointer to a <code>PP_Rect</code>.
255 void SetRect(const PP_Rect& rect) {
396 PP_Rect rect_;