OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Gtk2EventLoop
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_event_loop.h
18
class
Gtk2EventLoop
{
20
static
Gtk2EventLoop
* GetInstance();
23
friend struct DefaultSingletonTraits<
Gtk2EventLoop
>;
25
Gtk2EventLoop
();
26
~
Gtk2EventLoop
();
33
DISALLOW_COPY_AND_ASSIGN(
Gtk2EventLoop
);
gtk2_event_loop.cc
18
Gtk2EventLoop
*
Gtk2EventLoop
::GetInstance() {
19
return Singleton<
Gtk2EventLoop
>::get();
22
Gtk2EventLoop
::
Gtk2EventLoop
() {
26
Gtk2EventLoop
::~
Gtk2EventLoop
() {
32
void
Gtk2EventLoop
::GdkEventTrampoline(GdkEvent* event, gpointer data) {
33
Gtk2EventLoop
* loop = reinterpret_cast<
Gtk2EventLoop
*>(data)
[
all
...]
Completed in 125 milliseconds