OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PP_Point
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ppapi/c/
pp_point.h
6
/* From
pp_point
.idl modified Wed Oct 5 14:06:02 2011. */
26
* The
PP_Point
structure defines the integer x and y coordinates of a point.
28
struct
PP_Point
{
40
PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(
PP_Point
, 8);
61
* PP_MakePoint() creates a <code>
PP_Point
</code> given the x and y coordinates
69
* @return A <code>
PP_Point
</code> structure.
71
PP_INLINE struct
PP_Point
PP_MakePoint(int32_t x, int32_t y) {
72
struct
PP_Point
ret;
/external/chromium_org/ppapi/cpp/
point.h
8
#include "ppapi/c/
pp_point
.h"
36
/// A constructor accepting a pointer to a
PP_Point
and converting the
37
///
PP_Point
to a Point. This is an implicit conversion constructor.
39
/// @param[in] point A pointer to a
PP_Point
.
40
Point(const
PP_Point
& point) { // Implicit.
49
/// A function allowing implicit conversion of a Point to a
PP_Point
.
51
operator
PP_Point
() const {
55
/// Getter function for returning the internal
PP_Point
struct.
57
/// @return A const reference to the internal
PP_Point
struct.
58
const
PP_Point
& pp_point() const
function in class:pp::Point
65
PP_Point&
pp_point
() {
function in class:pp::Point
[
all
...]
Completed in 468 milliseconds