Lines Matching refs:string
9 #include <string>
23 std::string GetCommandLine();
27 void set_cmd_line(std::vector<std::string>* value) {
32 const std::vector<std::string>& get_cmd_line() { return cmd_line_; }
36 void set_open_files(std::set<std::string>* value) {
41 const std::set<std::string>& get_open_files() { return open_files_; }
44 // |value|. The caller should expect an empty string on return.
45 void set_cwd(std::string* value) {
50 const std::string& get_cwd() { return cwd_; }
57 std::vector<std::string> cmd_line_;
58 std::set<std::string> open_files_;
59 std::string cwd_;