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

  /external/chromium/base/
command_line.cc 105 const size_t equals_position = parameter_string.find( local
108 if (equals_position == CommandLine::StringType::npos) {
112 switch_start, equals_position - switch_start);
113 *switch_value = parameter_string.substr(equals_position + 1);
  /external/chromium_org/base/
command_line.cc 64 const size_t equals_position = string.find(kSwitchValueSeparator); local
65 *switch_string = string.substr(0, equals_position);
66 if (equals_position != CommandLine::StringType::npos)
67 *switch_value = string.substr(equals_position + 1);

Completed in 762 milliseconds