Home
last modified time | relevance | path

Searched refs:lastInsertion (Results 1 – 8 of 8) sorted by relevance

/dports/devel/liteide/liteide-x37.4/liteidex/src/3rdparty/fakevim/fakevim/
H A Dfakevimhandler.cpp2107 QString lastInsertion; member
2556 QString &lastInsertion = m_buffer->lastInsertion; in commitInsertState() local
2573 while (insertState.backspaces > 0 && !lastInsertion.isEmpty() && lastInsertion[0].isSpace()) in commitInsertState()
2609 m_buffer->lastInsertion.clear(); in clearLastInsertion()
3407 const QString lastInsertion = m_buffer->lastInsertion; in resetCommandMode() local
3414 m_buffer->lastInsertion = lastInsertion; in resetCommandMode()
4839 m_buffer->lastInsertion.clear(); in finishInsertMode()
4895 m_buffer->lastInsertion = text; in finishInsertMode()
4902 m_buffer->lastInsertion.remove(0, m_buffer->lastInsertion.indexOf(QLatin1Char('\n')) + 1); in finishInsertMode()
6424 const QString lastInsertion = m_buffer->lastInsertion; in indentText() local
[all …]
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/fakevim/fakevim/
H A Dfakevimhandler.cpp2223 QString lastInsertion; member
2617 QString &lastInsertion = m_buffer->lastInsertion; in commitInsertState() local
2628 lastInsertion.replace(i, 1, "<LT>"); in commitInsertState()
2634 while (insertState.backspaces > 0 && !lastInsertion.isEmpty() && lastInsertion[0].isSpace()) in commitInsertState()
2668 m_buffer->lastInsertion.clear(); in clearLastInsertion()
4894 QString text = m_buffer->lastInsertion; in finishInsertMode()
4897 m_buffer->lastInsertion.clear(); in finishInsertMode()
4953 m_buffer->lastInsertion = text; in finishInsertMode()
4960 m_buffer->lastInsertion.remove(0, m_buffer->lastInsertion.indexOf('\n') + 1); in finishInsertMode()
6567 const QString lastInsertion = m_buffer->lastInsertion; in indentText() local
[all …]
/dports/deskutils/copyq/CopyQ-5.0.0/plugins/itemfakevim/fakevim/
H A Dfakevimhandler.cpp2343 QString lastInsertion; member
2746 QString &lastInsertion = m_buffer->lastInsertion; in commitInsertState() local
2757 lastInsertion.replace(i, 1, "<LT>"); in commitInsertState()
2763 while (insertState.backspaces > 0 && !lastInsertion.isEmpty() && lastInsertion[0].isSpace()) in commitInsertState()
2797 m_buffer->lastInsertion.clear(); in clearLastInsertion()
5261 QString text = m_buffer->lastInsertion; in finishInsertMode()
5264 m_buffer->lastInsertion.clear(); in finishInsertMode()
5320 m_buffer->lastInsertion = text; in finishInsertMode()
5327 m_buffer->lastInsertion.remove(0, m_buffer->lastInsertion.indexOf('\n') + 1); in finishInsertMode()
6933 const QString lastInsertion = m_buffer->lastInsertion; in indentText() local
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/fakevim/
H A Dfakevimhandler.cpp2340 QString lastInsertion; member
2748 QString &lastInsertion = m_buffer->lastInsertion; in commitInsertState() local
2759 lastInsertion.replace(i, 1, "<LT>"); in commitInsertState()
2765 while (insertState.backspaces > 0 && !lastInsertion.isEmpty() && lastInsertion[0].isSpace()) in commitInsertState()
2799 m_buffer->lastInsertion.clear(); in clearLastInsertion()
5255 QString text = m_buffer->lastInsertion; in finishInsertMode()
5258 m_buffer->lastInsertion.clear(); in finishInsertMode()
5314 m_buffer->lastInsertion = text; in finishInsertMode()
5321 m_buffer->lastInsertion.remove(0, m_buffer->lastInsertion.indexOf('\n') + 1); in finishInsertMode()
6927 const QString lastInsertion = m_buffer->lastInsertion; in indentText() local
[all …]
/dports/science/jmol/jmol-14.32.7/src/org/jmol/adapter/readers/pdb/
H A DPdbReader.java152 private char lastInsertion = '\0'; field in PdbReader
1030 if (atom.sequenceNumber != lastGroup || atom.insertionCode != lastInsertion) { in filterPDBAtom()
1033 lastInsertion = atom.insertionCode; in filterPDBAtom()
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLane.h323 bool lastInsertion(MSVehicle& veh, double mspeed, double posLat, bool patchSpeed);
H A DMSLane.cpp348 MSLane::lastInsertion(MSVehicle& veh, double mspeed, double posLat, bool patchSpeed) { in lastInsertion() function in MSLane
556 return lastInsertion(veh, speed, posLat, patchSpeed); in insertVehicle()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/
H A DAbstractTreeViewer.java475 int lastInsertion, Object element, TreePath parentPath) { in insertionPosition() argument
481 int min = lastInsertion, max = size - 1; in insertionPosition()