HomeSort by relevance Sort by last modified time
    Searched refs:switch_name (Results 1 - 14 of 14) 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 102 if (command_line_->HasSwitch(string_switch_map_[i].switch_name)) {
104 GetSwitchValueASCII(string_switch_map_[i].switch_name));
110 if (command_line_->HasSwitch(integer_switch_map_[i].switch_name)) {
112 integer_switch_map_[i].switch_name);
116 << integer_switch_map_[i].switch_name
126 if (command_line_->HasSwitch(boolean_switch_map_[i].switch_name)) {
  /external/chromium_org/base/test/
test_timeouts.cc 34 // 3) the numerical value given by switch_name on the command line multiplied
36 void InitializeTimeout(const char* switch_name, int min_value, int* value) {
38 if (CommandLine::ForCurrentProcess()->HasSwitch(switch_name)) {
40 CommandLine::ForCurrentProcess()->GetSwitchValueASCII(switch_name));
52 // 3) the numerical value given by switch_name on the command line multiplied
54 void InitializeTimeout(const char* switch_name, int* value) {
55 InitializeTimeout(switch_name, 0, value);
  /external/chromium_org/extensions/common/
feature_switch.h 52 // |switch_name| can be NULL, in which case the feature is controlled solely
54 FeatureSwitch(const char* switch_name,
57 const char* switch_name,
68 const char* switch_name,
feature_switch.cc 105 FeatureSwitch::FeatureSwitch(const char* switch_name,
107 Init(CommandLine::ForCurrentProcess(), switch_name, default_value); local
111 const char* switch_name,
113 Init(command_line, switch_name, default_value);
117 const char* switch_name,
120 switch_name_ = switch_name;
  /external/chromium_org/chrome/browser/chromeos/login/enrollment/
auto_enrollment_controller.cc 24 // Returns the int value of the |switch_name| argument, clamped to the [0, 62]
26 int GetSanitizedArg(const std::string& switch_name) {
28 if (!command_line->HasSwitch(switch_name))
30 std::string value = command_line->GetSwitchValueASCII(switch_name);
33 LOG(ERROR) << "Switch \"" << switch_name << "\" is not a valid int. "
38 LOG(ERROR) << "Switch \"" << switch_name << "\" can't be negative. "
43 LOG(ERROR) << "Switch \"" << switch_name << "\" can't be greater than "
  /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);
  /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);
upgrade_detector_impl.cc 224 std::string switch_name; local
227 switch_name = switches::kSimulateOutdatedNoAU;
229 switch_name = switches::kSimulateOutdated;
231 std::string build_date = command_line.GetSwitchValueASCII(switch_name);
io_thread.cc 280 const std::string& switch_name) {
282 if (!base::StringToInt(command_line.GetSwitchValueASCII(switch_name),
    [all...]
about_flags.cc     [all...]
  /external/chromium_org/base/test/launcher/
unit_test_launcher.cc 447 bool GetSwitchValueAsInt(const std::string& switch_name, int* result) {
448 if (!CommandLine::ForCurrentProcess()->HasSwitch(switch_name))
452 CommandLine::ForCurrentProcess()->GetSwitchValueASCII(switch_name);
454 LOG(ERROR) << "Invalid value for " << switch_name << ": " << switch_value;
  /external/chromium_org/chrome/test/chromedriver/
capabilities.cc 255 std::string switch_name; local
256 if (!switches->GetString(i, &switch_name)) {
260 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::__anon10320
186 conditional_additions[i].switch_name) ==

Completed in 634 milliseconds