Home
last modified time | relevance | path

Searched refs:bestMatch (Results 26 – 50 of 922) sorted by relevance

12345678910>>...37

/dports/editors/yudit/yudit-3.0.7/swindow/sx11/
H A DSX11Color.cpp135 int bestMatch; in allocate() local
166 bestMatch = -1; in allocate()
177 if (bestMatch<0 || d< bestDistance) in allocate()
180 bestMatch = i; in allocate()
184 if (bestMatch<0) in allocate()
188 copyXcolor = colors[bestMatch]; in allocate()
194 flags[bestMatch] = 1; in allocate()
200 if (bestMatch<0) in allocate()
/dports/lang/mono/mono-5.10.1.57/external/ikvm/reflect/
H A DBinder.cs77 MethodBase bestMatch = match[0]; in SelectMethod()
81 SelectBestMatch(match[i], types, ref bestMatch, ref ambiguous); in SelectMethod()
87 return bestMatch; in SelectMethod()
361 PropertyInfo bestMatch = match[0]; in SelectProperty()
365 int best = MatchTypes(bestMatch.PropertyType, match[i].PropertyType, returnType); in SelectProperty()
368 best = MatchSignatures(bestMatch.PropertySignature, match[i].PropertySignature, indexes); in SelectProperty()
372 int depth1 = GetInheritanceDepth(bestMatch.DeclaringType); in SelectProperty()
374 if (bestMatch.Name == match[i].Name && depth1 != depth2) in SelectProperty()
393 bestMatch = match[i]; in SelectProperty()
400 return bestMatch; in SelectProperty()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/UI/MobileControls/Design/Converters/
H A DChoiceConverter.cs202 String bestMatch = null; in MatchFilterName()
221 if (bestMatch == null || filterName.Length <= bestMatch.Length) in MatchFilterName()
223 bestMatch = filterName; in MatchFilterName()
228 if (bestMatch == null) in MatchFilterName()
231 bestMatch = SR.GetString(SR.DeviceFilter_NoChoice); in MatchFilterName()
233 return bestMatch; in MatchFilterName()
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/thirdparty/ch/boye/httpclientandroidlib/protocol/
H A DUriPatternMatcher.java126 String bestMatch = null; in lookup() local
130 if (bestMatch == null in lookup()
131 || (bestMatch.length() < pattern.length()) in lookup()
132 || (bestMatch.length() == pattern.length() && pattern.endsWith("*"))) { in lookup()
134 bestMatch = pattern; in lookup()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/thirdparty/ch/boye/httpclientandroidlib/protocol/
H A DUriPatternMatcher.java126 String bestMatch = null; in lookup() local
130 if (bestMatch == null in lookup()
131 || (bestMatch.length() < pattern.length()) in lookup()
132 || (bestMatch.length() == pattern.length() && pattern.endsWith("*"))) { in lookup()
134 bestMatch = pattern; in lookup()
/dports/games/tremulous/tremulous/tremulous-1.1.0-src/src/win32/
H A Dwin_glimp.c126 int bestMatch = 0; in GLW_ChoosePFD() local
216 if ( bestMatch ) in GLW_ChoosePFD()
221 bestMatch = i; in GLW_ChoosePFD()
227 bestMatch = i; in GLW_ChoosePFD()
237 bestMatch = i; in GLW_ChoosePFD()
243 bestMatch = i; in GLW_ChoosePFD()
254 bestMatch = i; in GLW_ChoosePFD()
260 bestMatch = i; in GLW_ChoosePFD()
285 bestMatch = i; in GLW_ChoosePFD()
289 if ( !bestMatch ) in GLW_ChoosePFD()
[all …]
/dports/sysutils/qdirstat/qdirstat-1.8/src/
H A DPathSelector.cpp133 PathSelectorItem * bestMatch = 0;
141 if ( ! bestMatch ||
142 current->path().length() > bestMatch->path().length() )
144 bestMatch = current;
149 if ( bestMatch )
152 setCurrentItem( bestMatch );
/dports/www/wt/wt-4.6.1/src/http/
H A DRequestHandler.C109 …Wt::EntryPointMatch bestMatch = wtConfig_.matchEntryPoint("", req.request_path, !config_.defaultSt… in handleRequest() local
111 if (bestMatch.entryPoint) { in handleRequest()
112 const Wt::EntryPoint& ep = *bestMatch.entryPoint; in handleRequest()
115 req.request_extra_path = req.request_path.substr(bestMatch.extra); in handleRequest()
117 req.request_path.resize(bestMatch.extra, '\0'); in handleRequest()
119 req.url_params = std::move(bestMatch.urlParams); in handleRequest()
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/thirdparty/ch/boye/httpclientandroidlib/impl/client/
H A DBasicCredentialsProvider.java80 AuthScope bestMatch = null; in matchCredentials() local
85 bestMatch = current; in matchCredentials()
88 if (bestMatch != null) { in matchCredentials()
89 creds = map.get(bestMatch); in matchCredentials()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/thirdparty/ch/boye/httpclientandroidlib/impl/client/
H A DBasicCredentialsProvider.java80 AuthScope bestMatch = null; in matchCredentials() local
85 bestMatch = current; in matchCredentials()
88 if (bestMatch != null) { in matchCredentials()
89 creds = map.get(bestMatch); in matchCredentials()
/dports/devel/doxygen/doxygen-1.9.3/src/
H A Dsymbolresolver.cpp287 const ClassDef *bestMatch=0; in getResolvedClassRec() local
328 return bestMatch; in getResolvedClassRec()
373 bestMatch = cd; in getResolvedSymbol()
394 bestMatch = cd; in getResolvedSymbol()
438 bestMatch = 0; in getResolvedSymbol()
445 bestMatch = 0; in getResolvedSymbol()
452 bestMatch = 0; in getResolvedSymbol()
474 bestMatch = 0; in getResolvedSymbol()
982 MemberDef *bestMatch=0; in substTypedef() local
1003 bestMatch = md; in substTypedef()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/IO/compression/
H A DFastEncoderWindow.cs311 int bestMatch = 0; // best match length found so far in FindMatch()
325 if (window[search + bestMatch] == wantChar) { in FindMatch()
334 if (j > bestMatch) { in FindMatch()
335 bestMatch = j; in FindMatch()
355 if (bestMatch == 3 && matchPos >= FastEncoderMatch3DistThreshold) { in FindMatch()
359 …Debug.Assert(bestMatch < MinMatch || matchPos < FastEncoderWindowSize, "Only find match inside Fas… in FindMatch()
360 return bestMatch; in FindMatch()
/dports/games/scummvm-tools/scummvm-tools-2.5.0/
H A Dtool.cpp161 InspectionMatch bestMatch = IMATCH_AWFUL; in addInputPath() local
167 bestMatch = IMATCH_PERFECT; in addInputPath()
170 } else if (bestMatch == IMATCH_AWFUL && match == IMATCH_POSSIBLE) { in addInputPath()
171 bestMatch = IMATCH_POSSIBLE; in addInputPath()
175 if (bestMatch == IMATCH_AWFUL) { in addInputPath()
209 InspectionMatch bestMatch = IMATCH_AWFUL; in inspectInput() local
215 bestMatch = match; in inspectInput()
219 return bestMatch; in inspectInput()
/dports/graphics/pecl-imagick-im7/imagick-3.5.1/tests/
H A D151_Imagick_subImageMatch_basic.phpt25 $bestMatch = 'not st';
26 $comparison = $imagick->subImageMatch($imagick2, $bestMatch, $similarity);
49 ksort($bestMatch);
50 foreach ($bestMatch as $key => $value) {
/dports/graphics/pecl-imagick/imagick-3.5.1/tests/
H A D151_Imagick_subImageMatch_basic.phpt25 $bestMatch = 'not st';
26 $comparison = $imagick->subImageMatch($imagick2, $bestMatch, $similarity);
49 ksort($bestMatch);
50 foreach ($bestMatch as $key => $value) {
/dports/devel/kdevelop/kdevelop-21.12.3/plugins/projectmanagerview/
H A Dprojectmanagerview.cpp256 QModelIndex bestMatch; in locateCurrentDocument() local
263 if (!bestMatch.isValid()) { in locateCurrentDocument()
264 bestMatch = index; in locateCurrentDocument()
268 bestMatch = index; in locateCurrentDocument()
275 if (bestMatch.isValid()) { in locateCurrentDocument()
277 m_ui->projectTreeView->setCurrentIndex(bestMatch); in locateCurrentDocument()
278 m_ui->projectTreeView->expand(bestMatch); in locateCurrentDocument()
279 m_ui->projectTreeView->scrollTo(bestMatch); in locateCurrentDocument()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Compression/src/System/IO/Compression/DeflateManaged/
H A DFastEncoderWindow.cs345 int bestMatch = 0; // best match length found so far in FindMatch()
360 if (_window[search + bestMatch] == wantChar) in FindMatch()
371 if (j > bestMatch) in FindMatch()
373 bestMatch = j; in FindMatch()
394 if (bestMatch == 3 && matchPos >= FastEncoderMatch3DistThreshold) in FindMatch()
399 …Debug.Assert(bestMatch < MinMatch || matchPos < FastEncoderWindowSize, "Only find match inside Fas… in FindMatch()
400 return bestMatch; in FindMatch()
/dports/databases/litestream/google-cloud-go-storage-v1.15.0/internal/gapicgen/gensnippets/
H A Dgensnippets.go118 bestMatch := ""
121 if len(path) > len(bestMatch) {
122 bestMatch = path
126 if bestMatch == "" {
129 log.Printf("The best match for %q is %q", pkg.ImportPath, bestMatch)
130 shortname = apiShortnames[bestMatch]
/dports/mail/nextcloud-mail/mail/vendor/amphp/amp/lib/
H A DStruct.php60 $bestMatch = "";
72 $bestMatch = $property;
76 return ($bestMatchPercentage >= $this->__propertySuggestThreshold) ? $bestMatch : "";
/dports/audio/libkeyfinder/libkeyfinder-2.2.4/src/
H A Dkeyclassifier.cpp59 key_t bestMatch = SILENCE; in classify() local
63 bestMatch = (key_t)i; in classify()
66 return bestMatch; in classify()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/cppeditor/
H A Dcppquickfixsettings.cpp405 CustomTemplate bestMatch; in findGetterSetterTemplate() local
433 bestMatch = cTemplate; in findGetterSetterTemplate()
440 if (!bestMatch.equalComparison.isEmpty()) in findGetterSetterTemplate()
441 t.equalComparison = bestMatch.equalComparison; in findGetterSetterTemplate()
442 if (!bestMatch.returnExpression.isEmpty()) in findGetterSetterTemplate()
443 t.returnExpression = bestMatch.returnExpression; in findGetterSetterTemplate()
444 if (!bestMatch.assignment.isEmpty()) in findGetterSetterTemplate()
445 t.assignment = bestMatch.assignment; in findGetterSetterTemplate()
446 if (!bestMatch.returnType.isEmpty()) in findGetterSetterTemplate()
447 t.returnTypeTemplate = bestMatch.returnType; in findGetterSetterTemplate()
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/golang.org/x/tools/tools-5eefd052ad72/internal/lsp/source/
H A Dimports.go59 bestMatch = -1 // length of longest shared prefix
82 if len(gen.Specs) == 0 && bestMatch == -1 {
101 if n > bestMatch || (bestMatch == 0 && !seenAnyThirdParty && isThirdPartyPath) {
102 bestMatch = n
/dports/www/firefox-esr/firefox-91.8.0/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/analytics/
H A DDefaultPlaybackSessionManager.java177 SessionDescriptor bestMatch = null;
185 bestMatch = sessionDescriptor;
188 && Util.castNonNull(bestMatch).adMediaPeriodId != null
190 bestMatch = sessionDescriptor;
194 if (bestMatch == null) {
196 bestMatch = new SessionDescriptor(sessionId, windowIndex, mediaPeriodId);
197 sessions.put(sessionId, bestMatch);
199 return bestMatch;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/
H A DPngDeflater.java351 Match bestMatch = new Match(-1, -1); in findLongestMatch() local
369 if (i > bestMatch.length) { in findLongestMatch()
370 bestMatch.length = i; in findLongestMatch()
371 bestMatch.distance = position - matchPosition; in findLongestMatch()
391 if (bestMatch.length < MIN_LENGTH || bestMatch.distance < 1 || bestMatch.distance > WINDOW) { in findLongestMatch()
395 return bestMatch; in findLongestMatch()
/dports/audio/amarok/amarok-3e11ccdd1417e70486eaaa84d8475182eec44c20/src/musicbrainz/
H A DMusicBrainzTagsItem.cpp343 MusicBrainzTagsItem *bestMatch = 0; in chooseBestMatch() local
349 bestMatch = item; in chooseBestMatch()
353 if( !bestMatch ) in chooseBestMatch()
356 bestMatch->setChosen( true ); in chooseBestMatch()
370 MusicBrainzTagsItem *bestMatch = 0; in chooseBestMatchFromRelease() local
382 bestMatch = item; in chooseBestMatchFromRelease()
387 if( bestMatch ) in chooseBestMatchFromRelease()
389 bestMatch->setChosen( true ); in chooseBestMatchFromRelease()

12345678910>>...37