Lines Matching refs:Results
45 ReplCompletionConsumer(std::vector<std::string> &Results, in ReplCompletionConsumer() argument
49 CCTUInfo(CCAllocator), Results(Results), CC(CC) {} in ReplCompletionConsumer()
65 std::vector<std::string> &Results; member in clang::ReplCompletionConsumer
76 std::vector<std::string> &Results; member in clang::CompletionContextHandler
83 std::vector<std::string> &Results) in CompletionContextHandler() argument
84 : CCC(CCC), Results(Results), S(S) {} in CompletionContextHandler()
92 Results.push_back(Result.Declaration->getName().str()); in handleDeclaration()
107 Results.push_back(VD->getName().str()); in handleDeclaration()
113 Results.push_back(VD->getName().str()); in handleDeclaration()
127 Results.push_back(Result.Keyword); in handleKeyword()
142 std::vector<std::string> &Results) in DotMemberAccessHandler() argument
143 : CompletionContextHandler(S, CCC, Results) {} in DotMemberAccessHandler()
155 Results.push_back(ID->getName().str()); in handleDeclaration()
175 CCH.reset(new DotMemberAccessHandler(S, Context, this->Results)); in ProcessCodeCompleteResults()
178 CCH.reset(new CompletionContextHandler(S, Context, this->Results)); in ProcessCodeCompleteResults()
206 std::sort(Results.begin(), Results.end()); in ProcessCodeCompleteResults()