Searched refs:Atom (Results 1 - 25 of 87) sorted by relevance

1234

/external/llvm/unittests/MC/
H A DMCAtomTest.cpp19 MCDataAtom *Atom = M.createDataAtom(0, 0); local
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/
H A Dx_server_clipboard.h55 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 selectio
[all...]
H A Dx_server_clipboard.cc70 Atom atoms[kNumAtomNames];
140 void XServerClipboard::OnSetSelectionOwnerNotify(Atom selection,
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) {
290 Atom typ
[all...]
/external/chromium_org/ui/base/x/
H A Dselection_utils.h31 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;
74 void Insert(::Atom atom, const scoped_refptr<base::RefCountedMemory>& item);
78 const std::vector< ::Atom>& requested_types) const;
81 std::vector< ::Atom> GetType
[all...]
H A Dselection_utils.cc36 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>
[all...]
/external/llvm/lib/MC/MCAnalysis/
H A DMCModule.cpp54 void MCModule::remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd) { argument
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);
72 Atom->Begin = NewBegin;
73 Atom->End = NewEnd;
108 static bool CompBBToAtom(MCBasicBlock *BB, const MCTextAtom *Atom) { argument
124 trackBBForAtom(const MCTextAtom *Atom, MCBasicBlock *BB) argument
[all...]
H A DMCObjectDisassembler.cpp159 MCTextAtom *Atom; member in struct:__anon25875::BBInfo
165 BBInfo() : Atom(nullptr), BB(nullptr) {}
207 BBInfos[TA->getBeginAddr()].Atom = TA;
233 BBInfos[NewAtom->getBeginAddr()].Atom = NewAtom;
262 if (!BBI.Atom) continue;
264 MCFunction &MCFN = *Module->createFunction(BBI.Atom->getName());
271 if (!BBI->Atom)
273 BBI->BB = &MCFN.createBlock(*BBI->Atom);
330 MCTextAtom *&TA = BBI->Atom;
345 if (It != BBInfos.end() && It->second.Atom) {
[all...]
/external/chromium_org/ui/display/util/x11/
H A Dedid_parser_x11.cc36 static Atom edid_property = XInternAtom(
42 Atom* properties = XRRListOutputProperties(display, output, &num_properties);
53 Atom actual_type;
/external/chromium_org/ui/base/clipboard/
H A Dclipboard_aurax11.cc84 Atom clipboard_atom_;
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());
182 bool TargetList::ContainsAtom(::Atom atom) const {
191 // I would love for the FormatType to really be a wrapper around an X11 ::Atom,
193 // each test, so Atom numeric values don't persist across tests. We could still
238 ::Atom LookupSelectionForClipboardTyp
[all...]
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_provider_aurax11.cc101 std::vector<Atom>* targets) const {
229 std::vector< ::Atom> text_atoms = ui::GetTextAtomsFrom(&atom_cache_);
230 std::vector< ::Atom> requested_types;
247 std::vector< ::Atom> url_atoms = ui::GetURLAtomsFrom(&atom_cache_);
248 std::vector< ::Atom> requested_types;
304 std::vector< ::Atom> url_atoms = ui::GetURIListAtomsFrom(&atom_cache_);
305 std::vector< ::Atom> requested_types;
328 std::vector< ::Atom> requested_types;
344 std::vector< ::Atom> text_atoms = ui::GetTextAtomsFrom(&atom_cache_);
345 std::vector< ::Atom> requested_type
[all...]
/external/deqp/framework/platform/X11/
H A DtcuX11.hpp66 Atom getDeleteAtom (void) { return m_deleteAtom; }
75 Atom m_deleteAtom;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.h125 struct Atom { struct in class:llvm::DwarfAccelTable
129 LLVM_CONSTEXPR Atom(uint16_t type, uint16_t form) function in struct:llvm::DwarfAccelTable::Atom
143 SmallVector<Atom, 1> Atoms;
145 TableHeaderData(ArrayRef<Atom> AtomList, uint32_t offset = 0)
247 DwarfAccelTable(ArrayRef<DwarfAccelTable::Atom>);
/external/chromium_org/ui/events/x/
H A Dhotplug_event_handler_x11.cc46 Atom device_node = XInternAtom(dpy, "Device Node", False);
50 Atom actual_type;
125 Atom valuator_x = XInternAtom(display, "Abs MT Position X", False);
126 Atom valuator_y = XInternAtom(display, "Abs MT Position Y", False);
/external/llvm/include/llvm/MC/MCAnalysis/
H A DMCModule.h38 /// \name Atom tracking
50 /// \brief Remap \p Atom to the given range, and update its Begin/End fields.
51 /// \param Atom An atom belonging to this module.
54 void remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd);
69 /// \brief Keep track of \p BBBackedByAtom as being backed by \p Atom.
70 /// This is used to update succs/preds when \p Atom is split.
71 void trackBBForAtom(const MCTextAtom *Atom, MCBasicBlock *BBBackedByAtom);
/external/chromium_org/ui/display/chromeos/x11/
H A Dnative_display_delegate_x11.cc399 Atom actual_type = None;
403 Atom prop = XInternAtom(display_, kContentProtectionAtomName, False);
427 Atom value = reinterpret_cast<Atom*>(values)[0];
454 Atom name = XInternAtom(display_, kContentProtectionAtomName, False);
455 Atom value = None;
544 Atom scaling_prop = XInternAtom(display_, "scaling mode", False);
545 Atom full_aspect_atom = XInternAtom(display_, "Full aspect", False);
550 Atom* props = XRRListOutputProperties(display_, id, &nprop);
552 Atom pro
[all...]
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_drag_drop_client_aurax11.cc118 ::Atom suggested_action,
144 void MaskOperation(::Atom xdnd_operation, int* drag_operation) const;
182 std::vector<Atom> unfetched_targets_;
186 Atom suggested_action_;
189 std::vector<Atom> actions_;
257 ::Atom suggested_action,
278 ::Atom target = unfetched_targets_.back();
300 ::Atom type = None;
317 std::vector<Atom> atom_array;
335 for (std::vector<Atom>
[all...]
H A Ddesktop_drag_drop_client_aurax11.h159 // Converts our bitfield of actions into an Atom that represents what action
161 ::Atom DragOperationToAtom(int drag_operation);
164 ui::DragDropTypes::DragOperation AtomToDragOperation(::Atom atom);
169 std::vector< ::Atom> GetOfferedDragOperations();
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvparser.hpp482 class Atom;
486 friend class Atom;
508 class Atom { class in class:mkvparser::Chapters
510 Atom();
511 Atom(const Atom&);
512 ~Atom();
513 Atom& operator=(const Atom&);
530 void ShallowCopy(Atom
[all...]
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvparser.hpp562 class Atom;
567 friend class Atom;
587 class Atom class in class:mkvparser::Chapters
590 Atom();
591 Atom(const Atom&);
592 ~Atom();
593 Atom& operator=(const Atom&);
608 void ShallowCopy(Atom
[all...]
/external/libvpx/libwebm/
H A Dmkvparser.hpp482 class Atom;
486 friend class Atom;
508 class Atom { class in class:mkvparser::Chapters
510 Atom();
511 Atom(const Atom&);
512 ~Atom();
513 Atom& operator=(const Atom&);
530 void ShallowCopy(Atom
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A DXvlib.h114 Atom attribute; /* atom that identifies attribute */
308 Atom /* attribute */,
317 Atom /* attribute */,
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dwindow_capturer_x11.cc39 XWindowProperty(Display* display, Window window, Atom property)
44 Atom actual_type;
124 Atom wm_state_atom_;
125 Atom window_type_atom_;
126 Atom normal_window_type_atom_;
248 Atom atom = XInternAtom(display(), "_NET_ACTIVE_WINDOW", True);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
H A Dtest_surface.c67 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);
/external/chromium_org/ui/gfx/x/
H A Dx11_atom_cache.cc36 std::map<std::string, Atom>::const_iterator it = cached_atoms_.find(name);
44 CHECK(it != cached_atoms_.end()) << " Atom " << name << " not found";
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dtest_surface.c67 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);

Completed in 7000 milliseconds

1234