HomeSort by relevance Sort by last modified time
    Searched full:getatom (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/ui/gfx/x/
x11_atom_cache.h 18 // server. By default, GetAtom() will CHECK() that atoms accessed through
19 // GetAtom() were passed to the constructor, but this behaviour can be changed
28 XAtom GetAtom(const char*) const;
x11_atom_cache.cc 35 XAtom X11AtomCache::GetAtom(const char* name) const {
  /external/chromium_org/ui/base/x/
selection_utils.cc 38 atoms.push_back(atom_cache->GetAtom(kUtf8String));
39 atoms.push_back(atom_cache->GetAtom(kString));
40 atoms.push_back(atom_cache->GetAtom(kText));
41 atoms.push_back(atom_cache->GetAtom(kTextPlain));
42 atoms.push_back(atom_cache->GetAtom(kTextPlainUtf8));
48 atoms.push_back(atom_cache->GetAtom(Clipboard::kMimeTypeURIList));
49 atoms.push_back(atom_cache->GetAtom(kMimeTypeMozillaURL));
55 atoms.push_back(atom_cache->GetAtom(Clipboard::kMimeTypeURIList));
200 if (type_ == atom_cache_.GetAtom(kUtf8String) ||
201 type_ == atom_cache_.GetAtom(kText) |
    [all...]
selection_requestor_unittest.cc 51 atom_cache_.GetAtom("STRING"),
125 EXPECT_EQ(atom_cache->GetAtom("STRING"), out_type);
136 XAtom selection = atom_cache_.GetAtom("FAKE_SELECTION");
138 XAtom target1 = atom_cache_.GetAtom("TARGET1");
139 XAtom target2 = atom_cache_.GetAtom("TARGET2");
x11_menu_list.cc 18 : menu_type_atom_(GetAtom("_NET_WM_WINDOW_TYPE_MENU")) {
selection_owner.cc 155 if (requested_target == atom_cache_.GetAtom(kMultiple)) {
178 atom_cache_.GetAtom(kAtomPair),
221 XAtom multiple_atom = atom_cache_.GetAtom(kMultiple);
222 XAtom save_targets_atom = atom_cache_.GetAtom(kSaveTargets);
223 XAtom targets_atom = atom_cache_.GetAtom(kTargets);
254 atom_cache_.GetAtom(kIncr),
x11_util.cc 89 XAtom property_atom = GetAtom(property_name.c_str());
539 XAtom hint_atom = GetAtom("_MOTIF_WM_HINTS");
571 GetAtom("_GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED"),
611 XAtom hidden_atom = GetAtom("_NET_WM_STATE_HIDDEN");
918 XAtom name_atom = GetAtom(name.c_str());
919 XAtom type_atom = GetAtom(type.c_str());
951 XAtom name_atom = GetAtom(name.c_str());
952 XAtom type_atom = GetAtom(type.c_str());
987 XAtom GetAtom(const char* name) {
1007 XDeleteProperty(display, window, GetAtom("WM_WINDOW_ROLE"))
    [all...]
selection_requestor.cc 72 x_property_ = atom_cache_.GetAtom(kChromeSelection);
172 if (request->out_type == atom_cache_.GetAtom(kIncr)) {
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_drag_drop_client_aurax11.cc 282 atom_cache_->GetAtom(kXdndSelection),
284 atom_cache_->GetAtom(kChromiumDragReciever),
297 DCHECK_EQ(event.property, atom_cache_->GetAtom(kChromiumDragReciever));
348 if (xdnd_operation == atom_cache_->GetAtom(kXdndActionCopy))
350 else if (xdnd_operation == atom_cache_->GetAtom(kXdndActionMove))
352 else if (xdnd_operation == atom_cache_->GetAtom(kXdndActionLink))
364 event->xproperty.atom == atom_cache_->GetAtom("XdndActionList")) {
400 XChangeProperty(xdisplay_, xwindow_, atom_cache_.GetAtom("XdndAware"),
584 xev.xclient.message_type = atom_cache_.GetAtom("XdndFinished");
629 actions.push_back(atom_cache_.GetAtom(kXdndActionDirectSave))
    [all...]
desktop_drag_drop_client_aurax11_unittest.cc 123 Atom GetAtom(const char* name);
266 Atom TestDragDropClient::GetAtom(const char* name) {
267 return atom_cache_.GetAtom(name);
272 return event.message_type == atom_cache_.GetAtom(type);
288 event.message_type = atom_cache_.GetAtom("XdndStatus");
303 event.message_type = atom_cache_.GetAtom("XdndFinished");
437 EXPECT_EQ(client->GetAtom("XdndActionCopy"),
440 client->OnStatus(toplevel, true, client->GetAtom("XdndActionCopy"));
456 client->OnFinished(toplevel, true, client->GetAtom("XdndActionCopy"));
471 client->OnStatus(toplevel, true, client->GetAtom("XdndActionCopy"))
    [all...]
desktop_window_tree_host_x11.cc 531 atom_cache_.GetAtom("_NET_WM_STATE_FULLSCREEN"),
552 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_VERT"),
553 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_HORZ"));
566 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_VERT"),
567 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_HORZ"));
588 atom_cache_.GetAtom("_NET_WM_STATE_ABOVE"),
598 atom_cache_.GetAtom("_NET_WM_STATE_STICKY"),
613 xevent.xclient.message_type = atom_cache_.GetAtom("_NET_WM_DESKTOP");
632 atom_cache_.GetAtom("_NET_WM_NAME"),
633 atom_cache_.GetAtom("UTF8_STRING")
    [all...]