Home
last modified time | relevance | path

Searched refs:longestMatch (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTimeZoneGenericNames.java711 MatchInfo longestMatch = null; in findBestMatch() local
713 if (longestMatch == null || match.matchLength() > longestMatch.matchLength()) { in findBestMatch()
714 longestMatch = match; in findBestMatch()
717 if (longestMatch != null) { in findBestMatch()
718 bestMatch = createGenericMatchInfo(longestMatch); in findBestMatch()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTimeZoneGenericNames.java716 MatchInfo longestMatch = null; in findBestMatch() local
718 if (longestMatch == null || match.matchLength() > longestMatch.matchLength()) { in findBestMatch()
719 longestMatch = match; in findBestMatch()
722 if (longestMatch != null) { in findBestMatch()
723 bestMatch = createGenericMatchInfo(longestMatch); in findBestMatch()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz77support/
DLZ77Compressor.java429 matchLength = longestMatch(hashHead); in compress()
483 int matchLength = longestMatch(hashHead); in longestMatchForNextPosition()
532 private int longestMatch(int matchHead) { in longestMatch() method in LZ77Compressor
/external/llvm-project/clang/lib/Tooling/
DInterpolatingCompilationDatabase.cpp458 return {longestMatch(Filename, Paths).second, 0}; in pickWinner()
474 SubstringAndIndex longestMatch(StringRef Key, in longestMatch() function in clang::tooling::__anond7485b900111::FileIndex