HomeSort by relevance Sort by last modified time
    Searched refs:switch_name (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/chrome/browser/prefs/
command_line_pref_store.h 30 const char* switch_name; member in struct:CommandLinePrefStore::StringSwitchToPreferenceMapEntry
35 const char* switch_name; member in struct:CommandLinePrefStore::IntegerSwitchToPreferenceMapEntry
42 const char* switch_name; member in struct:CommandLinePrefStore::BooleanSwitchToPreferenceMapEntry
command_line_pref_store.cc 113 if (command_line_->HasSwitch(string_switch_map_[i].switch_name)) {
115 GetSwitchValueASCII(string_switch_map_[i].switch_name));
121 if (command_line_->HasSwitch(integer_switch_map_[i].switch_name)) {
123 integer_switch_map_[i].switch_name);
127 << integer_switch_map_[i].switch_name
137 if (command_line_->HasSwitch(boolean_switch_map_[i].switch_name)) {
  /external/chromium/chrome/browser/prefs/
command_line_pref_store.h 31 const char* switch_name; member in struct:CommandLinePrefStore::StringSwitchToPreferenceMapEntry
38 const char* switch_name; member in struct:CommandLinePrefStore::BooleanSwitchToPreferenceMapEntry
command_line_pref_store.cc 50 if (command_line_->HasSwitch(string_switch_map_[i].switch_name)) {
52 GetSwitchValueASCII(string_switch_map_[i].switch_name));
58 if (command_line_->HasSwitch(boolean_switch_map_[i].switch_name)) {
  /external/chromium/base/test/
test_timeouts.cc 17 // 3) the numerical value given by switch_name on the command line.
18 void InitializeTimeout(const char* switch_name, int min_value, int* value) {
20 if (CommandLine::ForCurrentProcess()->HasSwitch(switch_name)) {
22 CommandLine::ForCurrentProcess()->GetSwitchValueASCII(switch_name));
33 // 3) the numerical value given by switch_name on the command line.
34 void InitializeTimeout(const char* switch_name, int* value) {
35 InitializeTimeout(switch_name, 0, value);
  /external/chromium_org/base/test/
test_timeouts.cc 31 // 3) the numerical value given by switch_name on the command line multiplied
33 void InitializeTimeout(const char* switch_name, int min_value, int* value) {
35 if (CommandLine::ForCurrentProcess()->HasSwitch(switch_name)) {
37 CommandLine::ForCurrentProcess()->GetSwitchValueASCII(switch_name));
49 // 3) the numerical value given by switch_name on the command line multiplied
51 void InitializeTimeout(const char* switch_name, int* value) {
52 InitializeTimeout(switch_name, 0, value);
  /external/chromium_org/extensions/common/
feature_switch.h 51 FeatureSwitch(const char* switch_name,
54 const char* switch_name,
68 const char* switch_name,
feature_switch.cc 101 FeatureSwitch::FeatureSwitch(const char* switch_name,
103 Init(CommandLine::ForCurrentProcess(), switch_name, default_value); local
107 const char* switch_name,
109 Init(command_line, switch_name, default_value);
113 const char* switch_name,
116 switch_name_ = switch_name;
  /external/chromium_org/sync/tools/testserver/
run_sync_testserver.cc 55 // Gets a port value from the switch with name |switch_name| and writes it to
57 static bool GetPortFromSwitch(const std::string& switch_name, uint16* port) {
61 if (command_line->HasSwitch(switch_name)) {
62 std::string port_str = command_line->GetSwitchValueASCII(switch_name);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
ak4xxx-adda.h 46 char *switch_name; /* mixer switch*/ member in struct:snd_akm4xxx_dac_channel
52 char *switch_name; /* capture switch */ member in struct:snd_akm4xxx_adc_channel
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
ak4xxx-adda.h 46 char *switch_name; /* mixer switch*/ member in struct:snd_akm4xxx_dac_channel
52 char *switch_name; /* capture switch */ member in struct:snd_akm4xxx_adc_channel
  /external/chromium/chrome/browser/
process_singleton_uitest.cc 81 const std::string& switch_name = i->first; local
82 if (switch_name == switches::kUserDataDir ||
83 switch_name == switches::kFirstRun ||
84 switch_name == switches::kNoFirstRun)
87 command_line.AppendSwitchNative(switch_name, i->second);
  /external/chromium_org/chrome/browser/
process_singleton_browsertest.cc 79 const std::string& switch_name = i->first; local
80 if (switch_name == switches::kUserDataDir ||
81 switch_name == switches::kForceFirstRun ||
82 switch_name == switches::kNoFirstRun)
85 command_line.AppendSwitchNative(switch_name, i->second);
io_thread.cc 264 const std::string& switch_name) {
266 if (!base::StringToInt(command_line.GetSwitchValueASCII(switch_name),
    [all...]
about_flags.cc     [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
auto_enrollment_client.cc 49 // Returns the int value of the |switch_name| argument, clamped to the [0, 62]
51 int GetSanitizedArg(const std::string& switch_name) {
53 if (!command_line->HasSwitch(switch_name))
55 std::string value = command_line->GetSwitchValueASCII(switch_name);
58 LOG(ERROR) << "Switch \"" << switch_name << "\" is not a valid int. "
63 LOG(ERROR) << "Switch \"" << switch_name << "\" can't be negative. "
68 LOG(ERROR) << "Switch \"" << switch_name << "\" can't be greater than "
  /external/chromium_org/ash/desktop_background/
desktop_background_controller.cc 222 const char* switch_name = NULL; local
224 switch_name = use_large ? switches::kAshGuestWallpaperLarge :
227 switch_name = use_large ? switches::kAshDefaultWallpaperLarge :
230 file_path = command_line->GetSwitchValuePath(switch_name);
  /external/chromium_org/base/test/launcher/
unit_test_launcher.cc 453 bool GetSwitchValueAsInt(const std::string& switch_name, int* result) {
454 if (!CommandLine::ForCurrentProcess()->HasSwitch(switch_name))
458 CommandLine::ForCurrentProcess()->GetSwitchValueASCII(switch_name);
460 LOG(ERROR) << "Invalid value for " << switch_name << ": " << switch_value;
  /external/chromium_org/chrome/test/chromedriver/
capabilities.cc 190 std::string switch_name; local
191 if (!switches->GetString(i, &switch_name)) {
195 capabilities->exclude_switches.insert(switch_name);
  /external/chromium_org/chrome/installer/util/
installer_state.cc 164 // presence or absence of |switch_name| in that product's uninstall
168 const char* switch_name; member in struct:installer::__anon9519
186 conditional_additions[i].switch_name) ==

Completed in 3881 milliseconds