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

  /external/chromium_org/ppapi/thunk/
ppb_view_dev_thunk.cc 19 float GetDeviceScale(PP_Resource resource) {
20 VLOG(4) << "PPB_View_Dev::GetDeviceScale()";
24 return enter.object()->GetDeviceScale();
36 &GetDeviceScale,
ppb_view_api.h 28 virtual float GetDeviceScale() const = 0;
ppb_view_thunk.cc 65 float GetDeviceScale(PP_Resource resource) {
66 VLOG(4) << "PPB_View::GetDeviceScale()";
70 return enter.object()->GetDeviceScale();
105 &GetDeviceScale,
116 &GetDeviceScale,
  /external/chromium_org/ppapi/c/dev/
ppb_view_dev.h 30 * GetDeviceScale returns the scale factor between device pixels and DIPs
44 float (*GetDeviceScale)(PP_Resource resource);
  /external/chromium_org/ppapi/api/dev/
ppb_view_dev.idl 17 * GetDeviceScale returns the scale factor between device pixels and DIPs
31 float_t GetDeviceScale([in] PP_Resource resource);
  /external/chromium_org/ppapi/cpp/dev/
view_dev.cc 20 float ViewDev::GetDeviceScale() const {
23 return get_interface<PPB_View_Dev>()->GetDeviceScale(pp_resource());
view_dev.h 21 /// GetDeviceScale returns the scale factor between device pixels and DIPs
31 float GetDeviceScale() const;
  /external/chromium_org/ppapi/cpp/
view.h 122 /// GetDeviceScale returns the scale factor between device pixels and DIPs
132 float GetDeviceScale() const;
view.cc 105 float View::GetDeviceScale() const {
107 return get_interface<PPB_View_1_2>()->GetDeviceScale(pp_resource());
109 return get_interface<PPB_View_1_1>()->GetDeviceScale(pp_resource());
  /external/chromium_org/ppapi/c/
ppb_view.h 173 * GetDeviceScale returns the scale factor between device pixels and Density
188 float (*GetDeviceScale)(PP_Resource resource);
235 float (*GetDeviceScale)(PP_Resource resource);
  /external/chromium_org/ppapi/shared_impl/
ppb_view_shared.h 51 virtual float GetDeviceScale() const OVERRIDE;
ppb_view_shared.cc 80 float PPB_View_Shared::GetDeviceScale() const { return data_.device_scale; }
  /external/chromium_org/ppapi/api/
ppb_view.idl 166 * GetDeviceScale returns the scale factor between device pixels and Density
182 float_t GetDeviceScale([in] PP_Resource resource);
  /external/chromium_org/ppapi/examples/scaling/
scaling.cc 45 view.GetDeviceScale() == device_scale_ &&
51 device_scale_ = view.GetDeviceScale();
  /external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
graphics_3d.cc 252 // scale the dimensions by view.GetDeviceScale().
253 int32_t new_width = view.GetRect().width() * view.GetDeviceScale();
254 int32_t new_height = view.GetRect().height() * view.GetDeviceScale();
  /external/chromium_org/native_client_sdk/src/examples/api/graphics_2d/
graphics_2d.cc 66 device_scale_ = view.GetDeviceScale();
  /external/chromium_org/native_client_sdk/src/examples/api/input_event/
input_event.cc 138 << " GetDeviceScale:" << view.GetDeviceScale()
  /external/chromium_org/remoting/client/plugin/
pepper_view.cc 106 float new_dips_to_device_scale = view.GetDeviceScale();
  /external/chromium_org/pdf/
out_of_process_instance.cc 508 float device_scale = view.GetDeviceScale();
    [all...]
instance.cc 623 device_scale = view.GetDeviceScale();
    [all...]

Completed in 500 milliseconds