Home
last modified time | relevance | path

Searched refs:SwitchMap (Results 1 – 11 of 11) sorted by relevance

/third_party/cef/libcef/common/
Dcommand_line_impl.cc60 const base::CommandLine::SwitchMap& map = mutable_value()->GetSwitches(); in Reset()
61 const_cast<base::CommandLine::SwitchMap*>(&map)->clear(); in Reset()
103 void CefCommandLineImpl::GetSwitches(SwitchMap& switches) { in GetSwitches()
105 const base::CommandLine::SwitchMap& map = const_value().GetSwitches(); in GetSwitches()
106 base::CommandLine::SwitchMap::const_iterator it = map.begin(); in GetSwitches()
Dcommand_line_impl.h39 void GetSwitches(SwitchMap& switches) override;
/third_party/gn/src/base/
Dcommand_line.h41 using SwitchMap = std::map<std::string, StringType, std::less<>>; variable
178 const SwitchMap& GetSwitches() const { return switches_; } in GetSwitches()
243 SwitchMap switches_;
/third_party/cef/include/
Dcef_command_line.h60 typedef std::map<CefString, CefString> SwitchMap; typedef
167 virtual void GetSwitches(SwitchMap& switches) = 0;
/third_party/cef/tests/ceftests/
Dcommand_line_unittest.cc33 CefCommandLine::SwitchMap switches; in VerifyCommandLine()
39 CefCommandLine::SwitchMap::const_iterator it = switches.begin(); in VerifyCommandLine()
/third_party/cef/libcef/common/chrome/
Dchrome_main_delegate_cef.cc77 const base::CommandLine::SwitchMap& map = command_line->GetSwitches(); in BasicStartupComplete()
78 const_cast<base::CommandLine::SwitchMap*>(&map)->clear(); in BasicStartupComplete()
/third_party/cef/libcef_dll/ctocpp/
Dcommand_line_ctocpp.h51 void GetSwitches(SwitchMap& switches) override;
Dcommand_line_ctocpp.cc280 void CefCommandLineCToCpp::GetSwitches(SwitchMap& switches) { in GetSwitches()
/third_party/cef/libcef/common/alloy/
Dalloy_main_delegate.cc110 const base::CommandLine::SwitchMap& map = command_line->GetSwitches(); in BasicStartupComplete()
111 const_cast<base::CommandLine::SwitchMap*>(&map)->clear(); in BasicStartupComplete()
/third_party/gn/src/gn/
Dninja_build_writer.cc102 const base::CommandLine::SwitchMap& switches = our_cmdline.GetSwitches(); in GetSelfInvocationCommandLine()
103 for (base::CommandLine::SwitchMap::const_iterator i = switches.begin(); in GetSelfInvocationCommandLine()
Dcommand_help.cc265 const base::CommandLine::SwitchMap& switches = in RunHelp()