Home
last modified time | relevance | path

Searched refs:AppendArgument (Results 1 – 7 of 7) sorted by relevance

/third_party/cef/tests/ceftests/
Dcommand_line_unittest.cc112 command_line->AppendArgument("arg1"); in TEST()
113 command_line->AppendArgument("arg 2"); in TEST()
132 command_line->AppendArgument(arg1); in TEST()
133 command_line->AppendArgument(arg2); in TEST()
148 command_line->AppendArgument("arg1"); in TEST()
149 command_line->AppendArgument("arg 2"); in TEST()
/third_party/cef/libcef_dll/ctocpp/
Dcommand_line_ctocpp.h57 void AppendArgument(const CefString& argument) override;
Dcommand_line_ctocpp.cc384 void CefCommandLineCToCpp::AppendArgument(const CefString& argument) { in AppendArgument() function in CefCommandLineCToCpp
/third_party/cef/include/
Dcef_command_line.h199 virtual void AppendArgument(const CefString& argument) = 0;
/third_party/cef/libcef/common/
Dcommand_line_impl.h45 void AppendArgument(const CefString& argument) override;
Dcommand_line_impl.cc139 void CefCommandLineImpl::AppendArgument(const CefString& argument) { in AppendArgument() function in CefCommandLineImpl
/third_party/cef/libcef_dll/cpptoc/
Dcommand_line_cpptoc.cc370 CefCommandLineCppToC::Get(self)->AppendArgument(CefString(argument)); in command_line_append_argument()