Searched defs:TypedText (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/ASTMatchers/Dynamic/
H A DRegistry.h39 MatcherCompletion(StringRef TypedText, StringRef MatcherDecl, argument
41 : TypedText(TypedText), MatcherDecl(MatcherDecl),
45 std::string TypedText; member in struct:clang::ast_matchers::dynamic::MatcherCompletion
58 return TypedText == Other.TypedText && MatcherDecl == Other.MatcherDecl;
/external/llvm/include/llvm/LineEditor/
H A DLineEditor.h69 Completion(const std::string &TypedText, const std::string &DisplayText) argument
70 : TypedText(TypedText), DisplayText(DisplayText) {}
74 std::string TypedText; member in struct:llvm::LineEditor::Completion
/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp556 std::string TypedText = Name; local
557 TypedText += "(";
559 TypedText += ")";
561 TypedText += "\"";
563 Completions.emplace_back(TypedText, OS.str(), MaxSpecificity);
/external/clang/unittests/ASTMatchers/Dynamic/
H A DRegistryTest.cpp115 bool hasCompletion(const CompVector &Comps, StringRef TypedText, argument
119 if (I->TypedText == TypedText &&

Completed in 131 milliseconds