Searched refs:ostr (Results 1 – 3 of 3) sorted by relevance
47 std::ostream& operator<<(std::ostream& ostr, const Position& pos) { in operator <<() argument49 ostr << pos.filename() << ":"; in operator <<()51 return ostr << pos.line() << "." << pos.column(); in operator <<()94 std::ostream& operator<<(std::ostream& ostr, const Location& loc) { in operator <<() argument97 ostr << loc.begin(); in operator <<()99 ostr << "-" << last; in operator <<()101 ostr << "-" << last.line() << "." << last.column(); in operator <<()103 ostr << "-" << last.column(); in operator <<()105 return ostr; in operator <<()
54 std::ostream& operator<<(std::ostream& ostr, const Position& pos);82 std::ostream& operator<<(std::ostream& ostr, const Location& loc);
118 void usage(std::ostream& ostr, const std::string& program_name) { in usage() argument121 ostr << "Usage: " << program_name << " [global_options] {[workload_options] -w WORKLOAD_T}\n"; in usage()122 ostr << "WORKLOAD_T = {" << Command::CREATE << ", " << Command::DELETE << ", " << Command::MOVE in usage()124 ostr << "Global options\n"; in usage()125 ostr << "\t-v: Print version.\n"; in usage()126 ostr << "\t-p: Print parsed workloads and exit.\n"; in usage()127 ostr << "Workload options\n"; in usage()128 ostr << "\t-d DIR\t\t: Work directory for " << Command::CREATE << "/" << Command::DELETE in usage()130 ostr << "\t-f FROM-DIR\t: Source directory for " << Command::MOVE << "/" << Command::SYMLINK in usage()132 ostr << "\t-t TO-DIR\t: Destination directory for " << Command::MOVE << "/" << Command::SYMLINK in usage()[all …]