Searched refs:TypedText (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/ |
| H A D | Registry.h | 43 MatcherCompletion(StringRef TypedText, StringRef MatcherDecl, in MatcherCompletion() 45 : TypedText(TypedText), MatcherDecl(MatcherDecl), in MatcherCompletion() 49 return TypedText == Other.TypedText && MatcherDecl == Other.MatcherDecl; 53 std::string TypedText; member
|
| /freebsd-12.1/contrib/llvm/include/llvm/LineEditor/ |
| H A D | LineEditor.h | 69 Completion(const std::string &TypedText, const std::string &DisplayText) in Completion() 70 : TypedText(TypedText), DisplayText(DisplayText) {} in Completion() 74 std::string TypedText; member
|
| /freebsd-12.1/contrib/llvm/lib/LineEditor/ |
| H A D | LineEditor.cpp | 40 std::string CommonPrefix = Comps[0].TypedText; in getCommonPrefix() 44 size_t Len = std::min(CommonPrefix.size(), I->TypedText.size()); in getCommonPrefix() 47 if (CommonPrefix[CommonLen] != I->TypedText[CommonLen]) in getCommonPrefix()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Registry.cpp | 633 std::string TypedText = Name; in getMatcherCompletions() local 634 TypedText += "("; in getMatcherCompletions() 636 TypedText += ")"; in getMatcherCompletions() 638 TypedText += "\""; in getMatcherCompletions() 640 Completions.emplace_back(TypedText, OS.str(), MaxSpecificity); in getMatcherCompletions()
|
| H A D | Parser.cpp | 512 if (StringRef(Completion.TypedText).startswith(CompToken.Text) && in addCompletion() 514 Completions.emplace_back(Completion.TypedText.substr(CompToken.Text.size()), in addCompletion() 656 return A.TypedText < B.TypedText; in completeExpression()
|