Home
last modified time | relevance | path

Searched refs:command_line_string (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/tools/quickbook/src/
Dquickbook.cpp279 using quickbook::detail::command_line_string; in main()
312 ("input-file", PO_VALUE<command_line_string>(), "input file") in main()
313 ("output-format", PO_VALUE<command_line_string>(), "boostbook, html, onehtml") in main()
314 … ("output-file", PO_VALUE<command_line_string>(), "output file (for boostbook or onehtml)") in main()
315 ("output-dir", PO_VALUE<command_line_string>(), "output directory (for html)") in main()
317 ("output-deps", PO_VALUE<command_line_string>(), "output dependency file") in main()
319 ("include-path,I", PO_VALUE< std::vector<command_line_string> >(), "include path") in main()
320 ("define,D", PO_VALUE< std::vector<command_line_string> >(), "define macro") in main()
321 ("image-location", PO_VALUE<command_line_string>(), "image location") in main()
325 … ("boost-root-path", PO_VALUE<command_line_string>(), "boost root (file path or absolute URL)") in main()
[all …]
Dpath.hpp45 typedef std::wstring command_line_string; typedef
47 typedef std::string command_line_string;
50 std::string command_line_to_utf8(command_line_string const&);
51 fs::path command_line_to_path(command_line_string const&);
75 explicit path_or_url(command_line_string const&);
79 path_or_url& operator=(command_line_string const&);
Dpath.cpp216 std::string command_line_to_utf8(command_line_string const& x) in command_line_to_utf8()
221 std::string command_line_to_utf8(command_line_string const& x)
250 fs::path command_line_to_path(command_line_string const& path) in command_line_to_path()
291 fs::path command_line_to_path(command_line_string const& path) in command_line_to_path()
324 path_or_url::path_or_url(command_line_string const& x) in path_or_url()
365 path_or_url& path_or_url::operator=(command_line_string const& x) in operator =()
/third_party/gn/src/base/
Dcommand_line.cc428 std::u16string command_line_string; in ParseFromString() local
429 TrimWhitespace(command_line, TRIM_ALL, &command_line_string); in ParseFromString()
430 if (command_line_string.empty()) in ParseFromString()
436 reinterpret_cast<LPCWSTR>(command_line_string.c_str()), &num_args)); in ParseFromString()