Searched refs:TypedText (Results 1 – 5 of 5) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/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
|
/netbsd-src/external/apache2/llvm/dist/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
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/LineEditor/ |
H A D | LineEditor.cpp | 39 std::string CommonPrefix = Comps[0].TypedText; in getCommonPrefix() 43 size_t Len = std::min(CommonPrefix.size(), I->TypedText.size()); in getCommonPrefix() 46 if (CommonPrefix[CommonLen] != I->TypedText[CommonLen]) in getCommonPrefix()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/ |
H A D | Registry.cpp | 709 std::string TypedText = std::string(Name); in getMatcherCompletions() local 746 TypedText += "("; in getMatcherCompletions() 748 TypedText += ")"; in getMatcherCompletions() 750 TypedText += "\""; in getMatcherCompletions() 753 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()
|