Home
last modified time | relevance | path

Searched refs:GetAtom (Results 1 – 25 of 32) sorted by relevance

12

/external/chromium_org/ui/base/x/
Dselection_utils.cc38 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 …]
Dselection_requestor_unittest.cc51 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()
Dselection_owner.cc155 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()
Dx11_util.cc89 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 …]
Dx11_menu_list.cc18 : menu_type_atom_(GetAtom("_NET_WM_WINDOW_TYPE_MENU")) { in XMenuList()
Dselection_requestor.cc72 x_property_ = atom_cache_.GetAtom(kChromeSelection); in SelectionRequestor()
172 if (request->out_type == atom_cache_.GetAtom(kIncr)) { in OnSelectionNotify()
Dx11_util.h187 UI_BASE_EXPORT XAtom GetAtom(const char* atom_name);
/external/chromium_org/ui/base/dragdrop/
Dos_exchange_data_provider_aurax11.cc58 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 …]
Dos_exchange_data_provider_aurax11_unittest.cc36 provider.atom_cache_.GetAtom(ui::Clipboard::kMimeTypeURIList), in AddURLList()
/external/chromium_org/ui/views/widget/desktop_aura/
Ddesktop_drag_drop_client_aurax11.cc282 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 …]
Ddesktop_drag_drop_client_aurax11_unittest.cc123 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 …]
Ddesktop_window_tree_host_x11.cc531 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 …]
Ddesktop_window_tree_host_x11_unittest.cc62 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()
Dx11_desktop_handler.cc62 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()
Dx11_topmost_window_finder_interactive_uitest.cc60 atom_cache_->GetAtom("_NET_WM_STATE_HIDDEN")); in ShouldKeepOnWaiting()
382 atom_cache.GetAtom("_NET_WM_WINDOW_TYPE_MENU")); in TEST_F()
Dx11_window_event_filter.cc226 event.xclient.message_type = atom_cache_.GetAtom("_NET_WM_MOVERESIZE"); in DispatchHostWindowDragMovement()
/external/chromium_org/ui/platform_window/x11/
Dx11_window.cc163 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/
Dclipboard_aurax11.cc178 ::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/
Dx11_atom_cache.h28 XAtom GetAtom(const char*) const;
Dx11_atom_cache.cc35 XAtom X11AtomCache::GetAtom(const char* name) const { in GetAtom() function in ui::X11AtomCache
/external/chromium_org/ui/aura/
Dwindow_tree_host_x11.cc280 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/
Dx11_property_change_waiter.cc73 event->xproperty.atom != atom_cache_->GetAtom(property_) || in DispatchEvent()
/external/chromium_org/ash/host/
Dash_window_tree_host_x11.cc258 Atom prop = atom_cache()->GetAtom("Tap Paused"); in SetCrOSTapPaused()
/external/chromium_org/content/browser/gpu/
Dgpu_internals_ui.cc193 atom_cache.GetAtom("_NET_WM_CM_S0")) != None ? "Yes" : "No"; in GpuInfoAsDictionaryValue()
/external/libvpx/libvpx/third_party/libwebm/
Dmkvparser.hpp635 const Atom* GetAtom(int index) const;

12