OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pending_events_
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/guestview/
guestview.cc
181
while (!
pending_events_
.empty()) {
182
delete
pending_events_
.front();
183
pending_events_
.pop();
189
pending_events_
.push(event);
213
while (!
pending_events_
.empty()) {
214
Event* event =
pending_events_
.front();
215
pending_events_
.pop();
guestview.h
133
std::queue<Event*>
pending_events_
;
member in class:GuestView
/external/chromium_org/ui/aura/test/
event_generator.cc
115
for (std::list<ui::Event*>::iterator i =
pending_events_
.begin();
116
i !=
pending_events_
.end(); ++i)
118
pending_events_
.clear();
580
if (
pending_events_
.empty()) {
586
pending_events_
.push_back(pending_event);
609
DCHECK(!
pending_events_
.empty());
610
ui::Event* event =
pending_events_
.front();
612
pending_events_
.pop_front();
614
if (!
pending_events_
.empty()) {
event_generator.h
342
std::list<ui::Event*>
pending_events_
;
member in class:aura::test::EventGenerator
/external/chromium_org/content/renderer/accessibility/
renderer_accessibility_complete.h
121
std::vector<AccessibilityHostMsg_EventParams>
pending_events_
;
member in class:content::RendererAccessibilityComplete
renderer_accessibility_complete.cc
142
for (uint32 i = 0; i <
pending_events_
.size(); ++i) {
143
if (
pending_events_
[i].id == acc_event.id &&
144
pending_events_
[i].event_type ==
149
pending_events_
.push_back(acc_event);
172
if (
pending_events_
.empty())
184
pending_events_
;
185
pending_events_
.clear();
Completed in 58 milliseconds