HomeSort by relevance Sort by last modified time
    Searched refs:Atom (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xatom.h 9 #define XA_PRIMARY ((Atom) 1)
10 #define XA_SECONDARY ((Atom) 2)
11 #define XA_ARC ((Atom) 3)
12 #define XA_ATOM ((Atom) 4)
13 #define XA_BITMAP ((Atom) 5)
14 #define XA_CARDINAL ((Atom) 6)
15 #define XA_COLORMAP ((Atom) 7)
16 #define XA_CURSOR ((Atom) 8)
17 #define XA_CUT_BUFFER0 ((Atom) 9)
18 #define XA_CUT_BUFFER1 ((Atom) 10
    [all...]
Xdefs.h 40 typedef unsigned long Atom;
42 typedef CARD32 Atom;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xatom.h 9 #define XA_PRIMARY ((Atom) 1)
10 #define XA_SECONDARY ((Atom) 2)
11 #define XA_ARC ((Atom) 3)
12 #define XA_ATOM ((Atom) 4)
13 #define XA_BITMAP ((Atom) 5)
14 #define XA_CARDINAL ((Atom) 6)
15 #define XA_COLORMAP ((Atom) 7)
16 #define XA_CURSOR ((Atom) 8)
17 #define XA_CUT_BUFFER0 ((Atom) 9)
18 #define XA_CUT_BUFFER1 ((Atom) 10
    [all...]
Xdefs.h 40 typedef unsigned long Atom;
42 typedef CARD32 Atom;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xatom.h 9 #define XA_PRIMARY ((Atom) 1)
10 #define XA_SECONDARY ((Atom) 2)
11 #define XA_ARC ((Atom) 3)
12 #define XA_ATOM ((Atom) 4)
13 #define XA_BITMAP ((Atom) 5)
14 #define XA_CARDINAL ((Atom) 6)
15 #define XA_COLORMAP ((Atom) 7)
16 #define XA_CURSOR ((Atom) 8)
17 #define XA_CUT_BUFFER0 ((Atom) 9)
18 #define XA_CUT_BUFFER1 ((Atom) 10
    [all...]
Xdefs.h 40 typedef unsigned long Atom;
42 typedef CARD32 Atom;
  /external/chromium_org/remoting/host/linux/
x_server_clipboard.h 55 void OnSetSelectionOwnerNotify(Atom selection, Time timestamp);
65 void SendTargetsResponse(Window requestor, Atom property);
66 void SendTimestampResponse(Window requestor, Atom property);
67 void SendStringResponse(Window requestor, Atom property, Atom target);
75 Atom type,
97 void RequestSelectionTargets(Atom selection);
98 void RequestSelectionString(Atom selection, Atom target);
101 void AssertSelectionOwnership(Atom selection)
    [all...]
x_server_clipboard.cc 70 Atom atoms[kNumAtomNames];
140 void XServerClipboard::OnSetSelectionOwnerNotify(Atom selection,
172 event->xproperty.atom == large_selection_property_ &&
174 Atom type;
195 Atom type;
253 void XServerClipboard::SendTargetsResponse(Window requestor, Atom property) {
256 Atom targets[3];
264 void XServerClipboard::SendTimestampResponse(Window requestor, Atom property) {
277 void XServerClipboard::SendStringResponse(Window requestor, Atom property,
278 Atom target)
    [all...]
  /external/chromium_org/ui/base/x/
selection_requestor.h 35 ::Atom selection_name);
44 ::Atom target,
48 ::Atom* out_type);
52 SelectionData RequestAndWaitForTypes(const std::vector< ::Atom>& types);
68 ::Atom selection_name_;
72 ::Atom current_target_;
76 // atom that we sent in the XConvertSelection call, we can read that property
78 ::Atom returned_property_;
selection_utils.h 31 UI_EXPORT std::vector< ::Atom> GetTextAtomsFrom(const X11AtomCache* atom_cache);
33 UI_EXPORT std::vector< ::Atom> GetURLAtomsFrom(const X11AtomCache* atom_cache);
36 UI_EXPORT void GetAtomIntersection(const std::vector< ::Atom>& one,
37 const std::vector< ::Atom>& two,
38 std::vector< ::Atom>* output);
57 typedef std::map< ::Atom, scoped_refptr<base::RefCountedMemory> > InternalMap;
64 // Adds the selection in the format |atom|. Ownership of |data| is passed to
66 void Insert(::Atom atom, const scoped_refptr<base::RefCountedMemory>& item);
70 const std::vector< ::Atom>& requested_types) const
    [all...]
selection_owner.h 32 ::Atom selection_name);
39 void RetrieveTargets(std::vector<Atom>* targets);
60 ::Atom selection_name_;
x11_atom_cache.h 31 // Returns the pre-interned Atom without having to go to the x server.
32 ::Atom GetAtom(const char*) const;
34 // When an Atom isn't in the list of items we've cached, we should look it
43 mutable std::map<std::string, ::Atom> cached_atoms_;
selection_requestor.cc 27 Atom selection_name)
40 Atom target,
44 Atom* out_type) {
46 Atom property_to_set = atom_cache_.GetAtom(kChromeSelection);
77 const std::vector< ::Atom>& types) {
78 for (std::vector< ::Atom>::const_iterator it = types.begin();
82 ::Atom type = None;
x11_atom_cache.cc 21 scoped_ptr< ::Atom[]> cached_atoms(new ::Atom[cache_count]);
34 ::Atom X11AtomCache::GetAtom(const char* name) const {
35 std::map<std::string, ::Atom>::const_iterator it = cached_atoms_.find(name);
38 ::Atom atom = XInternAtom(xdisplay_, name, false); local
39 cached_atoms_.insert(std::make_pair(name, atom));
40 return atom;
43 CHECK(it != cached_atoms_.end()) << " Atom " << name << " not found";
selection_utils.cc 31 std::vector< ::Atom> GetTextAtomsFrom(const X11AtomCache* atom_cache) {
32 std::vector< ::Atom> atoms;
39 std::vector< ::Atom> GetURLAtomsFrom(const X11AtomCache* atom_cache) {
40 std::vector< ::Atom> atoms;
46 void GetAtomIntersection(const std::vector< ::Atom>& one,
47 const std::vector< ::Atom>& two,
48 std::vector< ::Atom>* output) {
49 for (std::vector< ::Atom>::const_iterator it = one.begin(); it != one.end();
51 for (std::vector< ::Atom>::const_iterator jt = two.begin(); jt != two.end();
105 ::Atom atom
    [all...]
active_window_watcher_x.h 43 // Gets the atom for the default display for the property this class is
45 static Atom GetPropertyAtom();
work_area_watcher_x.h 38 // Gets the atom for the default display for the property this class is
40 static Atom GetPropertyAtom();
selection_owner.cc 30 Atom selection_name)
41 void SelectionOwner::RetrieveTargets(std::vector<Atom>* targets) {
78 Atom targets_atom = atom_cache_.GetAtom(kTargets);
80 // We have been asked for TARGETS. Send an atom array back with the data
82 std::vector<Atom> targets;
work_area_watcher_x.cc 39 Atom WorkAreaWatcherX::GetPropertyAtom() {
active_window_watcher_x.cc 40 Atom ActiveWindowWatcherX::GetPropertyAtom() {
66 Atom type = None;
  /build/core/combo/arch/x86/
x86-atom.mk 2 # 'x86-atom' arch variant. This is an extension of the 'x86' base variant
3 # that adds Atom-specific features.
14 ARCH_X86_HAVE_POPCNT := false # popcnt is not supported by current Atom CPUs
16 # This flag is used to enabled Atom-specific optimizations with our toolchain
18 TARGET_GLOBAL_CFLAGS += -march=atom
  /external/llvm/lib/MC/
MCModule.cpp 32 // Insert the new atom to the list.
48 // remap - Update the interval mapping for an atom.
49 void MCModule::remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd) {
52 Atom->Begin, AtomComp);
53 assert(I != atom_end() && "Atom offset not found in module!");
54 assert(*I == Atom && "Previous atom mapping was invalid!");
60 Atoms.insert(NewI, Atom);
62 // Update the atom internal bounds.
63 Atom->Begin = NewBegin
    [all...]
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_provider_aurax11.cc 95 std::vector<Atom>* targets) const {
165 std::vector< ::Atom> text_atoms = ui::GetTextAtomsFrom(&atom_cache_);
166 std::vector< ::Atom> requested_types;
182 std::vector< ::Atom> url_atoms = ui::GetURLAtomsFrom(&atom_cache_);
183 std::vector< ::Atom> requested_types;
244 std::vector< ::Atom> requested_types;
260 std::vector< ::Atom> text_atoms = ui::GetTextAtomsFrom(&atom_cache_);
261 std::vector< ::Atom> requested_types;
267 std::vector< ::Atom> url_atoms = ui::GetURLAtomsFrom(&atom_cache_);
268 std::vector< ::Atom> requested_types
    [all...]
  /external/chromium/chrome/browser/chromeos/
wm_ipc.h 17 typedef unsigned long Atom;
131 // Maps from our Atom enum to the X server's atom IDs and from the
135 std::map<AtomType, Atom> type_to_atom_;
136 std::map<Atom, std::string> atom_to_string_;
139 Atom wm_message_atom_;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XKBgeom.h 108 Atom name;
119 Atom name;
134 Atom name;
150 Atom name;
171 Atom name;
187 Atom name;
232 Atom name;
264 Atom name;
273 Atom name;
350 Atom /* name */
    [all...]

Completed in 332 milliseconds

1 2 3 4 5 6