Home
last modified time | relevance | path

Searched refs:CompleteMatch (Results 1 – 25 of 66) sorted by relevance

123

/dports/devel/hs-ormolu/ormolu-0.4.0.0/_cabal_deps/ghc-lib-parser-9.2.1.20211101/compiler/GHC/Types/
H A DCompleteMatch.hs4 module GHC.Types.CompleteMatch where
17 data CompleteMatch = CompleteMatch type
22 vanillaCompleteMatch :: UniqDSet ConLike -> CompleteMatch
23 vanillaCompleteMatch cls = CompleteMatch { cmConLikes = cls, cmResultTyCon = Nothing }
25 instance Outputable CompleteMatch where
26 ppr (CompleteMatch cls mty) = case mty of
30 type CompleteMatches = [CompleteMatch]
32 completeMatchAppliesAtType :: Type -> CompleteMatch -> Bool
/dports/devel/hs-ormolu/ormolu-0.4.0.0/_cabal_deps/ghc-lib-parser-9.2.1.20211101/compiler/GHC/Unit/Module/
H A DModDetails.hs12 import GHC.Types.CompleteMatch
37 , md_complete_matches :: [CompleteMatch]
H A DModGuts.hs28 import GHC.Types.CompleteMatch
72 mg_complete_matches :: [CompleteMatch], -- ^ Complete Matches
/dports/lang/ghc/ghc-8.10.7/compiler/iface/
H A DTcIface.hs-boot11 import HscTypes ( CompleteMatch )
19 tcIfaceCompleteSigs :: [IfaceCompleteMatch] -> IfL [CompleteMatch]
/dports/audio/vimpc/vimpc-0.09.2/src/window/
H A Dlyricswindow.cpp81 if (expression.CompleteMatch(currentLine)) in Print()
94 if (expression.CompleteMatch(currentLine)) in Print()
H A Dhelp.cpp79 if (expression.CompleteMatch(currentLine)) in Print()
129 if (expression.CompleteMatch(currentLine)) in Print()
H A Dlibrarywindow.cpp483 … if (((entry->type_ == Mpc::ArtistType) && (expression.CompleteMatch(entry->artist_) == true)) || in DetermineColour()
484 … ((entry->type_ == Mpc::AlbumType) && (expression.CompleteMatch(entry->album_) == true)) || in DetermineColour()
485 …((entry->type_ == Mpc::SongType) && (expression.CompleteMatch(entry->song_->FormatString(setting… in DetermineColour()
H A Doutputwindow.cpp95 if (expression.CompleteMatch(outputs_.Get(line)->Name()) == true) in DetermineColour()
H A Dplaylistwindow.cpp102 if (expression.CompleteMatch(song->FormatString(settings_.Get(Setting::SongFormat)))) in DetermineColour()
H A Dlistwindow.cpp162 if (expression.CompleteMatch(lists_->Get(line).name_) == true) in DetermineColour()
/dports/databases/kbibtex/kbibtex-0.9.2/src/data/
H A Dvalue.cpp95 else if (replaceMode == ValueItem::CompleteMatch && m_text == before) in replace()
152 } else if (replaceMode == ValueItem::CompleteMatch) { in replace()
255 else if (replaceMode == ValueItem::CompleteMatch && m_text == before) in replace()
310 else if (replaceMode == ValueItem::CompleteMatch && m_text == before) in replace()
370 else if (replaceMode == ValueItem::CompleteMatch && m_text == before) in replace()
H A Dvalue.h42 enum ReplaceMode {CompleteMatch, AnySubstring}; enumerator
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/ghc-lib-parser-8.10.7.20210828/compiler/main/
H A DHscTypes.hs150 CompleteMatch(..), CompleteMatchMap,
703 hptCompleteSigs :: HscEnv -> [CompleteMatch]
1340 md_complete_sigs :: [CompleteMatch]
1416 mg_complete_sigs :: [CompleteMatch], -- ^ Complete Matches
3165 data CompleteMatch = CompleteMatch { type
3173 instance Outputable CompleteMatch where
3174 ppr (CompleteMatch cl ty) = text "CompleteMatch:" <+> ppr cl
3180 type CompleteMatchMap = UniqFM [CompleteMatch]
3182 mkCompleteMatchMap :: [CompleteMatch] -> CompleteMatchMap
3185 extendCompleteMatchMap :: CompleteMatchMap -> [CompleteMatch]
[all …]
/dports/lang/ghc/ghc-8.10.7/compiler/main/
H A DHscTypes.hs150 CompleteMatch(..), CompleteMatchMap,
703 hptCompleteSigs :: HscEnv -> [CompleteMatch]
1340 md_complete_sigs :: [CompleteMatch]
1416 mg_complete_sigs :: [CompleteMatch], -- ^ Complete Matches
3165 data CompleteMatch = CompleteMatch { constructor
3173 instance Outputable CompleteMatch where
3174 ppr (CompleteMatch cl ty) = text "CompleteMatch:" <+> ppr cl
3180 type CompleteMatchMap = UniqFM [CompleteMatch]
3182 mkCompleteMatchMap :: [CompleteMatch] -> CompleteMatchMap
3185 extendCompleteMatchMap :: CompleteMatchMap -> [CompleteMatch]
[all …]
/dports/devel/hs-ormolu/ormolu-0.4.0.0/_cabal_deps/ghc-lib-parser-9.2.1.20211101/compiler/GHC/Driver/
H A DEnv.hs50 import GHC.Types.CompleteMatch
167 hptCompleteSigs :: HscEnv -> [CompleteMatch]
/dports/audio/vimpc/vimpc-0.09.2/src/
H A Dregex.hpp55 inline bool CompleteMatch(std::string match) const in CompleteMatch() function in Regex::RE
/dports/devel/hs-ormolu/ormolu-0.4.0.0/_cabal_deps/ghc-lib-parser-9.2.1.20211101/compiler/GHC/Unit/
H A DExternal.hs25 import GHC.Types.CompleteMatch
/dports/devel/hs-hlint/hlint-3.3.4/_cabal_deps/ghc-lib-parser-9.0.1.20210324/compiler/GHC/Driver/
H A DTypes.hs149 CompleteMatch(..), CompleteMatchMap,
732 hptCompleteSigs :: HscEnv -> [CompleteMatch]
1386 md_complete_sigs :: [CompleteMatch]
1462 mg_complete_sigs :: [CompleteMatch], -- ^ Complete Matches
3212 data CompleteMatch = CompleteMatch { type
3220 instance Outputable CompleteMatch where
3221 ppr (CompleteMatch cl ty) = text "CompleteMatch:" <+> ppr cl
3227 type CompleteMatchMap = UniqFM Name [CompleteMatch]
3229 mkCompleteMatchMap :: [CompleteMatch] -> CompleteMatchMap
3232 extendCompleteMatchMap :: CompleteMatchMap -> [CompleteMatch]
[all …]
/dports/lang/ghc/ghc-8.10.7/compiler/deSugar/
H A DDsMonad.hs265 -> IORef Messages -> IORef CostCentreState -> [CompleteMatch]
515 dsGetCompleteMatches :: TyCon -> DsM [CompleteMatch]
/dports/audio/vimpc/vimpc-0.09.2/src/mode/
H A Dsearch.cpp245 if (expression.CompleteMatch(searchPattern.c_str()) == true) in CheckForMatch()
/dports/devel/llvm80/llvm-8.0.1.src/utils/TableGen/
H A DDAGISelMatcher.h85 CompleteMatch, // Finish a match and update the results. enumerator
1036 : Matcher(CompleteMatch), Results(results.begin(), results.end()), in CompleteMatchMatcher()
1044 return N->getKind() == CompleteMatch; in classof()
/dports/devel/llvm70/llvm-7.0.1.src/utils/TableGen/
H A DDAGISelMatcher.h85 CompleteMatch, // Finish a match and update the results. enumerator
1032 : Matcher(CompleteMatch), Results(results.begin(), results.end()), in CompleteMatchMatcher()
1040 return N->getKind() == CompleteMatch; in classof()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/utils/TableGen/
H A DDAGISelMatcher.h87 CompleteMatch, // Finish a match and update the results. enumerator
1096 : Matcher(CompleteMatch), Results(results.begin(), results.end()), in CompleteMatchMatcher()
1104 return N->getKind() == CompleteMatch; in classof()
/dports/devel/llvm11/llvm-11.0.1.src/utils/TableGen/
H A DDAGISelMatcher.h87 CompleteMatch, // Finish a match and update the results. enumerator
1096 : Matcher(CompleteMatch), Results(results.begin(), results.end()), in CompleteMatchMatcher()
1104 return N->getKind() == CompleteMatch; in classof()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/utils/TableGen/
H A DDAGISelMatcher.h88 CompleteMatch, // Finish a match and update the results. enumerator
1104 : Matcher(CompleteMatch), Results(results.begin(), results.end()), in CompleteMatchMatcher()
1112 return N->getKind() == CompleteMatch; in classof()

123