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

  /external/chromium_org/content/browser/renderer_host/
dip_util.h 33 float scale_factor, const gfx::Size& size_in_pixel);
37 float scale_factor, const gfx::Size& size_in_pixel);
dip_util.cc 41 const gfx::Size& size_in_pixel) {
43 gfx::ScaleSize(size_in_pixel, 1.0f / scale_factor));
  /external/chromium_org/ash/display/
display_info_unittest.cc 17 EXPECT_EQ("200x100", info.size_in_pixel().ToString());
24 EXPECT_EQ("288x380", info.size_in_pixel().ToString());
30 EXPECT_EQ("288x380", info.size_in_pixel().ToString());
36 EXPECT_EQ("380x288", info.size_in_pixel().ToString());
display_info.h 114 // different from the |size_in_pixel| when overscan insets are set
121 const gfx::Size& size_in_pixel() const { return size_in_pixel_; } function in class:ash::DisplayInfo
display_manager_unittest.cc 274 updated_display_info2.size_in_pixel().ToString());
290 updated_display_info2.size_in_pixel().ToString());
299 GetDisplayInfoAt(1).size_in_pixel().ToString());
323 updated_display_info2.size_in_pixel().ToString());
337 updated_display_info2.size_in_pixel().ToString());
827 GetDisplayInfoAt(0).size_in_pixel().ToString());
832 GetDisplayInfoAt(1).size_in_pixel().ToString());
841 GetDisplayInfoAt(0).size_in_pixel().ToString());
846 GetDisplayInfoAt(1).size_in_pixel().ToString());
    [all...]
display_manager.cc 728 (current_display_info.size_in_pixel() !=
    [all...]
resolution_notification_controller_unittest.cc 70 info.size_in_pixel(),
  /external/chromium_org/ui/compositor/
dip_util.cc 37 const gfx::Size& size_in_pixel) {
39 gfx::ScaleSize(size_in_pixel, 1.0f / GetDeviceScaleFactor(layer)));
dip_util.h 33 const gfx::Size& size_in_pixel);
compositor.cc 250 void Compositor::SetScaleAndSize(float scale, const gfx::Size& size_in_pixel) {
252 if (!size_in_pixel.IsEmpty()) {
253 size_ = size_in_pixel;
254 host_->SetViewportSize(size_in_pixel);
255 root_web_layer_->SetBounds(size_in_pixel);
compositor.h 178 void SetScaleAndSize(float scale, const gfx::Size& size_in_pixel);
  /external/chromium_org/ash/desktop_background/
desktop_background_controller.cc 164 // Don't use size_in_pixel because we want to use the native pixel size.
165 gfx::Size size_in_pixel = local
169 size_in_pixel = gfx::Size(size_in_pixel.height(), size_in_pixel.width());
171 width = std::max(size_in_pixel.width(), width);
172 height = std::max(size_in_pixel.height(), height);
  /external/chromium_org/ui/gfx/
display.h 98 void SetSize(const gfx::Size& size_in_pixel);
display.cc 151 void Display::SetSize(const gfx::Size& size_in_pixel) {
158 SetScaleAndBounds(device_scale_factor_, gfx::Rect(origin, size_in_pixel));

Completed in 1389 milliseconds