HomeSort by relevance Sort by last modified time
    Searched defs:TypedText (Results 1 - 3 of 3) sorted by null

  /external/clang/include/clang/ASTMatchers/Dynamic/
Registry.h 39 MatcherCompletion(StringRef TypedText, StringRef MatcherDecl,
41 : TypedText(TypedText), MatcherDecl(MatcherDecl),
45 std::string TypedText;
58 return TypedText == Other.TypedText && MatcherDecl == Other.MatcherDecl;
  /external/llvm/include/llvm/LineEditor/
LineEditor.h 68 Completion(const std::string &TypedText, const std::string &DisplayText)
69 : TypedText(TypedText), DisplayText(DisplayText) {}
73 std::string TypedText;
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 484 std::string TypedText = I->first();
485 TypedText += "(";
487 TypedText += ")";
489 TypedText += "\"";
491 Completions.emplace_back(TypedText, OS.str(), MaxSpecificity);

Completed in 84 milliseconds