Home | History | Annotate | Download | only in win

Lines Matching defs:atom

53   // Returns the atom identifying the class matching |class_info|,
55 ATOM RetrieveClassAtom(const ClassInfo& class_info);
60 RegisteredClass(const ClassInfo& info, ATOM atom);
65 // The atom identifying the window class.
66 ATOM atom;
91 ATOM ClassRegistrar::RetrieveClassAtom(const ClassInfo& class_info) {
96 return i->atom;
117 ATOM atom = RegisterClassEx(&window_class);
118 CHECK(atom) << GetLastError();
120 registered_classes_.push_back(RegisteredClass(class_info, atom));
122 return atom;
126 ATOM atom)
128 atom(atom) {}
177 ATOM atom = GetWindowClassAtom();
181 reinterpret_cast<wchar_t*>(atom), NULL,
205 reinterpret_cast<wchar_t*>(atom),
270 ATOM WindowImpl::GetWindowClassAtom() {