/external/chromium_org/chrome/browser/first_run/ |
upgrade_util.cc | 7 #include "base/command_line.h" 12 CommandLine* command_line; member in namespace:__anon8683 19 command_line = new_command_line; 23 if (command_line) { 24 if (!RelaunchChromeBrowser(*command_line)) { 29 delete command_line; 30 command_line = NULL;
|
upgrade_util_mac.cc | 5 #include "base/command_line.h" 10 bool RelaunchChromeBrowser(const CommandLine& command_line) { 11 return mac_relauncher::RelaunchApp(command_line.argv());
|
/external/chromium_org/chrome/browser/extensions/api/command_line_private/ |
command_line_private_apitest.cc | 5 #include "base/command_line.h" 10 // chrome/test/data/extensions/api_test/command_line/basics/test.js. 15 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE { 16 ExtensionApiTest::SetUpCommandLine(command_line); 17 command_line->AppendSwitch(kTestCommandLineSwitch); 22 EXPECT_TRUE(RunComponentExtensionTest("command_line/basics")) << message_;
|
/external/chromium_org/chrome/browser/extensions/api/debugger/ |
debugger_extension_apitest.cc | 5 #include "base/command_line.h" 12 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 13 ExtensionApiTest::SetUpCommandLine(command_line); 14 command_line->AppendSwitch(switches::kSilentDebuggerExtensionAPI); 15 command_line->AppendSwitch(extensions::switches::kExtensionsOnChromeURLs);
|
/external/e2fsprogs/ext2ed/ |
ext2ed.h | 254 extern void help (char *command_line); 255 extern void set (char *command_line); 256 extern void set_device (char *command_line); 257 extern void set_offset (char *command_line); 258 extern void set_type (char *command_line); 259 extern void show (char *command_line); 260 extern void pgup (char *command_line); 261 extern void pgdn (char *command_line); 262 extern void redraw (char *command_line); 263 extern void remember (char *command_line); [all...] |
group_com.c | 21 void type_ext2_group_desc___next (char *command_line) 27 ptr=parse_word (command_line,buffer); 37 void type_ext2_group_desc___prev (char *command_line) 43 ptr=parse_word (command_line,buffer); 53 void type_ext2_group_desc___entry (char *command_line) 59 ptr=parse_word (command_line,buffer); 79 void type_ext2_group_desc___gocopy (char *command_line) 85 ptr=parse_word (command_line,buffer); 107 void type_ext2_group_desc___show (char *command_line) 115 show (command_line); [all...] |
/external/chromium_org/chrome/browser/app_mode/ |
app_mode_utils.cc | 8 #include "base/command_line.h" 42 CommandLine* command_line = CommandLine::ForCurrentProcess(); local 43 return command_line->HasSwitch(switches::kKioskMode) || 48 CommandLine* command_line = CommandLine::ForCurrentProcess(); local 49 return command_line->HasSwitch(switches::kForceAppMode) && 50 command_line->HasSwitch(switches::kAppId);
|
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/ |
guest_mode_options_ui_browsertest.cc | 5 #include "base/command_line.h" 20 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 21 command_line->AppendSwitch(chromeos::switches::kGuestSession); 22 command_line->AppendSwitchASCII(chromeos::switches::kLoginUser, 24 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, 26 command_line->AppendSwitch(switches::kIncognito);
|
/external/chromium_org/chrome/browser/extensions/api/terminal/ |
terminal_private_apitest.cc | 5 #include "base/command_line.h" 10 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 11 ExtensionApiTest::SetUpCommandLine(command_line); 12 command_line->AppendSwitchASCII(
|
/external/chromium_org/chrome/browser/extensions/ |
window_open_interactive_apitest.cc | 5 #include "base/command_line.h" 10 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 11 ExtensionApiTest::SetUpCommandLine(command_line); 12 command_line->AppendSwitch(switches::kEnablePanels);
|
/external/chromium_org/third_party/cython/src/bin/ |
cython | 8 main(command_line = 1)
|
/external/chromium_org/tools/memory_inspector/ |
memory_inspector_cli | 10 from memory_inspector.frontends import command_line namespace 14 sys.exit(command_line.main())
|
/external/chromium_org/content/common/ |
content_switches_internal.cc | 7 #include "base/command_line.h" 17 const base::CommandLine& command_line = local 21 if (command_line.HasSwitch(switches::kDisablePinch)) 29 return command_line.HasSwitch(switches::kEnableViewport) || 30 command_line.HasSwitch(switches::kEnablePinch);
|
/external/chromium_org/remoting/base/ |
service_urls.cc | 7 #include "base/command_line.h" 36 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local 37 CHECK(command_line); 38 if (command_line->HasSwitch(kDirectoryBaseUrlSwitch)) { 39 directory_base_url_ = command_line->GetSwitchValueASCII( 42 if (command_line->HasSwitch(kXmppServerAddressSwitch)) { 43 xmpp_server_address_ = command_line->GetSwitchValueASCII( 46 if (command_line->HasSwitch(kXmppServerDisableTlsSwitch)) { 49 if (command_line->HasSwitch(kDirectoryBotJidSwitch)) { 50 directory_bot_jid_ = command_line->GetSwitchValueASCII [all...] |
/external/chromium_org/content/child/ |
runtime_features.cc | 7 #include "base/command_line.h" 83 const base::CommandLine& command_line) { 84 if (command_line.HasSwitch(switches::kEnableExperimentalWebPlatformFeatures)) 89 if (command_line.HasSwitch(switches::kDisableDatabases)) 92 if (command_line.HasSwitch(switches::kDisableApplicationCache)) 95 if (command_line.HasSwitch(switches::kDisableDesktopNotifications)) 98 if (command_line.HasSwitch(switches::kDisableLocalStorage)) 101 if (command_line.HasSwitch(switches::kDisableSessionStorage)) 104 if (command_line.HasSwitch(switches::kDisableMediaSource)) 107 if (command_line.HasSwitch(switches::kDisableSharedWorkers) [all...] |
/external/chromium_org/chrome/browser/android/ |
chrome_startup_flags.cc | 12 #include "base/command_line.h" 23 CommandLine* command_line = CommandLine::ForCurrentProcess(); local 24 if (!command_line->HasSwitch(switch_string)) 25 command_line->AppendSwitch(switch_string); 30 CommandLine* command_line = CommandLine::ForCurrentProcess(); local 31 if (!command_line->HasSwitch(switch_string)) 32 command_line->AppendSwitchASCII(switch_string, value);
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
drive_notification_manager_factory_browsertest.cc | 7 #include "base/command_line.h" 23 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 24 command_line->AppendSwitch(chromeos::switches::kLoginManager); 25 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user"); 42 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 43 command_line->AppendSwitch(chromeos::switches::kGuestSession); 44 command_line->AppendSwitch(::switches::kIncognito); 45 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user"); 46 command_line->AppendSwitchASCII(chromeos::switches::kLoginUser,
|
/external/chromium_org/gpu/config/ |
gpu_driver_bug_list.h | 11 #include "base/command_line.h" 25 // |command_line|. 27 std::set<int>* workarounds, const CommandLine& command_line);
|
/external/chromium_org/chrome/test/base/ |
test_launcher_utils.cc | 7 #include "base/command_line.h" 23 void PrepareBrowserCommandLineForTests(CommandLine* command_line) { 25 command_line->AppendSwitch(switches::kDisableWebResources); 29 command_line->AppendSwitch(switches::kDisablePreconnect); 32 command_line->AppendSwitch(switches::kNoFirstRun); 36 command_line->AppendSwitch(switches::kNoDefaultBrowserCheck); 40 if (!command_line->HasSwitch(switches::kEnableLogging)) 41 command_line->AppendSwitchASCII(switches::kEnableLogging, "stderr"); 42 if (!command_line->HasSwitch(switches::kLoggingLevel)) 43 command_line->AppendSwitchASCII(switches::kLoggingLevel, "0"); // inf [all...] |
/external/chromium_org/tools/gn/bin/ |
gyp_flag_compare.py | 24 def FindAndRemoveArgWithValue(command_line, argname): 28 Modifies |command_line| in place. 30 if argname not in command_line: 32 location = command_line.index(argname) 33 value = command_line[location + 1] 34 command_line[location:location + 2] = [] 38 def MergeSpacedArgs(command_line, argname): 42 while i < len(command_line): 43 arg = command_line[i] 45 result.append(arg + ' ' + command_line[i + 1] [all...] |
/external/chromium_org/ui/base/touch/ |
touch_enabled.cc | 6 #include "base/command_line.h" 15 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local 17 command_line.HasSwitch(switches::kTouchEvents) ? 18 command_line.GetSwitchValueASCII(switches::kTouchEvents) :
|
/external/chromium_org/ui/native_theme/ |
native_theme_switches.cc | 5 #include "base/command_line.h" 21 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local 23 if (command_line.HasSwitch(switches::kDisableOverlayScrollbar)) 25 else if (command_line.HasSwitch(switches::kEnableOverlayScrollbar))
|
/external/chromium_org/chrome/browser/invalidation/ |
profile_invalidation_provider_factory_browsertest.cc | 6 #include "base/command_line.h" 55 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; 71 CommandLine* command_line) { 72 command_line->AppendSwitch(chromeos::switches::kLoginManager); 73 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user"); 91 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; 106 CommandLine* command_line) { 107 command_line->AppendSwitch(chromeos::switches::kGuestSession); 108 command_line->AppendSwitch(::switches::kIncognito); 109 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user") [all...] |
/external/chromium_org/base/test/ |
multiprocess_test.cc | 8 #include "base/command_line.h" 17 CommandLine command_line(base_command_line); 21 if (!command_line.HasSwitch(switches::kTestChildProcess)) 22 command_line.AppendSwitchASCII(switches::kTestChildProcess, procname); 25 LaunchProcess(command_line, options, &handle); 54 CommandLine command_line = GetMultiProcessTestChildBaseCommandLine(); local 55 command_line.AppendSwitchASCII(switches::kTestChildProcess, procname); 56 return command_line;
|
/external/chromium_org/ppapi/proxy/ |
ppp_messaging_proxy_perftest.cc | 5 #include "base/command_line.h" 59 CommandLine* command_line = CommandLine::ForCurrentProcess(); local 60 if (command_line) { 61 if (command_line->HasSwitch("seed")) { 62 base::StringToInt(command_line->GetSwitchValueASCII("seed"), 65 if (command_line->HasSwitch("string_count")) { 66 base::StringToInt(command_line->GetSwitchValueASCII("string_count"), 69 if (command_line->HasSwitch("max_string_size")) { 70 base::StringToInt(command_line->GetSwitchValueASCII("max_string_size"),
|