Lines Matching refs:Run
18 // Please see the comments above the Run method for an illustration of how
24 // Called from within Run in response to ScheduleWork or when the message
30 // Called from within Run in response to ScheduleDelayedWork or when the
40 // Called from within Run just before the message pump goes to sleep.
48 // The Run method is called to enter the message pump's run loop.
55 // The anatomy of a typical run loop:
89 // Notice that the run loop cycles between calling DoInternalWork, DoWork,
94 // Notice also that after each callout to foreign code, the run loop checks
98 // NOTE: Care must be taken to handle Run being called again from within any
100 // deal with other native message pumps being run outside their control
105 // it returns false (meaning it has run out of things to do).
107 virtual void Run(Delegate* delegate) = 0;
109 // Quit immediately from the most recently entered run loop. This method may
110 // only be used on the thread that called Run.
121 // used on the thread that called Run.