OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:commandline
(Results
51 - 75
of
2577
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/chrome/browser/extensions/
startup_helper.h
11
class
CommandLine
;
30
bool PackExtension(const
CommandLine
& cmd_line);
36
bool ValidateCrx(const
CommandLine
& cmd_line, std::string* error);
41
bool UninstallExtension(const
CommandLine
& cmd_line, Profile* profile);
46
bool InstallFromWebstore(const
CommandLine
& cmd_line, Profile* profile);
54
void LimitedInstallFromWebstore(const
CommandLine
& cmd_line, Profile* profile,
59
std::string WebStoreIdFromLimitedInstallCmdLine(const
CommandLine
& cmd_line);
/external/chromium_org/win8/delegate_execute/
delegate_execute_util_unittest.cc
22
CommandLine
cl(
CommandLine
::NO_PROGRAM);
27
EXPECT_EQ(
CommandLine
::StringType(), cl.GetCommandLineString());
39
const base::FilePath this_exe(
CommandLine
::ForCurrentProcess()->GetProgram());
41
CommandLine
cl(
CommandLine
::NO_PROGRAM);
67
CommandLine
::StringVector args(cl.GetArgs());
/external/chromium_org/base/
command_line.h
12
// There is a singleton read-only
CommandLine
that represents the command line
30
class BASE_EXPORT
CommandLine
{
45
explicit
CommandLine
(NoProgram no_program);
48
explicit
CommandLine
(const base::FilePath& program);
51
CommandLine
(int argc, const CharType* const* argv);
52
explicit
CommandLine
(const StringVector& argv);
54
~
CommandLine
();
67
// Initialize the current process
CommandLine
singleton. On Windows, ignores
75
// Destroys the current process
CommandLine
singleton. This is necessary if
81
// Get the singleton
CommandLine
representing the current process'
[
all
...]
/external/chromium_org/chrome/browser/chromeos/system_logs/
touch_log_source.cc
32
std::vector<std::pair<std::string,
CommandLine
> > commands;
33
CommandLine
command =
34
CommandLine
(base::FilePath("/opt/google/touchpad/tpcontrol"));
39
CommandLine
(base::FilePath("/opt/google/touchpad/generate_userfeedback"));
42
command =
CommandLine
(
command_line_log_source.cc
25
std::vector<std::pair<std::string,
CommandLine
> > commands;
27
CommandLine
command(base::FilePath("/usr/bin/amixer"));
32
command =
CommandLine
((base::FilePath("/usr/bin/cras_test_client")));
36
command =
CommandLine
((base::FilePath("/usr/bin/cras_test_client")));
46
command =
CommandLine
((base::FilePath("/usr/bin/printenv")));
49
command =
CommandLine
(base::FilePath("/usr/bin/setxkbmap"));
54
command =
CommandLine
(base::FilePath("/usr/bin/xinput"));
59
command =
CommandLine
(base::FilePath("/usr/bin/xrandr"));
65
command =
CommandLine
(base::FilePath("/bin/sh"));
/external/chromium_org/chrome/browser/extensions/api/activity_log_private/
activity_log_private_apitest.cc
24
ActivityLogApiTest() : saved_cmdline_(
CommandLine
::NO_PROGRAM) {}
28
*
CommandLine
::ForCurrentProcess() = saved_cmdline_;
31
virtual void SetUpCommandLine(
CommandLine
* command_line) OVERRIDE {
33
saved_cmdline_ = *
CommandLine
::ForCurrentProcess();
46
CommandLine
saved_cmdline_;
/external/chromium_org/cloud_print/gcp20/prototype/
command_line_reader.cc
23
CommandLine
::ForCurrentProcess()->GetSwitchValueASCII(kHttpPortSwitch);
41
CommandLine
::ForCurrentProcess()->GetSwitchValueASCII(kTtlSwitch),
52
CommandLine
::ForCurrentProcess()->GetSwitchValueASCII(kServiceNameSwitch);
59
CommandLine
::ForCurrentProcess()->GetSwitchValueASCII(kDomainNameSwitch);
81
CommandLine
::ForCurrentProcess()->GetSwitchValueASCII(kStatePathSwitch);
/external/chromium/base/
command_line_unittest.cc
25
CommandLine
cl =
CommandLine
::FromString(
42
CommandLine
cl(arraysize(argv), argv);
80
const std::vector<
CommandLine
::StringType>& args = cl.args();
83
std::vector<
CommandLine
::StringType>::const_iterator iter = args.begin();
107
CommandLine
cl =
CommandLine
::FromString(L"");
111
CommandLine
cl(0, NULL);
129
CommandLine
cl(FilePath(FILE_PATH_LITERAL("Program")));
159
// on the target
CommandLine
object and the switches from the sourc
[
all
...]
/external/chromium_org/base/android/javatests/src/org/chromium/base/
CommandLineTest.java
32
CommandLine
.reset();
36
CommandLine
cl =
CommandLine
.getInstance();
51
CommandLine
cl =
CommandLine
.getInstance();
77
String[] actual =
CommandLine
.tokenizeQuotedAruments(toParse.toCharArray());
87
CommandLine
.init(INIT_SWITCHES);
95
CommandLine
.init(
CommandLine
.tokenizeQuotedAruments(INIT_SWITCHES_BUFFER));
/external/chromium_org/chrome/browser/
about_flags_unittest.cc
214
CommandLine
command_line(
CommandLine
::NO_PROGRAM);
227
CommandLine
command_line2(
CommandLine
::NO_PROGRAM);
239
CommandLine
command_line(
CommandLine
::NO_PROGRAM);
242
CommandLine
new_command_line(
CommandLine
::NO_PROGRAM);
257
CommandLine
another_command_line(
CommandLine
::NO_PROGRAM)
[
all
...]
browser_process_platform_part_base.h
10
class
CommandLine
;
22
const
CommandLine
& command_line);
chrome_browser_field_trials.h
15
explicit ChromeBrowserFieldTrials(const
CommandLine
& command_line);
27
const
CommandLine
& parsed_command_line_;
chrome_browser_field_trials_desktop.h
11
class
CommandLine
;
21
void SetupDesktopFieldTrials(const
CommandLine
& parsed_command_line,
/external/chromium_org/mojo/common/test/
multiprocess_test_base.cc
53
CommandLine
unused(
CommandLine
::NO_PROGRAM);
83
CommandLine
MultiprocessTestBase::MakeCmdLine(const std::string& procname,
87
CommandLine
command_line =
100
CHECK(
CommandLine
::InitializedForCurrentProcess());
105
*
CommandLine
::ForCurrentProcess());
/external/chromium_org/tools/gn/
gn_main.cc
23
std::vector<std::string> GetArgs(const
CommandLine
& cmdline) {
24
CommandLine
::StringVector in_args = cmdline.GetArgs();
40
CommandLine
::set_slash_is_not_a_switch();
42
CommandLine
::Init(argc, argv);
44
const
CommandLine
& cmdline = *
CommandLine
::ForCurrentProcess();
/external/chromium/chrome/browser/extensions/
extension_webrequest_apitest.cc
20
CommandLine
::ForCurrentProcess()->AppendSwitch(
27
CommandLine
::ForCurrentProcess()->AppendSwitch(
/external/chromium/chrome/browser/first_run/
upgrade_util_win.h
9
class
CommandLine
;
23
bool DoUpgradeTasks(const
CommandLine
& command_line);
/external/chromium/chrome/browser/net/
proxy_service_factory.h
11
class
CommandLine
;
33
const
CommandLine
& command_line);
/external/chromium/chrome/browser/printing/
print_dialog_cloud.h
15
class
CommandLine
;
27
bool CreatePrintDialogFromCommandLine(const
CommandLine
& command_line);
/external/chromium/chrome/browser/sync/notifier/
sync_notifier_factory.h
12
class
CommandLine
;
33
const
CommandLine
& command_line,
/external/chromium_org/ash/shell/content_client/
shell_main_delegate.cc
22
const
CommandLine
& command_line = *
CommandLine
::ForCurrentProcess();
/external/chromium_org/chrome/browser/first_run/
upgrade_util_win.h
8
class
CommandLine
;
22
bool DoUpgradeTasks(const
CommandLine
& command_line);
/external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service_factory.h
12
class
CommandLine
;
29
static bool UseSyncedNotifications(
CommandLine
* command_line);
/external/chromium_org/chrome/browser/prefs/
pref_service_syncable_factory.h
10
class
CommandLine
;
36
void SetCommandLine(
CommandLine
* command_line);
/external/chromium_org/chrome/browser/ui/
browser_commands_mac.cc
20
const
CommandLine
* command_line =
CommandLine
::ForCurrentProcess();
Completed in 706 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>