HomeSort by relevance Sort by last modified time
    Searched refs:SetScale (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/ppapi/cpp/dev/
widget_dev.h 32 void SetScale(float scale);
widget_dev.cc 78 void Widget_Dev::SetScale(float scale) {
80 get_interface<PPB_Widget_Dev_0_4>()->SetScale(pp_resource(), scale);
  /external/chromium_org/ppapi/thunk/
ppb_widget_api.h 21 virtual void SetScale(float scale) = 0;
ppb_widget_dev_thunk.cc 59 void SetScale(PP_Resource widget, float scale) {
60 VLOG(4) << "PPB_Widget_Dev::SetScale()";
64 enter.object()->SetScale(scale);
81 &SetScale
ppb_graphics_2d_api.h 35 virtual PP_Bool SetScale(float scale) = 0;
ppb_graphics_2d_thunk.cc 88 PP_Bool SetScale(PP_Resource resource, float scale) {
89 VLOG(4) << "PPB_Graphics2D::SetScale()";
93 return enter.object()->SetScale(scale);
122 &SetScale,
  /external/chromium_org/ash/magnifier/
magnification_controller.h 44 virtual void SetScale(float scale, bool animate) = 0;
partial_magnification_controller.cc 54 void PartialMagnificationController::SetScale(float scale) {
70 SetScale(kDefaultPartialMagnifiedScale);
72 SetScale(kNonPartialMagnifiedScale);
198 SetScale(GetScale());
partial_magnification_controller.h 35 void SetScale(float scale);
magnification_controller_unittest.cc 101 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(scale, false)
    [all...]
magnification_controller.cc 74 virtual void SetScale(float scale, bool animate) OVERRIDE;
486 void MagnificationControllerImpl::SetScale(float scale, bool animate) {
583 SetScale(scale, true);
  /external/chromium_org/ppapi/cpp/
graphics_2d.h 44 /// 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);
graphics_2d.cc 142 bool Graphics2D::SetScale(float scale) {
145 return PP_ToBool(get_interface<PPB_Graphics2D_1_1>()->SetScale(pp_resource(),
  /external/chromium_org/ppapi/api/dev/
ppb_widget_dev.idl 61 void SetScale([in] PP_Resource widget,
  /external/chromium_org/content/renderer/pepper/
ppb_widget_impl.h 38 virtual void SetScale(float scale) OVERRIDE;
ppb_widget_impl.cc 59 void PPB_Widget_Impl::SetScale(float scale) { scale_ = scale; }
pepper_graphics_2d_host.h 83 void SetScale(float scale);
  /external/chromium_org/ppapi/c/dev/
ppb_widget_dev.h 65 void (*SetScale)(PP_Resource widget, float scale);
  /external/chromium_org/ppapi/proxy/
graphics_2d_resource.h 41 virtual PP_Bool SetScale(float scale) OVERRIDE;
graphics_2d_resource.cc 103 PP_Bool Graphics2DResource::SetScale(float scale) {
  /external/chromium_org/ppapi/api/
ppb_graphics_2d.idl 251 * 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/ppapi/c/
ppb_graphics_2d.h 252 * 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);
  /external/chromium_org/ash/touch/
touch_hud_debug.cc 262 void SetScale(int scale) {
421 canvas_->SetScale(1);
428 canvas_->SetScale(kReducedScale);
  /external/chromium_org/ppapi/examples/scaling/
scaling.cc 124 // 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/
test_graphics_2d.cc 343 // 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 1046 milliseconds

1 2