Home
last modified time | relevance | path

Searched refs:switches_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium/base/
Dcommand_line.cc221 switches_[switch_string] = switch_value; in InitFromArgv()
251 return switches_.find(lowercased_switch) != switches_.end(); in HasSwitch()
280 SwitchMap::const_iterator result = switches_.find(lowercased_switch); in GetSwitchValueNative()
282 if (result == switches_.end()) { in GetSwitchValueNative()
290 return switches_.size(); in GetSwitchCount()
297 switches_[switch_string] = L""; in AppendSwitch()
300 switches_[switch_string] = ""; in AppendSwitch()
320 switches_[switch_string] = value; in AppendSwitchNative()
326 switches_[switch_string] = value; in AppendSwitchNative()
341 for (i = other.switches_.begin(); i != other.switches_.end(); ++i) in AppendSwitches()
[all …]
Dcommand_line.h109 const SwitchMap& GetSwitches() const { return switches_; } in GetSwitches()
172 SwitchMap switches_; variable