OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetRect
(Results
1 - 25
of
38
) sorted by null
1
2
/external/chromium_org/ppapi/cpp/
view.h
29
///
GetRect
() retrieves the rectangle of the module instance associated
44
Rect
GetRect
() const;
61
/// This function performs the duties of
GetRect
() (determining whether the
view.cc
30
Rect View::
GetRect
() const {
33
if (PP_ToBool(get_interface<PPB_View_1_1>()->
GetRect
(pp_resource(), &out)))
36
if (PP_ToBool(get_interface<PPB_View_1_0>()->
GetRect
(pp_resource(), &out)))
instance.cc
59
DidChangeView(view.
GetRect
(), view.GetClipRect());
/external/chromium_org/ppapi/thunk/
ppb_view_api.h
23
virtual PP_Bool
GetRect
(PP_Rect* viewport) const = 0;
ppb_view_thunk.cc
27
PP_Bool
GetRect
(PP_Resource resource, struct PP_Rect* rect) {
28
VLOG(4) << "PPB_View::
GetRect
()";
32
return enter.object()->
GetRect
(rect);
85
&
GetRect
,
94
&
GetRect
,
/external/chromium_org/ppapi/c/
ppb_view.h
55
*
GetRect
() retrieves the rectangle of the module instance associated
76
PP_Bool (*
GetRect
)(PP_Resource resource, struct PP_Rect* rect);
97
* This function performs the duties of
GetRect
() (determining whether the
206
PP_Bool (*
GetRect
)(PP_Resource resource, struct PP_Rect* rect);
/external/chromium_org/ppapi/api/
ppb_view.idl
41
*
GetRect
() retrieves the rectangle of the module instance associated
62
PP_Bool
GetRect
([in] PP_Resource resource,
86
* This function performs the duties of
GetRect
() (determining whether the
/external/chromium_org/ppapi/shared_impl/
ppb_view_shared.h
46
virtual PP_Bool
GetRect
(PP_Rect* viewport) const OVERRIDE;
ppb_view_shared.cc
61
PP_Bool PPB_View_Shared::
GetRect
(PP_Rect* viewport) const {
/external/chromium_org/ppapi/tests/
test_view.cc
134
pp::Rect original_rect = last_view_.
GetRect
();
150
while (WaitUntilViewChanged() && last_view_.
GetRect
() != desired_rect &&
154
ASSERT_TRUE(last_view_.
GetRect
() == desired_rect);
160
pp::Rect original_rect = last_view_.
GetRect
();
test_mouse_lock.cc
32
position_ = view.
GetRect
();
test_flash_fullscreen.cc
138
pp::Rect position = view.
GetRect
();
/external/chromium_org/ppapi/examples/mouse_cursor/
mouse_cursor.cc
38
width_ = view.
GetRect
().width();
39
height_ = view.
GetRect
().height();
/external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
var_array_buffer.cc
113
if (size_ != view.
GetRect
().size()) {
114
size_ = view.
GetRect
().size();
117
pp::Graphics2D(this, view.
GetRect
().size(), is_always_opaque);
/external/chromium_org/native_client_sdk/src/examples/api/mouse_lock/
mouse_lock.cc
121
if ((size_ == view.
GetRect
().size()) &&
124
view.
GetRect
().width(),
125
view.
GetRect
().height(),
132
view.
GetRect
().width(),
133
view.
GetRect
().height(),
137
size_ = view.
GetRect
().size();
/external/chromium_org/native_client_sdk/src/examples/api/input_event/
input_event.cc
134
<< " x:" << view.
GetRect
().x()
135
<< " y:" << view.
GetRect
().y()
136
<< " width:" << view.
GetRect
().width()
137
<< " height:" << view.
GetRect
().height()
/external/chromium_org/content/plugin/
webplugin_proxy.cc
156
delegate_->
GetRect
().width(),
157
delegate_->
GetRect
().height());
172
gfx::Rect plugin_rect = delegate_->
GetRect
();
362
offset_rect.Offset(delegate_->
GetRect
().OffsetFromOrigin());
408
saved_canvas->translate(SkIntToScalar(-delegate_->
GetRect
().x()),
409
SkIntToScalar(-delegate_->
GetRect
().y()));
425
gfx::Rect old = delegate_->
GetRect
();
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_context_2d.cc
55
PSInterfaceView()->
GetRect
(event->as_resource, &rect);
/external/chromium_org/native_client_sdk/src/examples/api/gamepad/
gamepad.cc
91
pp::Rect position = view.
GetRect
();
/external/chromium_org/ppapi/examples/2d/
graphics_2d_example.c
152
if (g_view_interface->
GetRect
(view, &position) == PP_FALSE)
paint_manager_example.cc
77
paint_manager_.SetSize(view.
GetRect
().size());
/external/chromium_org/ppapi/examples/gamepad/
gamepad.cc
56
pp::Rect rect = view.
GetRect
();
/external/chromium_org/ppapi/examples/input/
pointer_event_input.cc
95
paint_manager_.SetSize(view.
GetRect
().size());
/external/chromium_org/ppapi/examples/scaling/
scaling.cc
42
pp::Rect view_rect = view.
GetRect
();
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
graphics_3d.cc
250
int32_t new_width = view.
GetRect
().width();
251
int32_t new_height = view.
GetRect
().height();
Completed in 282 milliseconds
1
2