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

  /external/chromium_org/ppapi/thunk/
ppb_view_dev_thunk.cc 21 float GetDeviceScale(PP_Resource resource) {
22 VLOG(4) << "PPB_View_Dev::GetDeviceScale()";
26 return enter.object()->GetDeviceScale();
38 &GetDeviceScale,
ppb_view_api.h 28 virtual float GetDeviceScale() const = 0;
ppb_view_thunk.cc 67 float GetDeviceScale(PP_Resource resource) {
68 VLOG(4) << "PPB_View::GetDeviceScale()";
72 return enter.object()->GetDeviceScale();
99 &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 86 float View::GetDeviceScale() const {
88 return get_interface<PPB_View_1_1>()->GetDeviceScale(pp_resource());
  /external/chromium_org/ppapi/api/
ppb_view.idl 165 * GetDeviceScale returns the scale factor between device pixels and Density
181 float_t GetDeviceScale([in] PP_Resource resource);
  /external/chromium_org/ppapi/c/
ppb_view.h 172 * GetDeviceScale returns the scale factor between device pixels and Density
187 float (*GetDeviceScale)(PP_Resource resource);
  /external/chromium_org/ppapi/shared_impl/
ppb_view_shared.h 52 virtual float GetDeviceScale() const OVERRIDE;
ppb_view_shared.cc 87 float PPB_View_Shared::GetDeviceScale() const {
  /external/chromium_org/ppapi/examples/scaling/
scaling.cc 45 view.GetDeviceScale() == device_scale_ &&
51 device_scale_ = view.GetDeviceScale();
  /external/chromium_org/remoting/client/plugin/
pepper_view.cc 108 float new_dips_to_device_scale = view_dev.GetDeviceScale();

Completed in 176 milliseconds