OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:switch_string
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/base/
command_line.cc
54
// Fills in |
switch_string
| and |switch_value| if |string| is a switch.
55
// This will preserve the input switch prefix in the output |
switch_string
|.
57
CommandLine::StringType*
switch_string
,
59
switch_string
->clear();
66
*
switch_string
= string.substr(0, equals_position);
84
CommandLine::StringType
switch_string
;
local
87
if (parse_switches && IsSwitch(arg, &
switch_string
, &switch_value)) {
89
command_line->AppendSwitchNative(UTF16ToASCII(
switch_string
),
92
command_line->AppendSwitchNative(
switch_string
, switch_value);
277
bool CommandLine::HasSwitch(const base::StringPiece&
switch_string
) const
278
DCHECK_EQ(ToLowerASCII(
switch_string
),
switch_string
);
local
308
DCHECK_EQ(ToLowerASCII(
switch_string
),
switch_string
);
local
452
StringType
switch_string
;
local
[
all
...]
command_line.h
155
bool HasSwitch(const base::StringPiece&
switch_string
) const;
161
std::string GetSwitchValueASCII(const base::StringPiece&
switch_string
) const;
162
FilePath GetSwitchValuePath(const base::StringPiece&
switch_string
) const;
163
StringType GetSwitchValueNative(const base::StringPiece&
switch_string
) const;
170
void AppendSwitch(const std::string&
switch_string
);
171
void AppendSwitchPath(const std::string&
switch_string
,
173
void AppendSwitchNative(const std::string&
switch_string
,
175
void AppendSwitchASCII(const std::string&
switch_string
,
Completed in 95 milliseconds