Home
last modified time | relevance | path

Searched refs:timedOut (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
DMessageQueue.h147 bool timedOut = false; in waitForMessageFilteredWithTimeout() local
150 while (!m_killed && !timedOut && (found = m_queue.findIf(predicate)) == m_queue.end()) in waitForMessageFilteredWithTimeout()
151 timedOut = !m_condition.timedWait(m_mutex, absoluteTime); in waitForMessageFilteredWithTimeout()
153 ASSERT(!timedOut || absoluteTime != infiniteTime()); in waitForMessageFilteredWithTimeout()
160 if (timedOut) { in waitForMessageFilteredWithTimeout()
DThreadingWin.cpp330 bool timedOut = (WaitForSingleObject(m_blockQueue, durationMilliseconds) == WAIT_TIMEOUT); in timedWait() local
362 return !timedOut; in timedWait()
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
DRepostFormWarningTest.java97 boolean timedOut = false; in testFormResubmissionCancel()
101 timedOut = true; in testFormResubmissionCancel()
103 assertTrue("Page was reloaded despite selecting Cancel.", timedOut); in testFormResubmissionCancel()
/external/chromium_org/third_party/WebKit/Source/web/
DWebFrameImpl.cpp1630 bool timedOut = false; in scopeStringMatches() local
1699 timedOut = (currentTime() - startTime) >= maxScopingDuration; in scopeStringMatches()
1700 } while (!timedOut); in scopeStringMatches()
1715 if (timedOut) { in scopeStringMatches()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DDecisionProbe.java144 protected boolean timedOut = false; field in DecisionProbe