/external/chromium_org/ui/base/x/ |
D | selection_utils.cc | 38 atoms.push_back(atom_cache->GetAtom(kUtf8String)); in GetTextAtomsFrom() 39 atoms.push_back(atom_cache->GetAtom(kString)); in GetTextAtomsFrom() 40 atoms.push_back(atom_cache->GetAtom(kText)); in GetTextAtomsFrom() 41 atoms.push_back(atom_cache->GetAtom(kTextPlain)); in GetTextAtomsFrom() 42 atoms.push_back(atom_cache->GetAtom(kTextPlainUtf8)); in GetTextAtomsFrom() 48 atoms.push_back(atom_cache->GetAtom(Clipboard::kMimeTypeURIList)); in GetURLAtomsFrom() 49 atoms.push_back(atom_cache->GetAtom(kMimeTypeMozillaURL)); in GetURLAtomsFrom() 55 atoms.push_back(atom_cache->GetAtom(Clipboard::kMimeTypeURIList)); in GetURIListAtomsFrom() 200 if (type_ == atom_cache_.GetAtom(kUtf8String) || in GetText() 201 type_ == atom_cache_.GetAtom(kText) || in GetText() [all …]
|
D | selection_requestor_unittest.cc | 51 atom_cache_.GetAtom("STRING"), in SendSelectionNotify() 125 EXPECT_EQ(atom_cache->GetAtom("STRING"), out_type); in PerformBlockingConvertSelection() 136 XAtom selection = atom_cache_.GetAtom("FAKE_SELECTION"); in TEST_F() 138 XAtom target1 = atom_cache_.GetAtom("TARGET1"); in TEST_F() 139 XAtom target2 = atom_cache_.GetAtom("TARGET2"); in TEST_F()
|
D | selection_owner.cc | 155 if (requested_target == atom_cache_.GetAtom(kMultiple)) { in OnSelectionRequest() 178 atom_cache_.GetAtom(kAtomPair), in OnSelectionRequest() 221 XAtom multiple_atom = atom_cache_.GetAtom(kMultiple); in ProcessTarget() 222 XAtom save_targets_atom = atom_cache_.GetAtom(kSaveTargets); in ProcessTarget() 223 XAtom targets_atom = atom_cache_.GetAtom(kTargets); in ProcessTarget() 254 atom_cache_.GetAtom(kIncr), in ProcessTarget()
|
D | x11_util.cc | 89 XAtom property_atom = GetAtom(property_name.c_str()); in GetProperty() 539 XAtom hint_atom = GetAtom("_MOTIF_WM_HINTS"); in SetUseOSWindowFrame() 571 GetAtom("_GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED"), in SetHideTitlebarWhenMaximizedProperty() 611 XAtom hidden_atom = GetAtom("_NET_WM_STATE_HIDDEN"); in IsWindowVisible() 918 XAtom name_atom = GetAtom(name.c_str()); in SetIntArrayProperty() 919 XAtom type_atom = GetAtom(type.c_str()); in SetIntArrayProperty() 951 XAtom name_atom = GetAtom(name.c_str()); in SetAtomArrayProperty() 952 XAtom type_atom = GetAtom(type.c_str()); in SetAtomArrayProperty() 987 XAtom GetAtom(const char* name) { in GetAtom() function 1007 XDeleteProperty(display, window, GetAtom("WM_WINDOW_ROLE")); in SetWindowRole() [all …]
|
D | x11_menu_list.cc | 18 : menu_type_atom_(GetAtom("_NET_WM_WINDOW_TYPE_MENU")) { in XMenuList()
|
D | selection_requestor.cc | 72 x_property_ = atom_cache_.GetAtom(kChromeSelection); in SelectionRequestor() 172 if (request->out_type == atom_cache_.GetAtom(kIncr)) { in OnSelectionNotify()
|
D | x11_util.h | 187 UI_BASE_EXPORT XAtom GetAtom(const char* atom_name);
|
/external/chromium_org/ui/base/dragdrop/ |
D | os_exchange_data_provider_aurax11.cc | 58 atom_cache_.GetAtom(kDndSelection)) { in OSExchangeDataProviderAuraX11() 80 atom_cache_.GetAtom(kDndSelection)) { in OSExchangeDataProviderAuraX11() 119 format_map_.Insert(atom_cache_.GetAtom(kRendererTaint), in MarkOriginatedFromRenderer() 125 return format_map_.find(atom_cache_.GetAtom(kRendererTaint)) != in DidOriginateFromRenderer() 137 format_map_.Insert(atom_cache_.GetAtom(Clipboard::kMimeTypeText), mem); in SetString() 138 format_map_.Insert(atom_cache_.GetAtom(kText), mem); in SetString() 139 format_map_.Insert(atom_cache_.GetAtom(kString), mem); in SetString() 140 format_map_.Insert(atom_cache_.GetAtom(kUtf8String), mem); in SetString() 158 format_map_.Insert(atom_cache_.GetAtom(kMimeTypeMozillaURL), mem); in SetURL() 178 format_map_.Insert(atom_cache_.GetAtom(kNetscapeURL), in SetURL() [all …]
|
D | os_exchange_data_provider_aurax11_unittest.cc | 36 provider.atom_cache_.GetAtom(ui::Clipboard::kMimeTypeURIList), in AddURLList()
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
D | desktop_drag_drop_client_aurax11.cc | 282 atom_cache_->GetAtom(kXdndSelection), in RequestNextTarget() 284 atom_cache_->GetAtom(kChromiumDragReciever), in RequestNextTarget() 297 DCHECK_EQ(event.property, atom_cache_->GetAtom(kChromiumDragReciever)); in OnSelectionNotify() 348 if (xdnd_operation == atom_cache_->GetAtom(kXdndActionCopy)) in MaskOperation() 350 else if (xdnd_operation == atom_cache_->GetAtom(kXdndActionMove)) in MaskOperation() 352 else if (xdnd_operation == atom_cache_->GetAtom(kXdndActionLink)) in MaskOperation() 364 event->xproperty.atom == atom_cache_->GetAtom("XdndActionList")) { in DispatchEvent() 400 XChangeProperty(xdisplay_, xwindow_, atom_cache_.GetAtom("XdndAware"), in DesktopDragDropClientAuraX11() 584 xev.xclient.message_type = atom_cache_.GetAtom("XdndFinished"); in OnXdndDrop() 629 actions.push_back(atom_cache_.GetAtom(kXdndActionDirectSave)); in StartDragAndDrop() [all …]
|
D | desktop_drag_drop_client_aurax11_unittest.cc | 123 Atom GetAtom(const char* name); 266 Atom TestDragDropClient::GetAtom(const char* name) { in GetAtom() function in views::__anon7dd02c8e0111::TestDragDropClient 267 return atom_cache_.GetAtom(name); in GetAtom() 272 return event.message_type == atom_cache_.GetAtom(type); in MessageHasType() 288 event.message_type = atom_cache_.GetAtom("XdndStatus"); in OnStatus() 303 event.message_type = atom_cache_.GetAtom("XdndFinished"); in OnFinished() 437 EXPECT_EQ(client->GetAtom("XdndActionCopy"), in BasicStep2() 440 client->OnStatus(toplevel, true, client->GetAtom("XdndActionCopy")); in BasicStep2() 456 client->OnFinished(toplevel, true, client->GetAtom("XdndActionCopy")); in BasicStep2() 471 client->OnStatus(toplevel, true, client->GetAtom("XdndActionCopy")); in BasicStep3() [all …]
|
D | desktop_window_tree_host_x11.cc | 531 atom_cache_.GetAtom("_NET_WM_STATE_FULLSCREEN"), in Maximize() 552 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_VERT"), in Maximize() 553 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_HORZ")); in Maximize() 566 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_VERT"), in Restore() 567 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_HORZ")); in Restore() 588 atom_cache_.GetAtom("_NET_WM_STATE_ABOVE"), in SetAlwaysOnTop() 598 atom_cache_.GetAtom("_NET_WM_STATE_STICKY"), in SetVisibleOnAllWorkspaces() 613 xevent.xclient.message_type = atom_cache_.GetAtom("_NET_WM_DESKTOP"); in SetVisibleOnAllWorkspaces() 632 atom_cache_.GetAtom("_NET_WM_NAME"), in SetWindowTitle() 633 atom_cache_.GetAtom("UTF8_STRING"), in SetWindowTitle() [all …]
|
D | desktop_window_tree_host_x11_unittest.cc | 62 atom_cache_->GetAtom(hint_)); in ShouldKeepOnWaiting() 257 if (ui::WmSupportsHint(ui::GetAtom("_NET_WM_STATE_MAXIMIZED_VERT"))) { in TEST_F() 328 if (!ui::WmSupportsHint(ui::GetAtom("_NET_WM_STATE_FULLSCREEN"))) in TEST_F() 359 xclient.xclient.message_type = atom_cache.GetAtom("_NET_WM_STATE"); in TEST_F() 362 xclient.xclient.data.l[1] = atom_cache.GetAtom("_NET_WM_STATE_FULLSCREEN"); in TEST_F() 407 atom_list.push_back(atom_cache.GetAtom("_NET_WM_STATE_HIDDEN")); in TEST_F() 417 xevent.xproperty.atom = atom_cache.GetAtom("_NET_WM_STATE"); in TEST_F() 439 atom_list.push_back(atom_cache.GetAtom("_NET_WM_STATE_FOCUSED")); in TEST_F() 449 xevent.xproperty.atom = atom_cache.GetAtom("_NET_WM_STATE"); in TEST_F()
|
D | x11_desktop_handler.cc | 62 ui::WmSupportsHint(atom_cache_.GetAtom("_NET_ACTIVE_WINDOW")); in X11DesktopHandler() 92 xclient.xclient.message_type = atom_cache_.GetAtom("_NET_ACTIVE_WINDOW"); in ActivateWindow() 158 ::Atom active_window_atom = atom_cache_.GetAtom("_NET_ACTIVE_WINDOW"); in DispatchEvent()
|
D | x11_topmost_window_finder_interactive_uitest.cc | 60 atom_cache_->GetAtom("_NET_WM_STATE_HIDDEN")); in ShouldKeepOnWaiting() 382 atom_cache.GetAtom("_NET_WM_WINDOW_TYPE_MENU")); in TEST_F()
|
D | x11_window_event_filter.cc | 226 event.xclient.message_type = atom_cache_.GetAtom("_NET_WM_MOVERESIZE"); in DispatchHostWindowDragMovement()
|
/external/chromium_org/ui/platform_window/x11/ |
D | x11_window.cc | 163 protocols[0] = atom_cache_.GetAtom("WM_DELETE_WINDOW"); in Show() 164 protocols[1] = atom_cache_.GetAtom("_NET_WM_PING"); in Show() 179 atom_cache_.GetAtom("_NET_WM_PID"), in Show() 335 if (message == atom_cache_.GetAtom("WM_DELETE_WINDOW")) { in DispatchEvent() 337 } else if (message == atom_cache_.GetAtom("_NET_WM_PING")) { in DispatchEvent()
|
/external/chromium_org/ui/base/clipboard/ |
D | clipboard_aurax11.cc | 178 ::Atom atom = atom_cache_->GetAtom(format_type.ToString().c_str()); in ContainsFormat() 332 clipboard_owner_(x_display_, x_window_, atom_cache_.GetAtom(kClipboard)), in AuraX11Details() 360 return atom_cache_.GetAtom(kClipboard); in GetCopyPasteSelection() 379 ::Atom atom_key = atom_cache_.GetAtom(key.c_str()); in InsertMapping() 437 atom_cache_.GetAtom(kTargets), in WaitAndGetTargetsList() 442 if (out_type == XA_ATOM || out_type == atom_cache_.GetAtom(kTargets)) { in WaitAndGetTargetsList() 481 atoms.push_back(atom_cache_.GetAtom(format.ToString().c_str())); in GetAtomsForFormat() 497 ::Atom clipboard_manager_atom = atom_cache_.GetAtom(kClipboardManager); in StoreCopyPasteDataAndWait() 508 atom_cache_.GetAtom(kClipboardManager), in StoreCopyPasteDataAndWait() 509 atom_cache_.GetAtom(kSaveTargets), in StoreCopyPasteDataAndWait()
|
/external/chromium_org/ui/gfx/x/ |
D | x11_atom_cache.h | 28 XAtom GetAtom(const char*) const;
|
D | x11_atom_cache.cc | 35 XAtom X11AtomCache::GetAtom(const char* name) const { in GetAtom() function in ui::X11AtomCache
|
/external/chromium_org/ui/aura/ |
D | window_tree_host_x11.cc | 280 protocols[0] = atom_cache_.GetAtom("WM_DELETE_WINDOW"); in WindowTreeHostX11() 281 protocols[1] = atom_cache_.GetAtom("_NET_WM_PING"); in WindowTreeHostX11() 295 atom_cache_.GetAtom("_NET_WM_PID"), in WindowTreeHostX11() 445 if (message_type == atom_cache_.GetAtom("WM_DELETE_WINDOW")) { in DispatchEvent() 448 } else if (message_type == atom_cache_.GetAtom("_NET_WM_PING")) { in DispatchEvent()
|
/external/chromium_org/ui/views/test/ |
D | x11_property_change_waiter.cc | 73 event->xproperty.atom != atom_cache_->GetAtom(property_) || in DispatchEvent()
|
/external/chromium_org/ash/host/ |
D | ash_window_tree_host_x11.cc | 258 Atom prop = atom_cache()->GetAtom("Tap Paused"); in SetCrOSTapPaused()
|
/external/chromium_org/content/browser/gpu/ |
D | gpu_internals_ui.cc | 193 atom_cache.GetAtom("_NET_WM_CM_S0")) != None ? "Yes" : "No"; in GpuInfoAsDictionaryValue()
|
/external/libvpx/libvpx/third_party/libwebm/ |
D | mkvparser.hpp | 635 const Atom* GetAtom(int index) const;
|