• Home
  • Raw
  • Download

Lines Matching full:std

30     std::unordered_map<std::string, std::shared_ptr<CodeFixRegistration>> errorCodeToFixes_;
31 std::unordered_map<std::string, std::shared_ptr<CodeFixRegistration>> fixIdToRegistration_;
34std::unordered_map<std::string, std::shared_ptr<CodeFixRegistration>> GetErrorCodeToFixes() const in GetErrorCodeToFixes()
38std::unordered_map<std::string, std::shared_ptr<CodeFixRegistration>> GetFixIdToRegistration() con… in GetFixIdToRegistration()
43 …void RegisterCodeFix(const std::string &aliasName, std::unique_ptr<CodeFixRegistration> registrati…
46 std::string FormatWithArgs(const std::string &text);
47 std::string DiagnosticToString(const DiagnosticAndArguments &diag);
48 CodeFixAction CreateCodeFixActionWorker(std::string &fixName, std::string &description,
49std::vector<FileTextChanges> &changes, std::string &fixId,
50std::string &fixAllDescription, std::vector<CodeActionCommand> command);
52 …CodeFixAction CreateCodeFixActionWithoutFixAll(std::string &fixName, std::vector<FileTextChanges> …
54 CodeFixAction CreateCodeFixAction(std::string fixName, std::vector<FileTextChanges> changes,
55 DiagnosticAndArguments &description, std::string fixId,
57 std::vector<CodeActionCommand> &command);
58 std::string GetFileName(const std::string &filePath);
59 std::vector<std::string> GetSupportedErrorCodes();
62 …bool ShouldIncludeFixAll(const CodeFixRegistration &registration, const std::vector<Diagnostic> &d…
63 std::vector<CodeFixAction> GetFixes(const CodeFixContext &context);
64 void EachDiagnostic(const CodeFixAllContext &context, const std::vector<int> &errorCodes,
65 const std::function<void(const DiagnosticWithLocation &)> &cb);
66 …CombinedCodeActions CodeFixAll(const CodeFixAllContext &context, const std::vector<int> &errorCode…
67std::function<void(ChangeTracker &, const DiagnosticWithLocation &)> use);
68 …FileTextChanges CreateFileTextChanges(const std::string &fileName, const std::vector<TextChange> &…
75 constexpr explicit AutoCodeFixRegister(const std::string &name, std::unique_ptr<T> registration) in AutoCodeFixRegister()
77 CodeFixProvider::Instance().RegisterCodeFix(name, std::move(registration)); in AutoCodeFixRegister()
80 …constexpr explicit AutoCodeFixRegister(const std::string &name) : AutoCodeFixRegister(name, std::m… in AutoCodeFixRegister()