Home
last modified time | relevance | path

Searched refs:foundRange (Results 1 – 25 of 69) sorted by relevance

123

/dports/biology/bowtie/bowtie-1.3.1/
H A Drange_source.h1604 bool foundRange; variable
1645 if(this->foundRange) { in advance()
1682 bool foundRange; variable
1766 this->foundRange = rs_->foundRange; in setQueryImpl()
1819 this->foundRange = rs_->foundRange; in advanceImpl()
1821 if(this->foundRange) { in advanceImpl()
1969 this->foundRange = rss_[cur_]->foundRange; in setQueryImpl()
1981 this->foundRange = rss_[cur_]->foundRange; in advanceImpl()
1991 this->foundRange = rss_[cur_]->foundRange; in advanceImpl()
2188 if(!p->foundRange) { in advanceImpl()
[all …]
H A Daligner.h507 assert(driver_->foundRange); in advance()
528 if(driver_->foundRange) { in advance()
1099 assert(drL_->foundRange); in advanceOrientation()
1126 drL_->foundRange = false; in advanceOrientation()
1131 assert(drR_->foundRange); in advanceOrientation()
1145 assert(drR_->foundRange); in advanceOrientation()
1171 drR_->foundRange = false; in advanceOrientation()
1176 assert(drL_->foundRange); in advanceOrientation()
1205 if(drL_->foundRange) { in advanceOrientation()
1269 if(drR_->foundRange) { in advanceOrientation()
[all …]
H A Debwt_search_backtrack.h1868 this->foundRange = false; in setQuery()
1928 this->foundRange = false; in initBranch()
2065 this->foundRange = false; in advanceBranch()
2975 this->foundRange = false; in setQueryImpl()
2985 assert(!this->foundRange); in advance()
2989 if(this->foundRange) { in advance()
2993 if(this->foundRange) { in advance()
3013 assert(!this->foundRange); in advanceImpl()
3017 !rsSeed_->foundRange && !rsFull_.foundRange) in advanceImpl()
3049 if(rsSeed_->foundRange) { in advanceImpl()
[all …]
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/golangci/golangci-lint/pkg/result/processors/
H A Dnolint.go193 var foundRange *ignoredRange
197 foundRange = &r
201 if foundRange == nil {
205 expandedRange := *foundRange
208 expandedRange.originalRange = foundRange
215 *foundRange, node, nodeStartLine, nodeEndLine, expandedRange)
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/kunwardeep/paralleltest/tools/vendor/github.com/golangci/golangci-lint/pkg/result/processors/
H A Dnolint.go189 var foundRange *ignoredRange
193 foundRange = &r
197 if foundRange == nil {
201 expandedRange := *foundRange
206 *foundRange, node, nodeStartLine, nodeEndLine, expandedRange)
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/golangci/golangci-lint/pkg/result/processors/
H A Dnolint.go189 var foundRange *ignoredRange
193 foundRange = &r
197 if foundRange == nil {
201 expandedRange := *foundRange
206 *foundRange, node, nodeStartLine, nodeEndLine, expandedRange)
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/modules/clang/
H A DFindReferences.cpp105 FileRange foundRange; in findReferencesVisitor() local
137 foundRange = token.extent().getFileRange(); in findReferencesVisitor()
147 if (foundRange.empty()) in findReferencesVisitor()
148 foundRange = cursor.getExtent().getFileRange(); in findReferencesVisitor()
152 (pData->references.back() != foundRange)) in findReferencesVisitor()
154 pData->references.push_back(foundRange); in findReferencesVisitor()
/dports/devel/sope/SOPE/sope-gdl1/GDLAccess/FoundationExt/
H A DFormatScanner.m145 NSRange searchRange, foundRange;
161 foundRange = [format rangeOfString:@"%" options:0 range:searchRange];
162 if (foundRange.length == 0)
163 foundRange.location = length;
164 searchRange.length = foundRange.location - searchRange.location;
172 i = foundRange.location;
/dports/devel/sope2/SOPE/sope-gdl1/GDLAccess/FoundationExt/
H A DFormatScanner.m145 NSRange searchRange, foundRange;
161 foundRange = [format rangeOfString:@"%" options:0 range:searchRange];
162 if (foundRange.length == 0)
163 foundRange.location = length;
164 searchRange.length = foundRange.location - searchRange.location;
172 i = foundRange.location;
/dports/lang/fpc-source/fpc-3.2.2/packages/cocoaint/src/appkit/
H A DNSUserInterfaceItemSearching.inc28 …; searchRange: NSRange; foundRange: NSRangePtr): ObjCBOOL; message 'searchString:inUserInterfaceIt…
/dports/devel/projectcenter/ProjectCenter-0.6.2/Modules/Editors/ProjectCenter/
H A DTextFinder.m211 …NSRange foundRange = [textContents rangeOfString:[self findString] options:options range:replaceRa…
212 if (foundRange.length == 0) break;
213 if ([text shouldChangeTextInRange:foundRange replacementString:replaceString]) {
216 [textStorage replaceCharactersInRange:foundRange withString:replaceString];
217 replaceRange.length = foundRange.location - replaceRange.location;
/dports/mail/gnumail/GNUMail-1.3.0/Framework/GNUMail/
H A DNSAttributedString+Extensions.m1017 NSRange searchRange, foundRange;
1036 foundRange = [aString rangeOfString: aPrefix
1041 if (foundRange.length > 0)
1048 searchRange.location = end = NSMaxRange(foundRange);
1057 // Set foundRange's length to the length of the URL
1058 foundRange.length = end - foundRange.location;
1066 foundRange.length--;
1074 [aString substringWithRange: foundRange]]];
1078 anURL = [NSURL URLWithString: [aString substringWithRange: foundRange]];
1088 [self addAttributes: linkAttributes range: foundRange];
[all …]
/dports/games/barony/Barony-3.3.7/src/
H A Dactgeneral.cpp716 size_t foundRange = first_str.find("-"); in textSourceProcessScriptTag() local
717 if ( foundRange != std::string::npos ) in textSourceProcessScriptTag()
720 param1.first = std::stoi(first_str.substr(0, foundRange)); in textSourceProcessScriptTag()
721 param1.second = std::stoi(first_str.substr(foundRange + 1, first_str.length() - foundRange)); in textSourceProcessScriptTag()
728 foundRange = second_str.find("-"); in textSourceProcessScriptTag()
729 if ( foundRange != std::string::npos ) in textSourceProcessScriptTag()
733 param2.second = std::stoi(second_str.substr(foundRange + 1, second_str.length() - foundRange)); in textSourceProcessScriptTag()
748 size_t foundRange = tagValue.find("-"); in textSourceProcessScriptTag() local
749 if ( foundRange != std::string::npos ) in textSourceProcessScriptTag()
753 std::string first_str = tagValue.substr(0, foundRange); in textSourceProcessScriptTag()
[all …]
/dports/www/firefox/firefox-99.0/toolkit/components/extensions/
H A DFindContent.jsm228 let foundRange = ranges[rangeIndex];
229 this.highlighter.highlightRange(foundRange);
232 let node = foundRange.startContainer;
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/components/extensions/
H A DFindContent.jsm228 let foundRange = ranges[rangeIndex];
229 this.highlighter.highlightRange(foundRange);
232 let node = foundRange.startContainer;
/dports/www/firefox-esr/firefox-91.8.0/toolkit/components/extensions/
H A DFindContent.jsm228 let foundRange = ranges[rangeIndex];
229 this.highlighter.highlightRange(foundRange);
232 let node = foundRange.startContainer;
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/components/extensions/
H A DFindContent.jsm228 let foundRange = ranges[rangeIndex];
229 this.highlighter.highlightRange(foundRange);
232 let node = foundRange.startContainer;
/dports/www/firefox/firefox-99.0/toolkit/components/find/
H A DnsWebBrowserFind.cpp661 RefPtr<nsRange> foundRange; in SearchInFrame() local
667 getter_AddRefs(foundRange)); in SearchInFrame()
669 if (NS_SUCCEEDED(rv) && foundRange) { in SearchInFrame()
674 SetSelectionAndScroll(aWindow, foundRange); in SearchInFrame()
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/components/find/
H A DnsWebBrowserFind.cpp661 RefPtr<nsRange> foundRange; in SearchInFrame() local
667 getter_AddRefs(foundRange)); in SearchInFrame()
669 if (NS_SUCCEEDED(rv) && foundRange) { in SearchInFrame()
674 SetSelectionAndScroll(aWindow, foundRange); in SearchInFrame()
/dports/www/firefox-esr/firefox-91.8.0/toolkit/components/find/
H A DnsWebBrowserFind.cpp661 RefPtr<nsRange> foundRange; in SearchInFrame() local
667 getter_AddRefs(foundRange)); in SearchInFrame()
669 if (NS_SUCCEEDED(rv) && foundRange) { in SearchInFrame()
674 SetSelectionAndScroll(aWindow, foundRange); in SearchInFrame()
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/components/find/
H A DnsWebBrowserFind.cpp655 RefPtr<nsRange> foundRange; in SearchInFrame() local
661 getter_AddRefs(foundRange)); in SearchInFrame()
663 if (NS_SUCCEEDED(rv) && foundRange) { in SearchInFrame()
668 SetSelectionAndScroll(aWindow, foundRange); in SearchInFrame()
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/components/extensions/
H A DFindContent.jsm219 let foundRange = ranges[rangeIndex];
220 this.highlighter.highlightRange(foundRange);
223 let node = foundRange.startContainer;
/dports/astro/py-ro/RO-3.6.9/python/RO/Wdg/
H A DLogWdg.py283 foundRange = findFunc(tag, startIndex, stopIndex)
284 if not foundRange:
288 foundStart, foundEnd = foundRange
/dports/science/gtamsanalyzer/GTAMSAnalyzer.src.0.42/Source/
H A DTextFinderSemi.m571 …NSRange foundRange = [textContents rangeOfString:targetString options:searchOption range:rangeInOr…
572 if (foundRange.length == 0) {
578 …NSRange rangeToCopy = NSMakeRange(rangeInOriginalString.location, foundRange.location - rangeInOri…
583 … rangeInOriginalString.length -= NSMaxRange(foundRange) - rangeInOriginalString.location;
584 rangeInOriginalString.location = NSMaxRange(foundRange);
655 …NSRange foundRange = [textContents rangeOfString:targetString options:searchOption range:rangeInOr…
656 if (foundRange.length == 0) {
660 …NSRange rangeToCopy = NSMakeRange(rangeInOriginalString.location, foundRange.location - rangeInOri…
663 … rangeInOriginalString.length -= NSMaxRange(foundRange) - rangeInOriginalString.location;
664 rangeInOriginalString.location = NSMaxRange(foundRange);
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/components/find/
H A DnsWebBrowserFind.cpp699 nsCOMPtr<nsIDOMRange> foundRange; in SearchInFrame() local
716 getter_AddRefs(foundRange)); in SearchInFrame()
718 if (NS_SUCCEEDED(rv) && foundRange) { in SearchInFrame()
723 SetSelectionAndScroll(aWindow, foundRange); in SearchInFrame()

123