Home
last modified time | relevance | path

Searched refs:cursorId (Results 1 – 25 of 532) sorted by relevance

12345678910>>...22

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/s/query/
H A Dcluster_cursor_manager_test.cpp139 auto cursorId = in TEST_F() local
158 auto cursorId = in TEST_F() local
171 auto cursorId = in TEST_F() local
219 auto cursorId = in TEST_F() local
233 auto cursorId = in TEST_F() local
255 auto cursorId = in TEST_F() local
268 auto cursorId = in TEST_F() local
281 auto cursorId = in TEST_F() local
301 auto cursorId = in TEST_F() local
319 auto cursorId = in TEST_F() local
[all …]
H A Dcluster_cursor_manager.cpp63 << cursorId in cursorInUseStatus()
77 return static_cast<uint64_t>(cursorId) >> 32; in extractPrefixFromCursorId()
266 CursorId cursorId = 0; in registerCursor() local
270 } while (cursorId == 0 || entryMap.count(cursorId) > 0); in registerCursor()
277 return cursorId; in registerCursor()
282 CursorId cursorId, in checkOutCursor() argument
309 return cursorInUseStatus(nss, cursorId); in checkOutCursor()
415 : ns(std::move(ns)), cursorId(cursorId), isInactive(isInactive) {} in reapZombieCursors()
418 CursorId cursorId; in reapZombieCursors() member
580 CursorId cursorId) const { in getNamespaceForCursorId()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/scripting/mozjs/
H A Dcursor_handle.cpp56 return &tracker->cursorId; in getCursorId()
71 const long long cursorId = cursorTracker->cursorId; in finalize() local
72 if (cursorId) { in finalize()
74 cursorTracker->client->killCursor(cursorTracker->ns, cursorId); in finalize()
79 LOG(0) << "Failed to kill cursor " << cursorId << " due to " << status; in finalize()
91 long long* cursorId = getCursorId(args); in call() local
92 if (cursorId) { in call()
93 *cursorId = 0; in call()
/dports/x11/controllermap/SDL2-2.0.18/src/video/haiku/
H A DSDL_bvideo.cc147 BCursorID cursorId = B_CURSOR_ID_SYSTEM_DEFAULT; in HAIKU_CreateSystemCursor() local
154 case SDL_SYSTEM_CURSOR_ARROW: cursorId = B_CURSOR_ID_SYSTEM_DEFAULT; break; in HAIKU_CreateSystemCursor()
155 case SDL_SYSTEM_CURSOR_IBEAM: cursorId = B_CURSOR_ID_I_BEAM; break; in HAIKU_CreateSystemCursor()
156 case SDL_SYSTEM_CURSOR_WAIT: cursorId = B_CURSOR_ID_PROGRESS; break; in HAIKU_CreateSystemCursor()
157 case SDL_SYSTEM_CURSOR_CROSSHAIR: cursorId = B_CURSOR_ID_CROSS_HAIR; break; in HAIKU_CreateSystemCursor()
158 case SDL_SYSTEM_CURSOR_WAITARROW: cursorId = B_CURSOR_ID_PROGRESS; break; in HAIKU_CreateSystemCursor()
161 case SDL_SYSTEM_CURSOR_SIZEWE: cursorId = B_CURSOR_ID_RESIZE_EAST_WEST; break; in HAIKU_CreateSystemCursor()
163 case SDL_SYSTEM_CURSOR_SIZEALL: cursorId = B_CURSOR_ID_MOVE; break; in HAIKU_CreateSystemCursor()
164 case SDL_SYSTEM_CURSOR_NO: cursorId = B_CURSOR_ID_NOT_ALLOWED; break; in HAIKU_CreateSystemCursor()
165 case SDL_SYSTEM_CURSOR_HAND: cursorId = B_CURSOR_ID_FOLLOW_LINK; break; in HAIKU_CreateSystemCursor()
[all …]
/dports/devel/sdl20/SDL2-2.0.18/src/video/haiku/
H A DSDL_bvideo.cc147 BCursorID cursorId = B_CURSOR_ID_SYSTEM_DEFAULT; in HAIKU_CreateSystemCursor() local
154 case SDL_SYSTEM_CURSOR_ARROW: cursorId = B_CURSOR_ID_SYSTEM_DEFAULT; break; in HAIKU_CreateSystemCursor()
155 case SDL_SYSTEM_CURSOR_IBEAM: cursorId = B_CURSOR_ID_I_BEAM; break; in HAIKU_CreateSystemCursor()
156 case SDL_SYSTEM_CURSOR_WAIT: cursorId = B_CURSOR_ID_PROGRESS; break; in HAIKU_CreateSystemCursor()
157 case SDL_SYSTEM_CURSOR_CROSSHAIR: cursorId = B_CURSOR_ID_CROSS_HAIR; break; in HAIKU_CreateSystemCursor()
158 case SDL_SYSTEM_CURSOR_WAITARROW: cursorId = B_CURSOR_ID_PROGRESS; break; in HAIKU_CreateSystemCursor()
161 case SDL_SYSTEM_CURSOR_SIZEWE: cursorId = B_CURSOR_ID_RESIZE_EAST_WEST; break; in HAIKU_CreateSystemCursor()
163 case SDL_SYSTEM_CURSOR_SIZEALL: cursorId = B_CURSOR_ID_MOVE; break; in HAIKU_CreateSystemCursor()
164 case SDL_SYSTEM_CURSOR_NO: cursorId = B_CURSOR_ID_NOT_ALLOWED; break; in HAIKU_CreateSystemCursor()
165 case SDL_SYSTEM_CURSOR_HAND: cursorId = B_CURSOR_ID_FOLLOW_LINK; break; in HAIKU_CreateSystemCursor()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/client/
H A Ddbclientcursor.cpp97 if (cursorId) { in _assembleInit()
141 invariant(cursorId); in _assembleGetMore()
145 cursorId, in _assembleGetMore()
285 if (_isCommand && cursorId == 0) { in dataReceived()
293 cursorId = cr.getCursorId(); in dataReceived()
316 cursorId = 0; in dataReceived()
322 cursorId = qr.getCursorId(); in dataReceived()
372 if (cursorId == 0) in more()
493 cursorId, in DBClientCursor()
521 cursorId(cursorId), in DBClientCursor()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/repl/
H A Dbase_cloner_test_fixture.cpp60 BSONObj BaseClonerTest::createCursorResponse(CursorId cursorId, in createCursorResponse() argument
69 BSONObj BaseClonerTest::createCursorResponse(CursorId cursorId, in createCursorResponse() argument
72 return createCursorResponse(cursorId, nss.toString(), docs, batchFieldName); in createCursorResponse()
76 BSONObj BaseClonerTest::createCursorResponse(CursorId cursorId, const BSONArray& docs) { in createCursorResponse() argument
77 return createCursorResponse(cursorId, docs, "firstBatch"); in createCursorResponse()
86 BSONObj BaseClonerTest::createListCollectionsResponse(CursorId cursorId, in createListCollectionsResponse() argument
89 return createCursorResponse(cursorId, "test.$cmd.listCollections.coll", colls, fieldName); in createListCollectionsResponse()
94 return createListCollectionsResponse(cursorId, colls, "firstBatch"); in createListCollectionsResponse()
98 BSONObj BaseClonerTest::createListIndexesResponse(CursorId cursorId, in createListIndexesResponse() argument
105 BSONObj BaseClonerTest::createListIndexesResponse(CursorId cursorId, const BSONArray& specs) { in createListIndexesResponse() argument
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/bladerunner/
H A Dmouse.cpp354 cursorId = 12; in tick()
357 cursorId = 13; in tick()
360 cursorId = 14; in tick()
363 cursorId = 15; in tick()
374 cursorId = 1; in tick()
399 cursorId = 7; in tick()
402 cursorId = 9; in tick()
405 cursorId = 11; in tick()
415 cursorId = 6; in tick()
418 cursorId = 8; in tick()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/bladerunner/
H A Dmouse.cpp363 cursorId = 12; in tick()
366 cursorId = 13; in tick()
369 cursorId = 14; in tick()
372 cursorId = 15; in tick()
385 cursorId = 1; in tick()
410 cursorId = 7; in tick()
413 cursorId = 9; in tick()
416 cursorId = 11; in tick()
428 cursorId = 6; in tick()
431 cursorId = 8; in tick()
[all …]
/dports/games/py-fife/fifengine-0.4.2/engine/core/gui/fifechan/widgets/
H A Dresizablewindow.cpp109 state.cursorId = FIFE::NC_ARROW; in initCursors()
114 state.cursorId = FIFE::NC_RESIZEWE; in initCursors()
117 state.cursorId = FIFE::NC_RESIZEWE; in initCursors()
120 state.cursorId = FIFE::NC_RESIZENS; in initCursors()
123 state.cursorId = FIFE::NC_RESIZENWSE; in initCursors()
129 state.cursorId = FIFE::NC_RESIZENS; in initCursors()
143 m_cursor->set(m_saved.cursorId); in restoreCursor()
241 state.cursorId = cursor_id; in set()
249 state.cursorId = FIFE::NC_ARROW; in set()
257 state.cursorId = FIFE::NC_ARROW; in set()
[all …]
/dports/x11/eaglemode/eaglemode-0.95.0/include/emCore/
H A DemCursor.h58 emCursor(int cursorId);
65 emCursor & operator = (int cursorId);
85 inline emCursor::emCursor(int cursorId) in emCursor() argument
87 CursorId=cursorId; in emCursor()
101 inline emCursor & emCursor::operator = (int cursorId)
103 CursorId=cursorId;
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/x11-toolkits/qt5-widgets/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/x11-toolkits/qt5-gui/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]
/dports/devel/qt5-testlib/kde-qtbase-5.15.2p263/src/plugins/platforms/xcb/
H A Dqxcbcursor.cpp396 int cursorId = 0; in cursorIdForShape() local
408 cursorId = XC_watch; in cursorIdForShape()
411 cursorId = XC_xterm; in cursorIdForShape()
414 cursorId = XC_fleur; in cursorIdForShape()
417 cursorId = XC_hand2; in cursorIdForShape()
437 cursorId = XC_circle; in cursorIdForShape()
440 cursorId = XC_watch; in cursorIdForShape()
445 return cursorId; in cursorIdForShape()
578 if (!cursor && cursorId) { in createFontCursor()
590 if (!cursor && cursorId) { in createFontCursor()
[all …]

12345678910>>...22