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

1 2 3

  /external/chromium_org/ppapi/thunk/
ppb_graphics_2d_dev_thunk.cc 21 PP_Bool SetScale(PP_Resource resource, float scale) {
22 VLOG(4) << "PPB_Graphics2D_Dev::SetScale()";
26 return enter.object()->SetScale(scale);
38 &SetScale,
ppb_widget_api.h 21 virtual void SetScale(float scale) = 0;
ppb_widget_dev_thunk.cc 61 void SetScale(PP_Resource widget, float scale) {
62 VLOG(4) << "PPB_Widget_Dev::SetScale()";
66 enter.object()->SetScale(scale);
83 &SetScale
ppb_graphics_2d_api.h 37 virtual PP_Bool SetScale(float scale) = 0;
ppb_graphics_2d_thunk.cc 90 PP_Bool SetScale(PP_Resource resource, float scale) {
91 VLOG(4) << "PPB_Graphics2D::SetScale()";
95 return enter.object()->SetScale(scale);
124 &SetScale,
  /external/chromium_org/ppapi/cpp/dev/
graphics_2d_dev.cc 25 bool Graphics2D_Dev::SetScale(float scale) {
28 return PP_ToBool(get_interface<PPB_Graphics2D_Dev>()->SetScale(pp_resource(),
graphics_2d_dev.h 26 /// Returns true if SetScale and GetScale are supported. False if not.
29 /// SetScale() sets the scale factor that will be applied when painting the
32 /// height scaled up by the view's GetDeviceScale and SetScale called with a
36 /// SetScale with 0.5. One would then treat each pixel in the context as a
43 bool SetScale(float scale);
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/c/dev/
ppb_graphics_2d_dev.h 31 * SetScale() sets the scale factor that will be applied when painting the
34 * height scaled up by the view's GetDeviceScale and SetScale called with a
38 * SetScale with 0.5. One would then treat each pixel in the context as a
47 PP_Bool (*SetScale)(PP_Resource resource, float scale);
ppb_widget_dev.h 65 void (*SetScale)(PP_Resource widget, float scale);
  /external/chromium_org/ppapi/api/dev/
ppb_graphics_2d_dev.idl 17 * SetScale() sets the scale factor that will be applied when painting the
20 * height scaled up by the view's GetDeviceScale and SetScale called with a
24 * SetScale with 0.5. One would then treat each pixel in the context as a
33 PP_Bool SetScale(
ppb_widget_dev.idl 61 void SetScale([in] PP_Resource widget,
  /external/chromium_org/ash/wm/
image_cursors.h 41 void SetScale(float scale);
ash_native_cursor_manager.h 49 virtual void SetScale(
  /external/chromium_org/ash/magnifier/
magnification_controller.h 35 virtual void SetScale(float scale, bool animate) = 0;
partial_magnification_controller.cc 53 void PartialMagnificationController::SetScale(float scale) {
69 SetScale(kDefaultPartialMagnifiedScale);
71 SetScale(kNonPartialMagnifiedScale);
196 SetScale(GetScale());
partial_magnification_controller.h 39 void SetScale(float scale);
  /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);
  /external/chromium_org/ui/aura/client/
cursor_client.h 35 virtual void SetScale(float scale) = 0;
  /external/chromium_org/ui/views/corewm/
native_cursor_manager.h 47 virtual void SetScale(
  /external/chromium_org/content/renderer/pepper/
ppb_widget_impl.h 38 virtual void SetScale(float scale) OVERRIDE;
  /external/chromium_org/ppapi/proxy/
graphics_2d_resource.h 41 virtual PP_Bool SetScale(float scale) OVERRIDE;
  /external/chromium_org/ui/aura/test/
test_cursor_client.h 24 virtual void SetScale(float scale) OVERRIDE;
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_native_cursor_manager.h 52 virtual void SetScale(

Completed in 486 milliseconds

1 2 3