OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PP_FloatSize
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ppapi/c/
pp_size.h
36
* The <code>
PP_FloatSize
</code> struct contains the size of a 2D rectangle.
38
struct
PP_FloatSize
{
70
* PP_MakeFloatSize() creates a <code>
PP_FloatSize
</code> given a
76
* @return A <code>
PP_FloatSize
</code> structure.
78
PP_INLINE struct
PP_FloatSize
PP_MakeFloatSize(float w, float h) {
79
struct
PP_FloatSize
ret;
/external/chromium_org/ppapi/cpp/
size.h
158
/// A constructor accepting a pointer to a <code>
PP_FloatSize
</code> and
159
/// converting the <code>
PP_FloatSize
</code> to a <code>FloatSize</code>.
162
/// @param[in] s A pointer to a <code>
PP_FloatSize
</code>.
163
FloatSize(const
PP_FloatSize
& s) { // Implicit.
184
///
PP_FloatSize
() allows implicit conversion of a <code>FloatSize</code> to a
185
/// <code>
PP_FloatSize
</code>.
188
operator
PP_FloatSize
() {
192
/// Getter function for returning the internal <code>
PP_FloatSize
</code>
195
/// @return A const reference to the internal <code>
PP_FloatSize
</code>
197
const
PP_FloatSize
& pp_float_size() const
[
all
...]
Completed in 504 milliseconds