Searched defs:fired (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/components/metrics/
H A Ddaily_event_unittest.cc21 bool fired() const { return fired_; } function in class:metrics::__anon6575::TestDailyObserver
61 EXPECT_TRUE(observer_->fired());
69 EXPECT_TRUE(observer_->fired());
77 EXPECT_TRUE(observer_->fired());
85 EXPECT_FALSE(observer_->fired());
93 EXPECT_FALSE(observer_->fired());
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-3135.js12 var fired = 0; variable
13 var getter_obj = { get x() { fired++; return 2; } };
15 assertEquals(1, fired);
/external/chromium_org/net/quic/
H A Dquic_connection_helper_test.cc25 bool fired() const { return fired_; } function in class:net::test::__anon9453::TestDelegate
67 EXPECT_TRUE(delegate->fired());
85 EXPECT_FALSE(delegate->fired());
105 EXPECT_FALSE(delegate->fired());
112 EXPECT_TRUE(delegate->fired());
131 EXPECT_TRUE(delegate->fired());
141 EXPECT_FALSE(delegate->fired());
163 EXPECT_FALSE(delegate->fired());
176 EXPECT_TRUE(delegate->fired());
/external/chromium_org/net/tools/quic/
H A Dquic_epoll_connection_helper_test.cc27 bool fired() const { return fired_; } function in class:net::tools::test::__anon9766::TestDelegate
81 EXPECT_FALSE(delegate->fired());
98 EXPECT_FALSE(delegate->fired());
103 EXPECT_TRUE(delegate->fired());
120 EXPECT_FALSE(delegate->fired());
129 EXPECT_TRUE(delegate->fired());
/external/chromium_org/third_party/WebKit/Source/platform/
H A DAsyncMethodRunner.h48 : m_timer(this, &AsyncMethodRunner<TargetClass>::fired)
123 void fired(Timer<AsyncMethodRunner<TargetClass> >*) { (m_object->*m_method)(); } function in class:blink::FINAL
/external/chromium_org/athena/input/
H A Daccelerator_manager_unittest.cc24 int fired = fired_command_id_; local
26 return fired;
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DDOMWindowEventQueue.cpp46 virtual void fired() { m_eventQueue->pendingEventTimerFired(); } function in class:blink::DOMWindowEventQueueTimer
/external/chromium_org/third_party/libevent/test/
H A Dbench.c61 static int count, writes, fired; variable
78 fired++;
97 fired = 0;
100 for (i = 0; i < num_active; i++, fired++)
110 } while (count != fired);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DDOMTimer.cpp120 void DOMTimer::fired() function in class:blink::DOMTimer
140 WTF_LOG(Timers, "DOMTimer::fired: m_timeoutID = %d, repeatInterval = %f, m_action = %p", m_timeoutID, repeatInterval(), m_action.get());
150 WTF_LOG(Timers, "DOMTimer::fired: m_timeoutID = %d, one-shot, m_action = %p", m_timeoutID, m_action.get());
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLHttpRequestProgressEventThrottle.cpp117 void XMLHttpRequestProgressEventThrottle::fired() function in class:blink::XMLHttpRequestProgressEventThrottle
/external/chromium_org/base/synchronization/
H A Dwaitable_event_posix.cc83 // variable and the fired flag in this object.
127 bool fired() const { function in class:base::SyncWaiter
189 if (sw.fired() || (finite_time && current_time >= end_time)) {
190 const bool return_value = sw.fired();
193 // of locking order), however, in between the two a signal could be fired
201 // WaitableEvent now: |Dequeue| is called even when |sw.fired()| is true,
275 if (sw.fired())
282 // The address of the WaitableEvent which fired is stored in the SyncWaiter.
284 // This will store the index of the raw_waitables which fired.
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_thread.c407 int fired; /* True after unlock event has occured */ member in struct:UnlockNotification
420 p->fired = 1;
445 un.fired = 0;
463 if( !un.fired ){
/external/chromium_org/v8/test/mjsunit/
H A Dstack-traces.js307 var fired = false; variable
308 error = new Error({ toString: function() { fired = true; } });
309 assertTrue(fired);
311 assertTrue(fired);

Completed in 3526 milliseconds