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

1 2 3 4 5 6

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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 38 typedef unsigned long Atom;
40 typedef CARD32 Atom;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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 38 typedef unsigned long Atom;
40 typedef CARD32 Atom;
  /external/llvm/unittests/MC/
MCAtomTest.cpp 19 MCDataAtom *Atom = M.createDataAtom(0, 0);
20 EXPECT_EQ(uint64_t(0), Atom->getEndAddr());
21 Atom->addData(0);
22 EXPECT_EQ(uint64_t(0), Atom->getEndAddr());
23 Atom->addData(1);
24 EXPECT_EQ(uint64_t(1), Atom->getEndAddr());
25 Atom->addData(2);
26 EXPECT_EQ(uint64_t(2), Atom->getEndAddr());
27 EXPECT_EQ(size_t(3), Atom->getData().size());
  /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/gfx/x/
x11_atom_cache.h 14 typedef unsigned long Atom;
29 // Returns the pre-interned Atom without having to go to the x server.
30 Atom GetAtom(const char*) const;
32 // When an Atom isn't in the list of items we've cached, we should look it
41 mutable std::map<std::string, Atom> cached_atoms_;
x11_atom_cache.cc 22 scoped_ptr<Atom[]> cached_atoms(new Atom[cache_count]);
35 Atom X11AtomCache::GetAtom(const char* name) const {
36 std::map<std::string, Atom>::const_iterator it = cached_atoms_.find(name);
39 Atom atom = XInternAtom(xdisplay_, name, false); local
40 cached_atoms_.insert(std::make_pair(name, atom));
41 return atom;
44 CHECK(it != cached_atoms_.end()) << " Atom " << name << " not found";
  /external/chromium_org/ui/base/x/
selection_owner.h 32 ::Atom selection_name);
39 void RetrieveTargets(std::vector<Atom>* targets);
59 bool ProcessTarget(::Atom target, ::Window requestor, ::Atom property);
66 ::Atom selection_name_;
selection_requestor.h 37 ::Atom selection_name,
47 ::Atom target,
51 ::Atom* out_type);
56 ::Atom target,
57 const std::vector< ::Atom>& parameter);
61 SelectionData RequestAndWaitForTypes(const std::vector< ::Atom>& types);
70 explicit PendingRequest(Atom target);
75 ::Atom target;
82 // atom that we sent in the XConvertSelection call, we can read that
84 ::Atom returned_property
    [all...]
