Home
last modified time | relevance | path

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

/third_party/gn/src/gn/
Dcommands.cc365 CommandSwitches CommandSwitches::s_global_switches_ = {}; member in commands::CommandSwitches
369 CHECK(!s_global_switches_.is_initialized()) in Init()
371 return s_global_switches_.InitFrom(cmdline); in Init()
376 CHECK(s_global_switches_.is_initialized()) in Get()
378 return s_global_switches_; in Get()
383 CHECK(s_global_switches_.is_initialized()) in Set()
385 CommandSwitches result = std::move(s_global_switches_); in Set()
386 s_global_switches_ = std::move(new_switches); in Set()
Dcommands.h216 static CommandSwitches s_global_switches_; variable