Lines Matching refs:CommandLine
11 CefCommandLineImpl::CefCommandLineImpl(base::CommandLine* value, in CefCommandLineImpl()
14 : CefValueBase<CefCommandLine, base::CommandLine>( in CefCommandLineImpl()
31 return new CefCommandLineImpl(new base::CommandLine(const_value().argv()), in Copy()
56 base::CommandLine::StringVector argv; in Reset()
60 const base::CommandLine::SwitchMap& map = mutable_value()->GetSwitches(); in Reset()
61 const_cast<base::CommandLine::SwitchMap*>(&map)->clear(); in Reset()
66 const base::CommandLine::StringVector& cmd_argv = const_value().argv(); in GetArgv()
67 base::CommandLine::StringVector::const_iterator it = cmd_argv.begin(); in GetArgv()
105 const base::CommandLine::SwitchMap& map = const_value().GetSwitches(); in GetSwitches()
106 base::CommandLine::SwitchMap::const_iterator it = map.begin(); in GetSwitches()
133 const base::CommandLine::StringVector& vec = const_value().GetArgs(); in GetArguments()
134 base::CommandLine::StringVector::const_iterator it = vec.begin(); in GetArguments()
162 new base::CommandLine(base::CommandLine::NO_PROGRAM), true, false); in CreateCommandLine()
170 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); in GetGlobalCommandLine()