selection_utils.h 31 UI_BASE_EXPORT std::vector< ::Atom> GetTextAtomsFrom(
34 UI_BASE_EXPORT std::vector< ::Atom> GetURLAtomsFrom(
37 UI_BASE_EXPORT std::vector< ::Atom> GetURIListAtomsFrom(
41 UI_BASE_EXPORT void GetAtomIntersection(const std::vector< ::Atom>& desired,
42 const std::vector< ::Atom>& offered,
43 std::vector< ::Atom>* output);
65 typedef std::map< ::Atom, scoped_refptr<base::RefCountedMemory> > InternalMap;
72 // Adds the selection in the format |atom|. Ownership of |data| is passed to
74 void Insert(::Atom atom, const scoped_refptr<base::RefCountedMemory>& item)
    [all...]
x11_menu_list.h 14 typedef unsigned long Atom;
27 // "_NET_WM_WINDOW_TYPE_MENU" atom and if so caches it.
42 ::Atom menu_type_atom_;
selection_utils.cc 36 std::vector< ::Atom> GetTextAtomsFrom(const X11AtomCache* atom_cache) {
37 std::vector< ::Atom> atoms;
46 std::vector< ::Atom> GetURLAtomsFrom(const X11AtomCache* atom_cache) {
47 std::vector< ::Atom> atoms;
53 std::vector< ::Atom> GetURIListAtomsFrom(const X11AtomCache* atom_cache) {
54 std::vector< ::Atom> atoms;
59 void GetAtomIntersection(const std::vector< ::Atom>& desired,
60 const std::vector< ::Atom>& offered,
61 std::vector< ::Atom>* output) {
62 for (std::vector< ::Atom>::const_iterator it = desired.begin()
    [all...]
selection_owner.cc 31 // Gets the value of an atom pair array property. On success, true is returned
34 Atom property,
35 std::vector<std::pair<Atom,Atom> >* value) {
36 Atom type = None;
65 Atom* atom_properties = reinterpret_cast<Atom*>(properties);
77 Atom selection_name)
92 void SelectionOwner::RetrieveTargets(std::vector<Atom>* targets) {
128 std::vector<std::pair<Atom,Atom> > conversions
    [all...]
selection_requestor.cc 29 Atom selection_name,
41 Atom target,
45 Atom* out_type) {
50 Atom property = atom_cache_.GetAtom(kChromeSelection);
77 Atom target,
78 const std::vector< ::Atom>& parameter) {
79 SetAtomArrayProperty(x_window_, kChromeSelection, "ATOM", parameter);
84 const std::vector< ::Atom>& types) {
85 for (std::vector< ::Atom>::const_iterator it = types.begin();
89 ::Atom type = None
    [all...]
x11_util.h 26 typedef unsigned long Atom;
139 Atom property,
143 Atom* out_type);
145 // Get the value of an int, int array, atom array or string property. On
149 // should accept an Atom instead of a string.
161 std::vector<Atom>* value);
178 Atom value);
182 const std::vector<Atom>& value);
184 Atom property,
185 Atom type
    [all...]
  /external/llvm/lib/MC/MCAnalysis/
MCModule.cpp 37 // Insert the new atom to the list.
53 // remap - Update the interval mapping for an atom.
54 void MCModule::remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd) {
57 Atom->Begin, AtomComp);
58 assert(I != atom_end() && "Atom offset not found in module!");
59 assert(*I == Atom && "Previous atom mapping was invalid!");
62 // FIXME: special case NewBegin == Atom->Begin
67 assert((NewI == atom_end() || (*NewI)->getBeginAddr() > Atom->End)
69 Atoms.insert(NewI, Atom);
    [all...]
  /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.
9 ARCH_X86_HAVE_POPCNT := false # popcnt is not supported by current Atom CPUs
13 -march=atom \
  /build/core/combo/arch/x86_64/
x86_64-atom.mk 2 # 'x86_64-atom' arch variant. This is an extension of the 'x86_64' base variant
3 # that adds Atom-specific features.
9 ARCH_X86_HAVE_POPCNT := false # popcnt is not supported by current Atom CPUs
13 -march=atom
x86_64.mk 9 ARCH_X86_HAVE_MOVBE := false # Only supported on Atom.
  /external/chromium_org/ui/display/util/x11/
edid_parser_x11.cc 36 static Atom edid_property = XInternAtom(
42 Atom* properties = XRRListOutputProperties(display, output, &num_properties);
53 Atom actual_type;
  /external/chromium_org/ui/base/clipboard/
clipboard_aurax11.cc 84 Atom clipboard_atom_;
134 DLOG(ERROR) << "Unexpected selection atom: " << ev->selection;
144 typedef std::vector< ::Atom> AtomVector;
152 bool ContainsAtom(::Atom atom) const;
166 std::vector< ::Atom> atoms = GetTextAtomsFrom(atom_cache_);
167 for (std::vector< ::Atom>::const_iterator it = atoms.begin();
178 ::Atom atom = atom_cache_->GetAtom(format_type.ToString().c_str()); local
179 return ContainsAtom(atom);
    [all...]
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_provider_aurax11.cc 101 std::vector<Atom>* targets) const {
226 std::vector< ::Atom> text_atoms = ui::GetTextAtomsFrom(&atom_cache_);
227 std::vector< ::Atom> requested_types;
244 std::vector< ::Atom> url_atoms = ui::GetURLAtomsFrom(&atom_cache_);
245 std::vector< ::Atom> requested_types;
301 std::vector< ::Atom> url_atoms = ui::GetURIListAtomsFrom(&atom_cache_);
302 std::vector< ::Atom> requested_types;
325 std::vector< ::Atom> requested_types;
341 std::vector< ::Atom> text_atoms = ui::GetTextAtomsFrom(&atom_cache_);
342 std::vector< ::Atom> requested_types
    [all...]
  /external/deqp/framework/platform/X11/
tcuX11.hpp 66 Atom getDeleteAtom (void) { return m_deleteAtom; }
75 Atom m_deleteAtom;

Completed in 363 milliseconds

1 2 3 4 5 6