Home
last modified time | relevance | path

Searched refs:insPos (Results 1 – 25 of 53) sorted by relevance

123

/dports/games/warzone2100/warzone2100/lib/widget/
H A Deditbox.cpp66 , insPos(0) in W_EDITBOX()
97 , insPos(0) in W_EDITBOX()
159 ++insPos; in insertChar()
183 aText[insPos] = ch; in overwriteChar()
186 ++insPos; in overwriteChar()
207 if (insPos == 0) in delCharLeft()
212 --insPos; in delCharLeft()
356 insPos = MAX(insPos - 1, 0); in run()
371 insPos = MIN(insPos + 1, len); in run()
391 insPos = 0; in run()
[all …]
H A Deditbox.h73 int insPos; // The insertion point in the buffer variable
/dports/audio/pms-devel/pms-c94e3c6/vendor/github.com/blevesearch/bleve/analysis/
H A Dutil_test.go46 insPos int
52 insPos: 1,
58 insPos: 0,
64 insPos: 3,
71 actual := InsertRune(test.in, test.insPos, test.insRune)
/dports/multimedia/kodi-addon-inputstream.adaptive/inputstream.adaptive-19.0.1-Matrix/wvdecrypter/
H A Dwvdecrypter_android.cpp502 if (insPos != std::string::npos) in SendSessionMessage()
504 if (insPos>0 && blocks[0][insPos - 1] == 'B') in SendSessionMessage()
507 blocks[0].replace(insPos - 1, 6, msgEncoded); in SendSessionMessage()
516 insPos = blocks[0].find("{HASH}"); in SendSessionMessage()
517 if (insPos != std::string::npos) in SendSessionMessage()
522 blocks[0].replace(insPos, 6, md5.hexdigest()); in SendSessionMessage()
550 insPos = blocks[2].find("{SSM}"); in SendSessionMessage()
551 if (insPos != std::string::npos) in SendSessionMessage()
557 if (insPos > 0) in SendSessionMessage()
559 if (blocks[2][insPos - 1] == 'B' || blocks[2][insPos - 1] == 'b') in SendSessionMessage()
[all …]
H A Dwvdecrypter_android_jni.cpp648 if (insPos != std::string::npos) in SendSessionMessage()
650 if (insPos>0 && blocks[0][insPos - 1] == 'B') in SendSessionMessage()
662 insPos = blocks[0].find("{HASH}"); in SendSessionMessage()
663 if (insPos != std::string::npos) in SendSessionMessage()
668 blocks[0].replace(insPos, 6, md5.hexdigest()); in SendSessionMessage()
695 insPos = blocks[2].find("{SSM}"); in SendSessionMessage()
696 if (insPos != std::string::npos) in SendSessionMessage()
707 insPos -= 2; in SendSessionMessage()
718 if (insPos > 0) in SendSessionMessage()
720 if (blocks[2][insPos - 1] == 'B' || blocks[2][insPos - 1] == 'b') in SendSessionMessage()
[all …]
H A Dwvdecrypter.cpp639 if (insPos != std::string::npos) in SendSessionMessage()
641 if (insPos > 0 && blocks[0][insPos - 1] == 'B') in SendSessionMessage()
653 insPos = blocks[0].find("{HASH}"); in SendSessionMessage()
654 if (insPos != std::string::npos) in SendSessionMessage()
659 blocks[0].replace(insPos, 6, md5.hexdigest()); in SendSessionMessage()
688 insPos = blocks[2].find("{SSM}"); in SendSessionMessage()
689 if (insPos != std::string::npos) in SendSessionMessage()
699 insPos -= 2; in SendSessionMessage()
708 if (insPos > 0) in SendSessionMessage()
710 if (blocks[2][insPos - 1] == 'B' || blocks[2][insPos - 1] == 'b') in SendSessionMessage()
[all …]
/dports/biology/hyphy/hyphy-2.5.33/res/TemplateBatchFiles/
H A DSeqAlignmentNucShared.ibf190 insPos = refInsert[insN*2];
191 insLength = refInsert[insN*2+1]-insPos+1;
192 insPos = insPos-offset;
193 if (refInsertions[insPos]<insLength) {
194 refInsertions[insPos]=insLength;
H A DSeqAlignShared.ibf587 insPos = refInsert[insN*2];
588 insLength = refInsert[insN*2+1]-insPos+1;
589 insPos = insPos-offset;
590 if (refInsertions[insPos]<insLength)
592 refInsertions[insPos]=insLength;
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/STLport-5.2.1/test/eh/
H A Dtest_insert.h257 SrcIter lastNew, size_t insPos, sequence_container_tag ) in VerifyInsertion() argument
260 const SrcIter& lastNew, size_t insPos, sequence_container_tag ) in VerifyInsertion()
267 for ( size_t n = 0; n < insPos; n++, ++p1, ++p2) in VerifyInsertion()
283 const SrcIter& lastNew, size_t insPos ) in VerifyInsertion() argument
288 VerifyInsertion( original, result, firstNew, lastNew, insPos, in VerifyInsertion()
294 const Value& val, size_t insPos ) in VerifyInsertN() argument
300 for ( size_t n = 0; n < insPos; n++ ) in VerifyInsertN()
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/base/
H A DnsINode.cpp2391 int32_t insPos; in ReplaceOrInsertBefore() local
2393 insPos = IndexOf(nodeToInsertBefore); in ReplaceOrInsertBefore()
2394 if (insPos < 0) { in ReplaceOrInsertBefore()
2401 insPos = GetChildCount(); in ReplaceOrInsertBefore()
2415 NS_ASSERTION(insPos >= 1, "insPos too small"); in ReplaceOrInsertBefore()
2416 RemoveChildAt(insPos-1, true); in ReplaceOrInsertBefore()
2417 --insPos; in ReplaceOrInsertBefore()
2462 int32_t firstInsPos = insPos; in ReplaceOrInsertBefore()
2467 for (uint32_t i = 0; i < count; ++i, ++insPos) { in ReplaceOrInsertBefore()
2511 mb.SetPrevSibling(GetChildAt(insPos - 1)); in ReplaceOrInsertBefore()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/dom/base/
H A DnsINode.cpp2176 int32_t insPos; in ReplaceOrInsertBefore() local
2178 insPos = ComputeIndexOf(nodeToInsertBefore); in ReplaceOrInsertBefore()
2179 if (insPos < 0) { in ReplaceOrInsertBefore()
2185 insPos = GetChildCount(); in ReplaceOrInsertBefore()
2199 NS_ASSERTION(insPos >= 1, "insPos too small"); in ReplaceOrInsertBefore()
2200 RemoveChildAt_Deprecated(insPos - 1, true); in ReplaceOrInsertBefore()
2201 --insPos; in ReplaceOrInsertBefore()
2250 for (uint32_t i = 0; i < count; ++i, ++insPos) { in ReplaceOrInsertBefore()
2292 mb.SetPrevSibling(GetChildAt_Deprecated(insPos - 1)); in ReplaceOrInsertBefore()
2293 mb.SetNextSibling(GetChildAt_Deprecated(insPos)); in ReplaceOrInsertBefore()
[all …]
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/include/seqan/store/
H A Dstore_all.h2052 TContigPos insPos = cIt.current.gapPos;
2058 if (rBegin < insPos && insPos < rEnd)
2064 if (rBegin < insPos)
2067 insertGap(gaps, insPos - rBegin);
2081 } else if (insPos <= rBegin) {
2217 TPos insPos,
2231 if (rBegin < insPos && insPos < rEnd)
2233 if (rBegin < insPos)
2236 insertGaps(gaps, insPos - rBegin, blkLen);
2319 TContigPos insPos = cIt.current.gapPos;
[all …]
/dports/biology/seqan/seqan-library-2.4.0/include/seqan/store/
H A Dstore_all.h2052 TContigPos insPos = cIt.current.gapPos;
2058 if (rBegin < insPos && insPos < rEnd)
2064 if (rBegin < insPos)
2067 insertGap(gaps, insPos - rBegin);
2081 } else if (insPos <= rBegin) {
2217 TPos insPos,
2231 if (rBegin < insPos && insPos < rEnd)
2233 if (rBegin < insPos)
2236 insertGaps(gaps, insPos - rBegin, blkLen);
2319 TContigPos insPos = cIt.current.gapPos;
[all …]
/dports/biology/pbseqan/seqan-21d95d737d8decb5cc3693b9065d81e831e7f57d/include/seqan/store/
H A Dstore_all.h2054 TContigPos insPos = cIt.current.gapPos;
2060 if (rBegin < insPos && insPos < rEnd)
2066 if (rBegin < insPos)
2069 insertGap(gaps, insPos - rBegin);
2083 } else if (insPos <= rBegin) {
2219 TPos insPos,
2233 if (rBegin < insPos && insPos < rEnd)
2235 if (rBegin < insPos)
2238 insertGaps(gaps, insPos - rBegin, blkLen);
2321 TContigPos insPos = cIt.current.gapPos;
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/lang/invoke/
H A DMethodHandles.java2147 int dropVal = ~ddIdx, insPos = 0; in permuteArguments() local
2148 while (insPos < reorder.length && reorder[insPos] < dropVal) { in permuteArguments()
2151 insPos += 1; in permuteArguments()
2154 form = form.editor().addArgumentForm(1 + insPos, BasicType.basicType(ptype)); in permuteArguments()
2155 oldType = oldType.insertParameterTypes(insPos, ptype); in permuteArguments()
2157 int tailPos = insPos + 1; in permuteArguments()
2159 System.arraycopy(reorder, insPos, reorder, tailPos, reorder.length - tailPos); in permuteArguments()
2160 reorder[insPos] = dropVal; in permuteArguments()
/dports/editors/abiword/abiword-3.0.5/src/wp/ap/xp/
H A Dap_LeftRuler.cpp416 PT_DocPosition insPos = pView1->getPoint(); in mouseRelease() local
526 pView1->setPoint(insPos); in mouseRelease()
528 pView1->setPoint(insPos); in mouseRelease()
544 pView1->setPoint(insPos); in mouseRelease()
546 pView1->setPoint(insPos); in mouseRelease()
625 pView1->setPoint(insPos); in mouseRelease()
627 pView1->setPoint(insPos); in mouseRelease()
641 pView1->setPoint(insPos); in mouseRelease()
643 pView1->setPoint(insPos); in mouseRelease()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/lang/invoke/
H A DMethodHandles.java2147 int dropVal = ~ddIdx, insPos = 0; in permuteArguments() local
2148 while (insPos < reorder.length && reorder[insPos] < dropVal) { in permuteArguments()
2151 insPos += 1; in permuteArguments()
2154 form = form.editor().addArgumentForm(1 + insPos, BasicType.basicType(ptype)); in permuteArguments()
2155 oldType = oldType.insertParameterTypes(insPos, ptype); in permuteArguments()
2157 int tailPos = insPos + 1; in permuteArguments()
2159 System.arraycopy(reorder, insPos, reorder, tailPos, reorder.length - tailPos); in permuteArguments()
2160 reorder[insPos] = dropVal; in permuteArguments()
/dports/biology/seqan1/seqan-1.3.1/seqan/store/
H A Dstore_all.h1780 TContigPos insPos = cIt.current.gapPos;
1786 if (rBegin < insPos && insPos < rEnd)
1788 if (rBegin < insPos)
1791 insertGap(gaps, insPos - rBegin);
1805 } else if (insPos <= rBegin) {
1955 TContigPos insPos = cIt.current.gapPos;
1962 if (rBegin < insPos && insPos < rEnd)
1964 if (rBegin < insPos)
1967 insertGap(gaps, insPos - rBegin);
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/lang/invoke/
H A DLambdaFormEditor.java953 int insPos = lambdaForm.names.length; in filterReturnForm() local
973 buf.insertExpression(insPos++, getFilter); in filterReturnForm()
985 buf.insertExpression(insPos++, callFilter); in filterReturnForm()
1034 int insPos = argPos; in collectReturnValueForm() local
1036 buf.insertParameter(insPos++, newParam); in collectReturnValueForm()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/lang/invoke/
H A DLambdaFormEditor.java901 int insPos = lambdaForm.names.length; in filterReturnForm() local
921 buf.insertExpression(insPos++, getFilter); in filterReturnForm()
933 buf.insertExpression(insPos++, callFilter); in filterReturnForm()
982 int insPos = argPos; in collectReturnValueForm() local
984 buf.insertParameter(insPos++, newParam); in collectReturnValueForm()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/java/lang/invoke/
H A DLambdaFormEditor.java953 int insPos = lambdaForm.names.length; in filterReturnForm() local
973 buf.insertExpression(insPos++, getFilter); in filterReturnForm()
985 buf.insertExpression(insPos++, callFilter); in filterReturnForm()
1034 int insPos = argPos; in collectReturnValueForm() local
1036 buf.insertParameter(insPos++, newParam); in collectReturnValueForm()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/lang/invoke/
H A DMethodHandles.java3222 int dropVal = ~ddIdx, insPos = 0; in permuteArguments() local
3223 while (insPos < reorder.length && reorder[insPos] < dropVal) { in permuteArguments()
3226 insPos += 1; in permuteArguments()
3229 form = form.editor().addArgumentForm(1 + insPos, BasicType.basicType(ptype)); in permuteArguments()
3230 oldType = oldType.insertParameterTypes(insPos, ptype); in permuteArguments()
3232 int tailPos = insPos + 1; in permuteArguments()
3234 System.arraycopy(reorder, insPos, reorder, tailPos, reorder.length - tailPos); in permuteArguments()
3235 reorder[insPos] = dropVal; in permuteArguments()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/java/lang/invoke/
H A DMethodHandles.java3250 int dropVal = ~ddIdx, insPos = 0; in permuteArguments() local
3251 while (insPos < reorder.length && reorder[insPos] < dropVal) { in permuteArguments()
3254 insPos += 1; in permuteArguments()
3257 form = form.editor().addArgumentForm(1 + insPos, BasicType.basicType(ptype)); in permuteArguments()
3258 oldType = oldType.insertParameterTypes(insPos, ptype); in permuteArguments()
3260 int tailPos = insPos + 1; in permuteArguments()
3262 System.arraycopy(reorder, insPos, reorder, tailPos, reorder.length - tailPos); in permuteArguments()
3263 reorder[insPos] = dropVal; in permuteArguments()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/java/lang/invoke/
H A DMethodHandles.java3231 int dropVal = ~ddIdx, insPos = 0; in permuteArguments() local
3232 while (insPos < reorder.length && reorder[insPos] < dropVal) { in permuteArguments()
3235 insPos += 1; in permuteArguments()
3238 form = form.editor().addArgumentForm(1 + insPos, BasicType.basicType(ptype)); in permuteArguments()
3239 oldType = oldType.insertParameterTypes(insPos, ptype); in permuteArguments()
3241 int tailPos = insPos + 1; in permuteArguments()
3243 System.arraycopy(reorder, insPos, reorder, tailPos, reorder.length - tailPos); in permuteArguments()
3244 reorder[insPos] = dropVal; in permuteArguments()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/lang/invoke/
H A DMethodHandles.java3222 int dropVal = ~ddIdx, insPos = 0; in permuteArguments() local
3223 while (insPos < reorder.length && reorder[insPos] < dropVal) { in permuteArguments()
3226 insPos += 1; in permuteArguments()
3229 form = form.editor().addArgumentForm(1 + insPos, BasicType.basicType(ptype)); in permuteArguments()
3230 oldType = oldType.insertParameterTypes(insPos, ptype); in permuteArguments()
3232 int tailPos = insPos + 1; in permuteArguments()
3234 System.arraycopy(reorder, insPos, reorder, tailPos, reorder.length - tailPos); in permuteArguments()
3235 reorder[insPos] = dropVal; in permuteArguments()

123