Searched refs:SetScale (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/ppapi/cpp/dev/
H A Dwidget_dev.h32 void SetScale(float scale);
H A Dwidget_dev.cc78 void Widget_Dev::SetScale(float scale) { function in class:pp::Widget_Dev
80 get_interface<PPB_Widget_Dev_0_4>()->SetScale(pp_resource(), scale);
/external/chromium_org/ppapi/thunk/
H A Dppb_widget_api.h21 virtual void SetScale(float scale) = 0;
H A Dppb_widget_dev_thunk.cc59 void SetScale(PP_Resource widget, float scale) { function in namespace:ppapi::thunk::__anon10329
60 VLOG(4) << "PPB_Widget_Dev::SetScale()";
64 enter.object()->SetScale(scale);
81 &SetScale
H A Dppb_graphics_2d_thunk.cc88 PP_Bool SetScale(PP_Resource resource, float scale) { function in namespace:ppapi::thunk::__anon10278
89 VLOG(4) << "PPB_Graphics2D::SetScale()";
93 return enter.object()->SetScale(scale);
122 &SetScale,
H A Dppb_graphics_2d_api.h35 virtual PP_Bool SetScale(float scale) = 0;
/external/chromium_org/ppapi/api/dev/
H A Dppb_widget_dev.idl61 void SetScale([in] PP_Resource widget,
/external/chromium_org/ash/magnifier/
H A Dmagnification_controller.h44 virtual void SetScale(float scale, bool animate) = 0;
H A Dpartial_magnification_controller.cc54 void PartialMagnificationController::SetScale(float scale) { function in class:ash::PartialMagnificationController
70 SetScale(kDefaultPartialMagnifiedScale);
72 SetScale(kNonPartialMagnifiedScale);
198 SetScale(GetScale());
H A Dpartial_magnification_controller.h35 void SetScale(float scale);
H A Dmagnification_controller_unittest.cc101 GetMagnificationController()->SetScale(4.0f, false);
116 GetMagnificationController()->SetScale(4.0f, false);
121 GetMagnificationController()->SetScale(1.0f, false);
126 GetMagnificationController()->SetScale(3.0f, false);
367 GetMagnificationController()->SetScale(scale, false);
376 GetMagnificationController()->SetScale(scale, false);
383 GetMagnificationController()->SetScale(scale, false);
390 GetMagnificationController()->SetScale(scale, false);
413 GetMagnificationController()->SetScale(scale, false);
422 GetMagnificationController()->SetScale(scal
[all...]
H A Dmagnification_controller.cc74 virtual void SetScale(float scale, bool animate) OVERRIDE;
486 void MagnificationControllerImpl::SetScale(float scale, bool animate) { function in class:ash::MagnificationControllerImpl
583 SetScale(scale, true);
/external/chromium_org/ppapi/c/dev/
H A Dppb_widget_dev.h65 void (*SetScale)(PP_Resource widget, float scale); member in struct:PPB_Widget_Dev_0_4
/external/chromium_org/ppapi/cpp/
H A Dgraphics_2d.h44 /// measured in pixels. See <code>SetScale()</code> for more information.
263 /// SetScale() sets the scale factor that will be applied when painting the
266 /// height scaled up by the view's GetDeviceScale and SetScale called with a
270 /// SetScale with 0.5. One would then treat each pixel in the context as a
277 bool SetScale(float scale);
H A Dgraphics_2d.cc142 bool Graphics2D::SetScale(float scale) { function in class:pp::Graphics2D
145 return PP_ToBool(get_interface<PPB_Graphics2D_1_1>()->SetScale(pp_resource(),
/external/chromium_org/ppapi/api/
H A Dppb_graphics_2d.idl251 * SetScale() sets the scale factor that will be applied when painting the
254 * height scaled up by the view's GetDeviceScale and SetScale called with a
258 * SetScale with 0.5. One would then treat each pixel in the context as a
268 PP_Bool SetScale(
/external/chromium_org/content/renderer/pepper/
H A Dppb_widget_impl.cc59 void PPB_Widget_Impl::SetScale(float scale) { scale_ = scale; } function in class:content::PPB_Widget_Impl
H A Dppb_widget_impl.h38 virtual void SetScale(float scale) OVERRIDE;
H A Dpepper_graphics_2d_host.h83 void SetScale(float scale);
/external/chromium_org/ppapi/c/
H A Dppb_graphics_2d.h252 * SetScale() sets the scale factor that will be applied when painting the
255 * height scaled up by the view's GetDeviceScale and SetScale called with a
259 * SetScale with 0.5. One would then treat each pixel in the context as a
268 PP_Bool (*SetScale)(PP_Resource resource, float scale); member in struct:PPB_Graphics2D_1_1
/external/chromium_org/ppapi/proxy/
H A Dgraphics_2d_resource.h41 virtual PP_Bool SetScale(float scale) OVERRIDE;
H A Dgraphics_2d_resource.cc103 PP_Bool Graphics2DResource::SetScale(float scale) { function in class:ppapi::proxy::Graphics2DResource
/external/chromium_org/ash/touch/
H A Dtouch_hud_debug.cc262 void SetScale(int scale) { function in class:ash::TouchHudCanvas
421 canvas_->SetScale(1);
428 canvas_->SetScale(kReducedScale);
/external/chromium_org/ppapi/examples/scaling/
H A Dscaling.cc124 // If SetScale is promoted to pp::Graphics2D, the dc_dev constructor
126 // device_context_.SetScale(1.0f / device_scale_);
127 device_context_.SetScale(1.0f / device_scale_);
/external/chromium_org/ppapi/tests/
H A Dtest_graphics_2d.cc343 // Tests GetScale/SetScale
349 ASSERT_TRUE(dc.SetScale(scale));
353 ASSERT_FALSE(dc.SetScale(-1.0f));
354 ASSERT_FALSE(dc.SetScale(0.0f));
717 // Tests GetScale/SetScale via the Graphics2D_Dev C++ wrapper
723 ASSERT_TRUE(dc.SetScale(scale));
727 ASSERT_FALSE(dc.SetScale(-1.0f));
728 ASSERT_FALSE(dc.SetScale(0.0f));

Completed in 309 milliseconds

12