/external/chromium_org/ui/views/widget/desktop_aura/ |
D | desktop_screen_x11_unittest.cc | 29 std::vector<gfx::Display> displays; in SetUp() local 30 displays.push_back(gfx::Display(kFirstDisplay, gfx::Rect(0, 0, 640, 480))); in SetUp() 31 screen_.reset(new DesktopScreenX11(displays)); in SetUp() 84 std::vector<gfx::Display> displays; in TEST_F() local 85 displays.push_back(gfx::Display(kFirstDisplay, gfx::Rect(0, 0, 1024, 768))); in TEST_F() 86 screen()->ProcessDisplayChange(displays); in TEST_F() 94 std::vector<gfx::Display> displays; in TEST_F() local 95 displays.push_back(gfx::Display(kFirstDisplay, gfx::Rect(0, 0, 640, 480))); in TEST_F() 96 displays.push_back(gfx::Display(kSecondDisplay, in TEST_F() 98 screen()->ProcessDisplayChange(displays); in TEST_F() [all …]
|
D | desktop_screen_x11.cc | 302 std::vector<gfx::Display> displays; in BuildDisplaysFromXRandRInfo() local 364 displays.push_back(display); in BuildDisplaysFromXRandRInfo() 374 if (displays.empty()) in BuildDisplaysFromXRandRInfo() 377 return displays; in BuildDisplaysFromXRandRInfo()
|
/external/chromium_org/ash/display/ |
D | display_change_observer_chromeos.cc | 121 std::vector<DisplayInfo> displays; in OnDisplayModeChanged() local 166 displays.push_back(DisplayInfo(id, name, has_overscan)); in OnDisplayModeChanged() 167 displays.back().set_device_scale_factor(device_scale_factor); in OnDisplayModeChanged() 168 displays.back().SetBounds(display_bounds); in OnDisplayModeChanged() 169 displays.back().set_native(true); in OnDisplayModeChanged() 170 displays.back().set_resolutions(resolutions); in OnDisplayModeChanged() 171 displays.back().set_touch_support( in OnDisplayModeChanged() 177 Shell::GetInstance()->display_manager()->OnNativeDisplaysChanged(displays); in OnDisplayModeChanged()
|
D | display_manager.cc | 962 DisplayList* displays, in UpdateSecondaryDisplayBoundsForLayout() argument 964 if (displays->size() != 2U) in UpdateSecondaryDisplayBoundsForLayout() 967 int64 id_at_zero = displays->at(0).id(); in UpdateSecondaryDisplayBoundsForLayout() 971 std::make_pair(id_at_zero, displays->at(1).id()) : in UpdateSecondaryDisplayBoundsForLayout() 972 std::make_pair(displays->at(1).id(), id_at_zero) ; in UpdateSecondaryDisplayBoundsForLayout() 980 if (displays->at(0).id() == layout.primary_id) { in UpdateSecondaryDisplayBoundsForLayout() 991 GetDisplayForId(displays->at(secondary_index).id()).bounds(); in UpdateSecondaryDisplayBoundsForLayout() 993 layout, displays->at(primary_index), &displays->at(secondary_index)); in UpdateSecondaryDisplayBoundsForLayout() 995 return bounds != displays->at(secondary_index).bounds(); in UpdateSecondaryDisplayBoundsForLayout()
|
/external/chromium_org/ui/gfx/ |
D | screen_mac.mm | 107 // Don't just return all online displays. This would include displays 108 // that mirror other displays, which are not desired in this list. It's 110 // displays exclude sleeping displays, and those are desired. 112 // It would be ridiculous to have this many displays connected, but 132 std::vector<gfx::Display> displays; 144 displays.push_back(GetDisplayForScreen(foundScreen->second)); 149 if (!displays.size()) 152 return displays;
|
D | screen_gtk.cc | 165 std::vector<gfx::Display> displays = GetAllDisplays(); in GetDisplayMatching() local 168 for (std::vector<gfx::Display>::iterator it = displays.begin(); in GetDisplayMatching() 169 it != displays.end(); ++it) { in GetDisplayMatching()
|
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
D | display_options.css | 13 #display-options-displays-view-host { 17 #display-options-displays-view { 23 #display-options-displays-view-mirroring { 70 .displays-display { 85 .displays-focused {
|
D | display_options.js | 813 onDisplayChanged_: function(mirroring, displays, layout, offset) { argument 818 for (var i = 0; i < displays.length; i++) { 819 if (!displays[i].isInternal) { 836 this.displays_.length != displays.length) { 841 this.displays_ = displays; 854 mirroring, displays, layout, offset) { argument 856 mirroring, displays, layout, offset);
|
/external/chromium_org/ui/events/ |
D | event_utils.cc | 36 const std::vector<gfx::Display>& displays = screen->GetAllDisplays(); in ShouldDefaultToNaturalScroll() local 37 for (std::vector<gfx::Display>::const_iterator it = displays.begin(); in ShouldDefaultToNaturalScroll() 38 it != displays.end(); ++it) { in ShouldDefaultToNaturalScroll()
|
/external/chromium_org/third_party/angle/src/libEGL/ |
D | Display.cpp | 31 DisplayMap displays; variable 36 if (displays.find(displayId) != displays.end()) in getDisplay() 38 return displays[displayId]; in getDisplay() 45 displays[displayId] = display; in getDisplay() 59 DisplayMap::iterator thisDisplay = displays.find(mDisplayId); in ~Display() 61 if (thisDisplay != displays.end()) in ~Display() 63 displays.erase(thisDisplay); in ~Display()
|
/external/chromium_org/remoting/host/ |
D | desktop_resizer_mac.cc | 158 CGDirectDisplayID displays[2]; in GetSoleDisplayId() local 160 CGError err = CGGetActiveDisplayList(arraysize(displays), in GetSoleDisplayId() 161 displays, &num_displays); in GetSoleDisplayId() 165 *display = displays[0]; in GetSoleDisplayId()
|
/external/chromium_org/chrome/browser/extensions/api/system_display/ |
D | display_info_provider.cc | 78 std::vector<gfx::Display> displays = screen->GetAllDisplays(); in GetAllDisplaysInfo() local 82 CreateDisplayUnitInfo(displays[i], primary_id)); in GetAllDisplaysInfo() 83 UpdateDisplayUnitInfoForPlatform(displays[i], unit.get()); in GetAllDisplaysInfo()
|
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/ |
D | display_options_handler.cc | 160 std::vector<gfx::Display> displays; in SendAllDisplayInfo() local 162 displays.push_back(display_manager->GetDisplayAt(i)); in SendAllDisplayInfo() 164 SendDisplayInfo(displays); in SendAllDisplayInfo() 168 const std::vector<gfx::Display>& displays) { in SendDisplayInfo() argument 174 for (size_t i = 0; i < displays.size(); ++i) { in SendDisplayInfo() 175 const gfx::Display& display = displays[i]; in SendDisplayInfo()
|
D | display_options_handler.h | 45 void SendDisplayInfo(const std::vector<gfx::Display>& displays);
|
/external/chromium_org/chrome/browser/chromeos/display/ |
D | display_preferences_unittest.cc | 207 const base::DictionaryValue* displays = in TEST_F() local 211 EXPECT_TRUE(displays->GetDictionary(key, &layout_value)); in TEST_F() 287 EXPECT_TRUE(displays->GetDictionary(key, &layout_value)); in TEST_F() 308 EXPECT_TRUE(displays->GetDictionary(key, &layout_value)); in TEST_F() 343 EXPECT_TRUE(displays->GetDictionary(key, &layout_value)); in TEST_F() 418 const base::DictionaryValue* displays = in TEST_F() local 422 EXPECT_TRUE(displays->GetDictionary(key, &new_value)); in TEST_F() 431 EXPECT_TRUE(displays->GetDictionary(key, &new_value)); in TEST_F()
|
/external/qemu/android/skin/ |
D | window.c | 805 ADisplay* displays; member 823 ADisplay* __display = (layout)->displays; \ 845 display_done( &layout->displays[nn] ); in layout_done() 853 AFREE( layout->displays ); in layout_done() 854 layout->displays = NULL; in layout_done() 895 AARRAY_NEW0(layout->displays, n_displays); in layout_init() 899 if (layout->displays == NULL && n_displays > 0) goto Fail; in layout_init() 919 ADisplay* disp = layout->displays + n_displays; in layout_init() 1169 ADisplay* disp = window->layout.displays; in skin_window_show_opengles() 1439 disp = window->layout.displays; in skin_window_reset_internal() [all …]
|
/external/linux-tools-perf/Documentation/ |
D | perf-evlist.txt | 15 This command displays the names of events sampled in a perf.data file.
|
D | perf-kvm.txt | 21 'perf kvm [options] top <command>' to generates and displays 34 'perf kvm diff' to displays the performance difference amongst two perf.data
|
D | perf-top.txt | 15 This command generates and displays a performance counter profile in real time. 142 Pressing any unmapped key displays a menu, and prompts for input.
|
D | perf-report.txt | 15 This command displays the performance counter profile information recorded 89 - fractal: like graph, but displays relative rates. Each branch of
|
D | perf-buildid-list.txt | 15 This command displays the buildids found in a perf.data file, so that other
|
/external/chromium_org/ppapi/api/trusted/ |
D | ppb_file_chooser_trusted.idl | 21 * This function displays a previously created file chooser resource as a 46 * This function displays a previously created file chooser resource as a
|
/external/chromium_org/ash/desktop_background/ |
D | desktop_background_controller.cc | 444 std::vector<gfx::Display> displays = Shell::GetScreen()->GetAllDisplays(); in GetMaxDisplaySizeInNative() local 448 for (std::vector<gfx::Display>::iterator iter = displays.begin(); in GetMaxDisplaySizeInNative() 449 iter != displays.end(); ++iter) { in GetMaxDisplaySizeInNative()
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | chrome_browser_window_unittest.mm | 41 // Baseline test that the window creates, displays, closes, and
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
D | chrome_browser_window_unittest.mm | 42 // Baseline test that the window creates, displays, closes, and
|