Lines Matching refs:Ctor
46 llvm::Optional<MatcherCtor> Ctor = lookupMatcherCtor(MatcherName); in constructMatcher() local
48 if (Ctor) in constructMatcher()
49 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(), Error); in constructMatcher()
59 llvm::Optional<MatcherCtor> Ctor = lookupMatcherCtor(MatcherName); in constructMatcher() local
61 if (Ctor) in constructMatcher()
62 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(Arg1), Error); in constructMatcher()
73 llvm::Optional<MatcherCtor> Ctor = lookupMatcherCtor(MatcherName); in constructMatcher() local
75 if (Ctor) in constructMatcher()
76 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(Arg1, Arg2), in constructMatcher()
92 llvm::Optional<MatcherCtor> Ctor = lookupMatcherCtor(MatcherName1); in getCompletions() local
93 if (!Ctor) in getCompletions()
95 Context.push_back(std::make_pair(*Ctor, ArgNo1)); in getCompletions()
103 llvm::Optional<MatcherCtor> Ctor = lookupMatcherCtor(MatcherName1); in getCompletions() local
104 if (!Ctor) in getCompletions()
106 Context.push_back(std::make_pair(*Ctor, ArgNo1)); in getCompletions()
107 Ctor = lookupMatcherCtor(MatcherName2); in getCompletions()
108 if (!Ctor) in getCompletions()
110 Context.push_back(std::make_pair(*Ctor, ArgNo2)); in getCompletions()