Home
last modified time | relevance | path

Searched refs:bestMatch (Results 76 – 100 of 922) sorted by relevance

12345678910>>...37

/dports/www/firefox-legacy/firefox-52.8.0esr/image/
H A DSurfaceCache.cpp280 RefPtr<CachedSurface> bestMatch; in LookupBestMatch() local
300 if (!bestMatch) { in LookupBestMatch()
301 bestMatch = current; in LookupBestMatch()
308 bool bestMatchIsDecoded = bestMatch->IsDecoded(); in LookupBestMatch()
313 bestMatch = current; in LookupBestMatch()
317 SurfaceKey bestMatchKey = bestMatch->GetSurfaceKey(); in LookupBestMatch()
329 bestMatch = current; in LookupBestMatch()
335 bestMatch = current; in LookupBestMatch()
342 if (bestMatch) { in LookupBestMatch()
346 } else if (exactMatch != bestMatch) { in LookupBestMatch()
[all …]
/dports/devel/qmake/qt-x11-free-3.3.8/src/tools/
H A Dqgpluginmanager.cpp396 QComLibrary* bestMatch = 0; in library() local
399 && ( !bestMatch || candidate->qtVersion() > bestMatch->qtVersion() ) ) in library()
400 bestMatch = candidate; in library()
401 if ( bestMatch ) { in library()
402 same.find( bestMatch ); in library()
/dports/devel/lazygit/lazygit-0.31.4/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/
H A Drename.go95 bestMatch := bestNameMatch(c, deleted)
96 if bestMatch != nil && sameMode(c, bestMatch) {
97 d.modified = append(d.modified, &Change{From: bestMatch.From, To: c.To})
102 if d != bestMatch {
119 bestMatch := bestNameMatch(deleted, added)
120 if bestMatch != nil && sameMode(deleted, bestMatch) {
121 d.modified = append(d.modified, &Change{From: deleted.From, To: bestMatch.To})
125 if c != bestMatch {
/dports/www/gitea/gitea-1.16.5/vendor/github.com/go-git/go-git/v5/plumbing/object/
H A Drename.go95 bestMatch := bestNameMatch(c, deleted)
96 if bestMatch != nil && sameMode(c, bestMatch) {
97 d.modified = append(d.modified, &Change{From: bestMatch.From, To: c.To})
102 if d != bestMatch {
119 bestMatch := bestNameMatch(deleted, added)
120 if bestMatch != nil && sameMode(deleted, bestMatch) {
121 d.modified = append(d.modified, &Change{From: deleted.From, To: bestMatch.To})
125 if c != bestMatch {
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/go-git/go-git/v5/plumbing/object/
H A Drename.go95 bestMatch := bestNameMatch(c, deleted)
96 if bestMatch != nil && sameMode(c, bestMatch) {
97 d.modified = append(d.modified, &Change{From: bestMatch.From, To: c.To})
102 if d != bestMatch {
119 bestMatch := bestNameMatch(deleted, added)
120 if bestMatch != nil && sameMode(deleted, bestMatch) {
121 d.modified = append(d.modified, &Change{From: deleted.From, To: bestMatch.To})
125 if c != bestMatch {
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/go-git/go-git/v5/plumbing/object/
H A Drename.go95 bestMatch := bestNameMatch(c, deleted)
96 if bestMatch != nil && sameMode(c, bestMatch) {
97 d.modified = append(d.modified, &Change{From: bestMatch.From, To: c.To})
102 if d != bestMatch {
119 bestMatch := bestNameMatch(deleted, added)
120 if bestMatch != nil && sameMode(deleted, bestMatch) {
121 d.modified = append(d.modified, &Change{From: deleted.From, To: bestMatch.To})
125 if c != bestMatch {
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/go-git/go-git/v5/plumbing/object/
H A Drename.go95 bestMatch := bestNameMatch(c, deleted)
96 if bestMatch != nil && sameMode(c, bestMatch) {
97 d.modified = append(d.modified, &Change{From: bestMatch.From, To: c.To})
102 if d != bestMatch {
119 bestMatch := bestNameMatch(deleted, added)
120 if bestMatch != nil && sameMode(deleted, bestMatch) {
121 d.modified = append(d.modified, &Change{From: deleted.From, To: bestMatch.To})
125 if c != bestMatch {
/dports/devel/lazygit/lazygit-0.31.4/vendor/github.com/jesseduffield/go-git/v5/go-git-341962be15a4/plumbing/object/
H A Drename.go95 bestMatch := bestNameMatch(c, deleted)
96 if bestMatch != nil && sameMode(c, bestMatch) {
97 d.modified = append(d.modified, &Change{From: bestMatch.From, To: c.To})
102 if d != bestMatch {
119 bestMatch := bestNameMatch(deleted, added)
120 if bestMatch != nil && sameMode(deleted, bestMatch) {
121 d.modified = append(d.modified, &Change{From: deleted.From, To: bestMatch.To})
125 if c != bestMatch {
/dports/devel/gitty/gitty-0.3.0/vendor/github.com/go-git/go-git/v5/plumbing/object/
H A Drename.go95 bestMatch := bestNameMatch(c, deleted)
96 if bestMatch != nil && sameMode(c, bestMatch) {
97 d.modified = append(d.modified, &Change{From: bestMatch.From, To: c.To})
102 if d != bestMatch {
119 bestMatch := bestNameMatch(deleted, added)
120 if bestMatch != nil && sameMode(deleted, bestMatch) {
121 d.modified = append(d.modified, &Change{From: deleted.From, To: bestMatch.To})
125 if c != bestMatch {
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DMsmqBindingMonitor.cs172 MsmqBindingFilter bestMatch = state.LastMatch; in MatchQueue()
182 bestMatch = filter; in MatchQueue()
186 if (bestMatch != state.LastMatch) in MatchQueue()
194 state.LastMatch = bestMatch; in MatchQueue()
196 … state.CallbackState = bestMatch.MatchFound(this.host, state.QueueName, state.IsPrivate); in MatchQueue()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/handler/
H A DAbstractHandlerMethodMapping.java256 Match bestMatch = matches.get(0); in lookupHandlerMethod() local
259 if (comparator.compare(bestMatch, secondBestMatch) == 0) { in lookupHandlerMethod()
260 Method m1 = bestMatch.handlerMethod.getMethod(); in lookupHandlerMethod()
268 handleMatch(bestMatch.mapping, lookupPath, request); in lookupHandlerMethod()
269 return bestMatch.handlerMethod; in lookupHandlerMethod()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/shape/samples/
H A Dshape_example.cpp87 int bestMatch = 0; in main() local
105 bestMatch = ii; in main()
112 bestname<<path<<bestMatch<<".png"; in main()
/dports/java/bouncycastle15/crypto-169/tls/src/main/java/org/bouncycastle/jsse/provider/
H A DProvX509KeyManager.java318 Match bestMatch = getBestMatch(keyTypes, issuers, transportData, forServer); in chooseAlias() local
320 if (bestMatch.compareTo(Match.NOTHING) < 0) in chooseAlias()
322 String keyType = keyTypes.get(bestMatch.keyTypeIndex); in chooseAlias()
323 String alias = getAlias(bestMatch, getNextVersionSuffix()); in chooseAlias()
338 Match bestMatch = getBestMatch(keyTypes, issuers, transportData, forServer); in chooseKeyBC() local
340 if (bestMatch.compareTo(Match.NOTHING) < 0) in chooseKeyBC()
344 String keyType = keyTypes.get(bestMatch.keyTypeIndex); in chooseKeyBC()
346 BCX509Key keyBC = createKeyBC(keyType, bestMatch.builderIndex, bestMatch.localAlias, in chooseKeyBC()
347 bestMatch.cachedKeyStore, bestMatch.cachedCertificateChain); in chooseKeyBC()
352 … LOG.fine("Found matching key of type: " + keyType + ", from alias: " + bestMatch.builderIndex in chooseKeyBC()
[all …]
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/include/doomsday/resource/
H A Dbundles.h50 de::Info::BlockElement const *bestMatch = nullptr; member
55 operator bool() const { return bestMatch != nullptr; }
/dports/devel/qbs/qbs-src-1.21.0/src/app/qbs-setup-qt/
H A Dsetupqt.cpp356 QString bestMatch; in saveToQbsSettings() local
358 bestMatch = fullMatches.front(); in saveToQbsSettings()
360 bestMatch = partialMatches.front(); in saveToQbsSettings()
361 if (bestMatch.isEmpty()) { in saveToQbsSettings()
371 profile.setBaseProfile(bestMatch); in saveToQbsSettings()
373 .arg(bestMatch); in saveToQbsSettings()
/dports/biology/mothur/mothur-1.46.1/source/datastructures/
H A Dkmerdb.cpp110 int bestMatch = -1; in findClosestSequences() local
114 if (matches[i] > bestMatch) { in findClosestSequences()
116 bestMatch = matches[i]; in findClosestSequences()
120 searchScore = bestMatch; in findClosestSequences()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/web_page_replay_go/src/webpagereplay/
H A Darchive.go292 var bestMatch RequestMatch
325 if ratio > bestMatch.MatchRatio {
326 bestMatch.SetMatch(r, archivedReq, archivedResp, ratio)
334 } else if bestMatch.Match != nil {
335 bestMatch.Match.LastServedSessionId = a.CurrentSessionId
336 return bestMatch.Request, bestMatch.Response, nil
/dports/graphics/okular/okular-21.12.3/generators/dvi/
H A DdviRenderer.cpp569 QVector<DVI_SourceFileAnchor>::iterator bestMatch = sourceHyperLinkAnchors.end(); in parseReference() local
575 …if ((it->line <= refLineNumber) && ((bestMatch == sourceHyperLinkAnchors.end()) || (it->line > bes… in parseReference()
576 bestMatch = it; in parseReference()
579 if (bestMatch != sourceHyperLinkAnchors.end()) in parseReference()
580 return Anchor(bestMatch->page, bestMatch->distance_from_top); in parseReference()
/dports/textproc/zxing-cpp/zxing-cpp-1.2.0/core/src/pdf417/
H A DPDFCodewordDecoder.cpp497 int bestMatch = -1; in GetClosestDecodedValue() local
510 bestMatch = SYMBOL_TABLE[j]; in GetClosestDecodedValue()
513 return bestMatch; in GetClosestDecodedValue()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/shared/help/
H A Dindexwindow.cpp121 QModelIndex bestMatch; in filterIndices() local
123 bestMatch = m_filteredIndexModel->filter(filter, filter); in filterIndices()
125 bestMatch = m_filteredIndexModel->filter(filter, QString()); in filterIndices()
126 if (bestMatch.isValid()) { in filterIndices()
127 m_indexWidget->setCurrentIndex(bestMatch); in filterIndices()
128 m_indexWidget->scrollTo(bestMatch); in filterIndices()
/dports/emulators/gxemul/gxemul-0.6.3/src/main/
H A DFileLoader.cc77 float bestMatch = 0.0; in DetectFileFormat() local
83 if (match > bestMatch) { in DetectFileFormat()
84 bestMatch = match; in DetectFileFormat()
90 if (bestMatch == 0.0 && !file.is_open()) in DetectFileFormat()
/dports/audio/rhvoice/RHVoice-1.2.4/src/android/RHVoice-core/src/main/java/com/github/olga_yakovleva/rhvoice/android/
H A DRHVoiceService.java521 …Candidate bestMatch=findBestVoice(tts,locale.getISO3Language(),locale.getISO3Country(),"","",false… in onGetLanguage() local
522 if(bestMatch.voice!=null) in onGetLanguage()
523 voice=bestMatch.voice; in onGetLanguage()
550 Candidate bestMatch=findBestVoice(tts,language,country,variant,"",false,null); in onIsLanguageAvailable() local
551 int result=languageSupportConstants[bestMatch.score]; in onIsLanguageAvailable()
638 …final Candidate bestMatch=findBestVoice(tts,language,country,variant,voiceName,testing,languageSet… in onSynthesizeText() local
639 if(bestMatch.voice==null) in onSynthesizeText()
649 Log.v(TAG,"Selected voice: "+bestMatch.voice.getSource().getName()); in onSynthesizeText()
650 currentVoice=bestMatch.voice; in onSynthesizeText()
652 voiceProfileSpecBuilder.append(bestMatch.voice.getSource().getName()); in onSynthesizeText()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/image/
H A DSurfaceCache.cpp325 RefPtr<CachedSurface> bestMatch; in LookupBestMatch() local
345 if (!bestMatch) { in LookupBestMatch()
346 bestMatch = current; in LookupBestMatch()
350 MOZ_ASSERT(bestMatch, "Should have a current best match"); in LookupBestMatch()
353 bool bestMatchIsDecoded = bestMatch->IsDecoded(); in LookupBestMatch()
358 bestMatch = current; in LookupBestMatch()
362 SurfaceKey bestMatchKey = bestMatch->GetSurfaceKey(); in LookupBestMatch()
365 bestMatch = current; in LookupBestMatch()
370 if (bestMatch) { in LookupBestMatch()
376 } else if (exactMatch != bestMatch) { in LookupBestMatch()
[all …]
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Core/src/util/
H A DMSAUtils.cpp173 const DNAAlphabet *bestMatch = nullptr; in selectBestAlphabetForAlignment() local
175 if (bestMatch == nullptr || bestMatch->isRaw()) { // prefer any other alphabet over RAW. in selectBestAlphabetForAlignment()
176 bestMatch = alphabet; in selectBestAlphabetForAlignment()
179 if (bestMatch->isDNA() && alphabet->isAmino()) { // prefer Amino over DNA. in selectBestAlphabetForAlignment()
180 bestMatch = alphabet; in selectBestAlphabetForAlignment()
183 … if (bestMatch->isExtended() && !alphabet->isExtended()) { // narrow down the set of characters. in selectBestAlphabetForAlignment()
184 bestMatch = alphabet; in selectBestAlphabetForAlignment()
187 return bestMatch; in selectBestAlphabetForAlignment()
/dports/graphics/art/ART-1.9.3/rtengine/
H A Dffmanager.cc394 ffList_t::iterator bestMatch = iter; in find() local
401 bestMatch = iter; in find()
406 return &(bestMatch->second); in find()
409 ffList_t::iterator bestMatch = iter; in find() local
417 bestMatch = iter; in find()
421 return bestD != INFINITY ? &(bestMatch->second) : nullptr ; in find()

12345678910>>...37