Home
last modified time | relevance | path

Searched refs:ptNow (Results 1 – 25 of 70) sorted by relevance

123

/dports/devel/boost-docs/boost_1_72_0/libs/thread/test/
H A Dtest_time_jumps.cpp662 boost::posix_time::ptime ptNow(boost::posix_time::microsec_clock::universal_time()); in testSleepAbsolute() local
664 boost::this_thread::sleep(ptNow + ptDur); in testSleepAbsolute()
785 boost::this_thread::no_interruption_point::sleep(ptNow + ptDur); in testSleepNoIntAbsolute()
904 bool succeeded = t3.timed_join(ptNow + ptDur); in testTimedJoinAbsolute()
1021 bool noTimeout = cv.timed_wait(g, ptNow + ptDur); in testCondVarTimedWaitAbsolute()
1144 bool noTimeout = cv.timed_wait(g, ptNow + ptDur, returnFalse); in testCondVarTimedWaitPredAbsolute()
1243 bool succeeded = m.timed_lock(ptNow + ptDur); in testTimedLockAbsolute()
1342 bool succeeded = m.timed_lock_shared(ptNow + ptDur); in testTimedLockSharedAbsolute()
1443 bool succeeded = m.timed_lock_upgrade(ptNow + ptDur); in testTimedLockUpgradeAbsolute()
1726 bool noTimeout = f.timed_wait_until(ptNow + ptDur); in testFutureTimedWaitAbsolute()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/thread/test/
H A Dtest_time_jumps.cpp662 boost::posix_time::ptime ptNow(boost::posix_time::microsec_clock::universal_time()); in testSleepAbsolute() local
664 boost::this_thread::sleep(ptNow + ptDur); in testSleepAbsolute()
785 boost::this_thread::no_interruption_point::sleep(ptNow + ptDur); in testSleepNoIntAbsolute()
904 bool succeeded = t3.timed_join(ptNow + ptDur); in testTimedJoinAbsolute()
1021 bool noTimeout = cv.timed_wait(g, ptNow + ptDur); in testCondVarTimedWaitAbsolute()
1144 bool noTimeout = cv.timed_wait(g, ptNow + ptDur, returnFalse); in testCondVarTimedWaitPredAbsolute()
1243 bool succeeded = m.timed_lock(ptNow + ptDur); in testTimedLockAbsolute()
1342 bool succeeded = m.timed_lock_shared(ptNow + ptDur); in testTimedLockSharedAbsolute()
1443 bool succeeded = m.timed_lock_upgrade(ptNow + ptDur); in testTimedLockUpgradeAbsolute()
1726 bool noTimeout = f.timed_wait_until(ptNow + ptDur); in testFutureTimedWaitAbsolute()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/thread/test/
H A Dtest_time_jumps.cpp662 boost::posix_time::ptime ptNow(boost::posix_time::microsec_clock::universal_time()); in testSleepAbsolute() local
664 boost::this_thread::sleep(ptNow + ptDur); in testSleepAbsolute()
785 boost::this_thread::no_interruption_point::sleep(ptNow + ptDur); in testSleepNoIntAbsolute()
904 bool succeeded = t3.timed_join(ptNow + ptDur); in testTimedJoinAbsolute()
1021 bool noTimeout = cv.timed_wait(g, ptNow + ptDur); in testCondVarTimedWaitAbsolute()
1144 bool noTimeout = cv.timed_wait(g, ptNow + ptDur, returnFalse); in testCondVarTimedWaitPredAbsolute()
1243 bool succeeded = m.timed_lock(ptNow + ptDur); in testTimedLockAbsolute()
1342 bool succeeded = m.timed_lock_shared(ptNow + ptDur); in testTimedLockSharedAbsolute()
1443 bool succeeded = m.timed_lock_upgrade(ptNow + ptDur); in testTimedLockUpgradeAbsolute()
1726 bool noTimeout = f.timed_wait_until(ptNow + ptDur); in testFutureTimedWaitAbsolute()
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/thread/test/
H A Dtest_time_jumps.cpp662 boost::posix_time::ptime ptNow(boost::posix_time::microsec_clock::universal_time()); in testSleepAbsolute() local
664 boost::this_thread::sleep(ptNow + ptDur); in testSleepAbsolute()
785 boost::this_thread::no_interruption_point::sleep(ptNow + ptDur); in testSleepNoIntAbsolute()
904 bool succeeded = t3.timed_join(ptNow + ptDur); in testTimedJoinAbsolute()
1021 bool noTimeout = cv.timed_wait(g, ptNow + ptDur); in testCondVarTimedWaitAbsolute()
1144 bool noTimeout = cv.timed_wait(g, ptNow + ptDur, returnFalse); in testCondVarTimedWaitPredAbsolute()
1243 bool succeeded = m.timed_lock(ptNow + ptDur); in testTimedLockAbsolute()
1342 bool succeeded = m.timed_lock_shared(ptNow + ptDur); in testTimedLockSharedAbsolute()
1443 bool succeeded = m.timed_lock_upgrade(ptNow + ptDur); in testTimedLockUpgradeAbsolute()
1726 bool noTimeout = f.timed_wait_until(ptNow + ptDur); in testFutureTimedWaitAbsolute()
[all …]
/dports/graphics/bonzomatic/Bonzomatic-2021-03-07/external/scintilla/qt/ScintillaEditBase/
H A DScintillaQt.h100 virtual bool DragThreshold(Point ptStart, Point ptNow);
H A DScintillaQt.cpp169 bool ScintillaQt::DragThreshold(Point ptStart, Point ptNow) in DragThreshold() argument
171 int xMove = abs(ptStart.x - ptNow.x); in DragThreshold()
172 int yMove = abs(ptStart.y - ptNow.y); in DragThreshold()
/dports/devel/codequery/codequery-0.24.0/scintilla/qt/ScintillaEditBase/
H A DScintillaQt.cpp159 bool ScintillaQt::DragThreshold(Point ptStart, Point ptNow) in DragThreshold() argument
161 int xMove = std::abs(ptStart.x - ptNow.x); in DragThreshold()
162 int yMove = std::abs(ptStart.y - ptNow.y); in DragThreshold()
H A DScintillaQt.h106 bool DragThreshold(Point ptStart, Point ptNow) override;
/dports/x11-toolkits/scintilla/scintilla/qt/ScintillaEditBase/
H A DScintillaQt.h102 bool DragThreshold(Point ptStart, Point ptNow) override;
H A DScintillaQt.cpp157 bool ScintillaQt::DragThreshold(Point ptStart, Point ptNow) in DragThreshold() argument
159 int xMove = std::abs(ptStart.x - ptNow.x); in DragThreshold()
160 int yMove = std::abs(ptStart.y - ptNow.y); in DragThreshold()
/dports/editors/textadept/scintilla/qt/ScintillaEditBase/
H A DScintillaQt.h102 bool DragThreshold(Point ptStart, Point ptNow) override;
H A DScintillaQt.cpp157 bool ScintillaQt::DragThreshold(Point ptStart, Point ptNow) in DragThreshold() argument
159 int xMove = std::abs(ptStart.x - ptNow.x); in DragThreshold()
160 int yMove = std::abs(ptStart.y - ptNow.y); in DragThreshold()
/dports/editors/scite/scintilla/qt/ScintillaEditBase/
H A DScintillaQt.h102 bool DragThreshold(Point ptStart, Point ptNow) override;
H A DScintillaQt.cpp157 bool ScintillaQt::DragThreshold(Point ptStart, Point ptNow) in DragThreshold() argument
159 int xMove = std::abs(ptStart.x - ptNow.x); in DragThreshold()
160 int yMove = std::abs(ptStart.y - ptNow.y); in DragThreshold()
/dports/converters/p5-LaTeXML/LaTeXML-0.8.6/t/digestion/
H A Dtestctr.tex126 \hfuzz=2ptNow HFuzz is \the\hfuzz.
/dports/x11-toolkits/scintilla/scintilla/gtk/
H A DScintillaGTK.h90 bool DragThreshold(Point ptStart, Point ptNow) override;
/dports/devel/geany-legacy/geany-1.37.1/scintilla/gtk/
H A DScintillaGTK.h90 bool DragThreshold(Point ptStart, Point ptNow) override;
/dports/devel/geany/geany-1.38/scintilla/gtk/
H A DScintillaGTK.h90 bool DragThreshold(Point ptStart, Point ptNow) override;
/dports/editors/textadept/scintilla/gtk/
H A DScintillaGTK.h90 bool DragThreshold(Point ptStart, Point ptNow) override;
/dports/editors/scite/scintilla/gtk/
H A DScintillaGTK.h90 bool DragThreshold(Point ptStart, Point ptNow) override;
/dports/net/liveMedia/live/liveMedia/
H A DMatroskaFileParser.cpp1145 double ptNow = timeNow.tv_sec + timeNow.tv_usec/1000000.0; in deliverFrameWithinBlock() local
1146 fPresentationTimeOffset = ptNow - pt; in deliverFrameWithinBlock()
/dports/graphics/bonzomatic/Bonzomatic-2021-03-07/external/scintilla/win32/
H A DScintillaWin.cxx239 virtual bool DragThreshold(Point ptStart, Point ptNow);
531 bool ScintillaWin::DragThreshold(Point ptStart, Point ptNow) { in DragThreshold() argument
532 int xMove = static_cast<int>(abs(ptStart.x - ptNow.x)); in DragThreshold()
533 int yMove = static_cast<int>(abs(ptStart.y - ptNow.y)); in DragThreshold()
/dports/graphics/bonzomatic/Bonzomatic-2021-03-07/external/scintilla/src/
H A DEditor.h481 virtual bool DragThreshold(Point ptStart, Point ptNow);
/dports/deskutils/presage/presage-0.9.1/apps/gtk/gprompter/scintilla/src/
H A DEditor.h481 virtual bool DragThreshold(Point ptStart, Point ptNow);
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/stc/scintilla/src/
H A DEditor.h497 virtual bool DragThreshold(Point ptStart, Point ptNow);

123