Home
last modified time | relevance | path

Searched refs:TypedText (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DRegistry.h59 MatcherCompletion(StringRef TypedText, StringRef MatcherDecl, in MatcherCompletion()
61 : TypedText(TypedText), MatcherDecl(MatcherDecl), in MatcherCompletion()
65 return TypedText == Other.TypedText && MatcherDecl == Other.MatcherDecl;
69 std::string TypedText; member
/freebsd/contrib/llvm-project/llvm/include/llvm/LineEditor/
H A DLineEditor.h68 Completion(const std::string &TypedText, const std::string &DisplayText) in Completion()
69 : TypedText(TypedText), DisplayText(DisplayText) {} in Completion()
73 std::string TypedText; member
/freebsd/contrib/llvm-project/llvm/lib/LineEditor/
H A DLineEditor.cpp40 std::string CommonPrefix = Comps[0].TypedText; in getCommonPrefix()
42 size_t Len = std::min(CommonPrefix.size(), C.TypedText.size()); in getCommonPrefix()
45 if (CommonPrefix[CommonLen] != C.TypedText[CommonLen]) in getCommonPrefix()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp750 std::string TypedText = std::string(Name); in getMatcherCompletions() local
787 TypedText += "("; in getMatcherCompletions()
789 TypedText += ")"; in getMatcherCompletions()
791 TypedText += "\""; in getMatcherCompletions()
794 Completions.emplace_back(TypedText, OS.str(), MaxSpecificity); in getMatcherCompletions()