Home | History | Annotate | Download | only in Dynamic

Lines Matching refs:Completion

143           // A code completion location in/immediately after an identifier will
144 // cause the portion of the identifier before the code completion
145 // location to become a code completion token.
340 // Do not return here. We need to continue to give completion suggestions.
437 // If the prefix of this completion matches the completion token, add it to
440 const MatcherCompletion& Completion) {
441 if (StringRef(Completion.TypedText).startswith(CompToken.Text) &&
442 Completion.Specificity > 0) {
443 Completions.emplace_back(Completion.TypedText.substr(CompToken.Text.size()),
444 Completion.MatcherDecl, Completion.Specificity);
477 for (const auto &Completion : S->getMatcherCompletions(AcceptedTypes)) {
478 addCompletion(CompToken, Completion);
481 for (const auto &Completion : getNamedValueCompletions(AcceptedTypes)) {
482 addCompletion(CompToken, Completion);