Searched refs:TypedText (Results 1 – 5 of 5) sorted by relevance
/openbsd/gnu/llvm/clang/include/clang/ASTMatchers/Dynamic/ |
H A D | Registry.h | 59 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
|
/openbsd/gnu/llvm/llvm/include/llvm/LineEditor/ |
H A D | LineEditor.h | 68 Completion(const std::string &TypedText, const std::string &DisplayText) in Completion() 69 : TypedText(TypedText), DisplayText(DisplayText) {} in Completion() 73 std::string TypedText; member
|
/openbsd/gnu/llvm/llvm/lib/LineEditor/ |
H A D | LineEditor.cpp | 40 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()
|
/openbsd/gnu/llvm/clang/lib/ASTMatchers/Dynamic/ |
H A D | Registry.cpp | 734 std::string TypedText = std::string(Name); in getMatcherCompletions() local 771 TypedText += "("; in getMatcherCompletions() 773 TypedText += ")"; in getMatcherCompletions() 775 TypedText += "\""; in getMatcherCompletions() 778 Completions.emplace_back(TypedText, OS.str(), MaxSpecificity); in getMatcherCompletions()
|
H A D | Parser.cpp | 740 if (StringRef(Completion.TypedText).startswith(CompToken.Text) && in addCompletion() 742 Completions.emplace_back(Completion.TypedText.substr(CompToken.Text.size()), in addCompletion() 901 return A.TypedText < B.TypedText; in completeExpression()
|