HomeSort by relevance Sort by last modified time
    Searched defs:SetScale (Results 1 - 20 of 20) sorted by null

  /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(),
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/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_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,
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
  /external/chromium_org/ash/wm/
ash_native_cursor_manager.cc 82 void AshNativeCursorManager::SetScale(
85 image_cursors_->SetScale(scale);
image_cursors.cc 122 void ImageCursors::SetScale(float scale) {
  /external/chromium_org/content/renderer/pepper/
ppb_widget_impl.cc 62 void PPB_Widget_Impl::SetScale(float scale) {
pepper_graphics_2d_host.cc 401 void PepperGraphics2DHost::SetScale(float scale) {
  /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/ppapi/cpp/
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/ui/views/widget/desktop_aura/
desktop_native_cursor_manager.cc 72 void DesktopNativeCursorManager::SetScale(
  /external/chromium_org/ppapi/proxy/
graphics_2d_resource.cc 102 PP_Bool Graphics2DResource::SetScale(float scale) {
  /external/chromium_org/ui/aura/test/
test_cursor_client.cc 38 void TestCursorClient::SetScale(float scale) {
  /external/chromium_org/ash/magnifier/
partial_magnification_controller.cc 53 void PartialMagnificationController::SetScale(float scale) {
69 SetScale(kDefaultPartialMagnifiedScale);
71 SetScale(kNonPartialMagnifiedScale);
196 SetScale(GetScale());
magnification_controller.cc 70 virtual void SetScale(float scale, bool animate) OVERRIDE;
501 void MagnificationControllerImpl::SetScale(float scale, bool animate) {
606 SetScale(scale, true);
  /external/chromium_org/ui/views/corewm/
cursor_manager.cc 116 void CursorManager::SetScale(float scale) {
119 delegate_->SetScale(state_on_unlock_->scale(), this);
  /external/chromium_org/ash/touch/
touch_hud_debug.cc 264 void SetScale(int scale) {
424 canvas_->SetScale(1);
431 canvas_->SetScale(kReducedScale);

Completed in 849 milliseconds