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

1 2

  /external/chromium_org/ui/base/x/
x11_atom_cache.h 22 // server. By default, GetAtom() will CHECK() that atoms accessed through
23 // GetAtom() were passed to the constructor, but this behaviour can be changed
32 ::Atom GetAtom(const char*) const;
selection_utils.cc 33 atoms.push_back(atom_cache->GetAtom(kString));
34 atoms.push_back(atom_cache->GetAtom(kText));
35 atoms.push_back(atom_cache->GetAtom(kUtf8String));
41 atoms.push_back(atom_cache->GetAtom(Clipboard::kMimeTypeURIList));
42 atoms.push_back(atom_cache->GetAtom(kMimeTypeMozillaURL));
179 if (type_ == atom_cache_.GetAtom(kUtf8String) ||
180 type_ == atom_cache_.GetAtom(kText)) {
182 } else if (type_ == atom_cache_.GetAtom(kString)) {
199 if (type_ == atom_cache_.GetAtom(Clipboard::kMimeTypeHTML)) {
active_window_watcher_x.cc 41 return GetAtom(kNetActiveWindow);
73 GetAtom(kNetActiveWindow),
work_area_watcher_x.cc 40 return GetAtom(kNetWorkArea);
x11_atom_cache.cc 34 ::Atom X11AtomCache::GetAtom(const char* name) const {
selection_owner.cc 78 Atom targets_atom = atom_cache_.GetAtom(kTargets);
91 } else if (event.target == atom_cache_.GetAtom(kMultiple)) {
selection_requestor.cc 46 Atom property_to_set = atom_cache_.GetAtom(kChromeSelection);
x11_util.cc 123 Atom property_atom = GetAtom(property_name.c_str());
628 GetAtom("_GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED"),
953 Atom name_atom = GetAtom(name.c_str());
954 Atom type_atom = GetAtom(type.c_str());
979 Atom name_atom = GetAtom(name.c_str());
980 Atom type_atom = GetAtom(type.c_str());
1000 Atom GetAtom(const char* name) {
    [all...]
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_provider_aurax11.cc 52 atom_cache_.GetAtom(kDndSelection)) {
74 atom_cache_.GetAtom(kDndSelection)) {
116 format_map_.Insert(atom_cache_.GetAtom(Clipboard::kMimeTypeText), mem);
117 format_map_.Insert(atom_cache_.GetAtom(kText), mem);
118 format_map_.Insert(atom_cache_.GetAtom(kString), mem);
119 format_map_.Insert(atom_cache_.GetAtom(kUtf8String), mem);
135 format_map_.Insert(atom_cache_.GetAtom(kMimeTypeMozillaURL), mem);
161 format_map_.Insert(atom_cache_.GetAtom(format.ToString().c_str()), mem);
192 if (data.GetType() == atom_cache_.GetAtom(kMimeTypeMozillaURL)) {
207 } else if (data.GetType() == atom_cache_.GetAtom(
    [all...]
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_drag_drop_client_aurax11.cc 293 atom_cache_->GetAtom(kXdndSelection),
295 atom_cache_->GetAtom(kChromiumDragReciever),
304 DCHECK_EQ(event.property, atom_cache_->GetAtom(kChromiumDragReciever));
346 if (*it == atom_cache_->GetAtom(kXdndActionCopy))
348 else if (*it == atom_cache_->GetAtom(kXdndActionMove))
350 else if (*it == atom_cache_->GetAtom(kXdndActionLink))
360 event->xproperty.atom == atom_cache_->GetAtom("XdndActionList")) {
392 XChangeProperty(xdisplay_, xwindow_, atom_cache_.GetAtom("XdndAware"),
543 xev.xclient.message_type = atom_cache_.GetAtom("XdndFinished");
592 XDeleteProperty(xdisplay_, xwindow_, atom_cache_.GetAtom("XdndActionList"))
    [all...]
desktop_root_window_host_x11.cc 401 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_VERT"),
402 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_HORZ"));
411 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_VERT"),
412 atom_cache_.GetAtom("_NET_WM_STATE_MAXIMIZED_HORZ"));
431 atom_cache_.GetAtom("_NET_WM_STATE_ABOVE"),
492 atom_cache_.GetAtom("_NET_WM_STATE_FULLSCREEN"),
507 atom_cache_.GetAtom("_NET_WM_WINDOW_OPACITY"));
510 atom_cache_.GetAtom("_NET_WM_WINDOW_OPACITY"),
797 window_type = atom_cache_.GetAtom("_NET_WM_WINDOW_TYPE_MENU");
800 window_type = atom_cache_.GetAtom("_NET_WM_WINDOW_TYPE_TOOLTIP")
    [all...]
x11_desktop_handler.cc 68 xclient.xclient.message_type = atom_cache_.GetAtom("_NET_ACTIVE_WINDOW");
89 ::Atom active_window = atom_cache_.GetAtom("_NET_ACTIVE_WINDOW");
x11_window_event_filter.cc 81 ::Atom hint_atom = atom_cache_.GetAtom("_MOTIF_WM_HINTS");
161 event.xclient.message_type = atom_cache_.GetAtom("_NET_WM_MOVERESIZE");
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Label.java 164 labelSet.add(a.getAtom());
176 labelSet.add(a.getAtom());
210 public int getAtom() {
246 return set.member(getAtom());
261 return matches(other.getAtom());
DFA.java 507 if ( label.getAtom()>=Label.MIN_CHAR_VALUE ) {
508 if ( label.getAtom()<smin ) {
509 smin = label.getAtom();
511 if ( label.getAtom()>smax ) {
512 smax = label.getAtom();
557 if ( label.isAtom() && label.getAtom()>=Label.MIN_CHAR_VALUE ) {
558 int labelIndex = label.getAtom()-smin; // offset from 0
597 if ( label.getAtom()==Label.EOT ) {
601 else if ( label.getAtom()==Label.EOF ) {
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard_aurax11.cc 176 ::Atom atom = atom_cache_->GetAtom(format_type.ToString().c_str());
325 atom_cache_.GetAtom(kClipboard)),
327 clipboard_owner_(x_display_, x_window_, atom_cache_.GetAtom(kClipboard)),
347 return atom_cache_.GetAtom(kClipboard);
357 DCHECK_EQ(atom_cache_.GetAtom(kClipboard), atom);
376 ::Atom atom_key = atom_cache_.GetAtom(key.c_str());
432 if (receiver->PerformBlockingConvertSelection(atom_cache_.GetAtom(kTargets),
473 atoms.push_back(atom_cache_.GetAtom(format.ToString().c_str()));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
_parseaddr.py 330 aslist.append(self.getatom())
357 sdlist.append(self.getatom())
409 def getatom(self, atomends=None): member in class:AddrlistClass
448 plist.append(self.getatom(self.phraseends))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
_parseaddr.py 330 aslist.append(self.getatom())
357 sdlist.append(self.getatom())
409 def getatom(self, atomends=None): member in class:AddrlistClass
448 plist.append(self.getatom(self.phraseends))
  /external/chromium_org/ui/aura/
root_window_host_x11.cc 420 protocols[0] = atom_cache_.GetAtom("WM_DELETE_WINDOW");
421 protocols[1] = atom_cache_.GetAtom("_NET_WM_PING");
433 atom_cache_.GetAtom("_NET_WM_PID"),
549 if (message_type == atom_cache_.GetAtom("WM_DELETE_WINDOW")) {
552 } else if (message_type == atom_cache_.GetAtom("_NET_WM_PING")) {
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/apps/
native_app_window_gtk.cc 152 atom_cache_.GetAtom("_NET_WM_STATE_HIDDEN")) !=
316 x_event->xproperty.atom == atom_cache_.GetAtom("_NET_WM_STATE") &&
323 atom_cache_.GetAtom("_NET_WM_STATE_HIDDEN"));
  /external/llvm/lib/MC/
MachObjectWriter.cpp 676 FB.getAtom() != Asm.getSymbolData(SA).getFragment()->getAtom() &&
687 else if(!FB.getAtom() &&
702 A_Base = FA->getAtom();
706 B_Base = FB.getAtom();
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interpreter.java 350 new MismatchedTokenException(label.getAtom(), input);
416 if ( t.label.getAtom()==Label.EOT ) {
RandomPhrase.java 134 return Utils.integer(label.getAtom());
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ACyclicDFACodeGenerator.java 101 if ( edge.label.getAtom()==Label.EOT ) {
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 149 const MCSymbolData *A_Base = Asm.getAtom(&A_SD);
153 const MCSymbolData *B_Base = Asm.getAtom(&B_SD);
214 const MCSymbolData *Base = Asm.getAtom(&SD);

Completed in 467 milliseconds

1 2