Home | History | Annotate | Download | only in Frontend

Lines Matching defs:Results

344   // Clear out the previous results.
349 SmallVector<Result, 8> Results;
353 CCTUInfo, Results);
359 for (Result &R : Results) {
2059 // If we're caching global code-completion results, and the top-level
2078 /// results from an ASTUnit with the code-completion results provided to it,
2115 CodeCompletionResult *Results,
2135 /// local code-completion results.
2137 CodeCompletionResult *Results,
2189 if (Results[I].Kind != Result::RK_Declaration)
2193 = Results[I].Declaration->getUnderlyingDecl()->getIdentifierNamespace();
2210 DeclarationName Name = Results[I].Declaration->getDeclName();
2220 Results,
2222 // Merge the results we were given with the results we cached.
2227 // Contains the set of names that are hidden by "local" completion results.
2240 // If we haven't added any results previously, do so now.
2242 CalculateHiddenNames(Context, Results, NumResults, S.Context,
2244 AllResults.insert(AllResults.end(), Results, Results + NumResults);
2297 // If we did not add any cached completion results, just forward the
2298 // results we were given to the next consumer.
2300 Next.ProcessCodeCompleteResults(S, Context, Results, NumResults);
2402 // code-completion results.