/external/chromium/base/ |
base_switches.h | 5 // Defines all the "base" command-line switches. 11 namespace switches { namespace 24 } // namespace switches
|
base_switches.cc | 7 namespace switches { namespace 53 } // namespace switches
|
/external/chromium/base/test/ |
test_switches.h | 8 namespace switches { namespace 10 // All switches in alphabetical order. The switches should be documented 20 } // namespace switches
|
/external/chromium/chrome/common/ |
chrome_switches.h | 5 // Defines all the command-line switches used by Chrome. 16 namespace switches { namespace 24 // All switches in alphabetical order. The switches should be documented 347 } // namespace switches
|
switch_utils.h | 14 namespace switches { namespace 18 std::map<std::string, CommandLine::StringType>* switches); 20 } // namespace switches
|
switch_utils.cc | 10 namespace switches { namespace 12 // Switches enumerated here will be removed when a background instance of 17 switches::kApp, 18 switches::kAppId, 19 switches::kFirstRun, 20 switches::kImport, 21 switches::kImportFromFile, 22 switches::kMakeDefaultBrowser 31 } // namespace switches
|
switch_utils_unittest.cc | 38 std::map<std::string, CommandLine::StringType> switches = local 40 EXPECT_EQ(7U, switches.size()); 42 switches::RemoveSwitchesForAutostart(&switches); 43 EXPECT_EQ(2U, switches.size());
|
chrome_switches.cc | 9 namespace switches { namespace 527 // These two flags are added around the switches about:flags adds to the 528 // command line. This is useful to see which switches were added by about:flags 530 const char kFlagSwitchesBegin[] = "flag-switches-begin"; 531 const char kFlagSwitchesEnd[] = "flag-switches-end"; [all...] |
/external/chromium/net/base/ |
net_switches.cc | 7 namespace switches { namespace 16 } // namespace switches
|
net_switches.h | 5 // Defines all the "net" command-line switches. 11 namespace switches { namespace 15 } // namespace switches
|
/external/chromium/chrome/browser/ |
browser_shutdown.cc | 211 std::map<std::string, CommandLine::StringType> switches = local 213 // Remove the switches that shouldn't persist across restart. 214 about_flags::RemoveFlagsSwitches(&switches); 215 switches::RemoveSwitchesForAutostart(&switches); 216 // Append the old switches to the new command line. 218 switches.begin(); i != switches.end(); ++i) { 226 if (!new_cl->HasSwitch(switches::kRestoreLastSession)) 227 new_cl->AppendSwitch(switches::kRestoreLastSession) [all...] |
gpu_data_manager.cc | 63 browser_command_line.HasSwitch(switches::kDisableAcceleratedCompositing), 64 browser_command_line.HasSwitch(switches::kEnableAccelerated2dCanvas), 65 browser_command_line.HasSwitch(switches::kDisableExperimentalWebGL), 66 browser_command_line.HasSwitch(switches::kDisableGLMultisampling)); 134 !command_line->HasSwitch(switches::kDisableExperimentalWebGL)) 135 command_line->AppendSwitch(switches::kDisableExperimentalWebGL); 137 !command_line->HasSwitch(switches::kDisableGLMultisampling)) 138 command_line->AppendSwitch(switches::kDisableGLMultisampling); 141 const char* switches[] = { local 142 switches::kDisableAcceleratedCompositing [all...] |
browser_process_impl.cc | 1046 std::map<std::string, CommandLine::StringType> switches = local [all...] |
/external/chromium/chrome/browser/net/ |
pref_proxy_config_service_unittest.cc | 271 for (unsigned int i = 0; i < arraysize(switches); i++) 272 switches[i] = other.switches[i]; 287 } switches[2]; member in struct:__anon2804::CommandLineTestParams 308 for (size_t i = 0; i < arraysize(GetParam().switches); i++) { 309 const char* name = GetParam().switches[i].name; 310 const char* value = GetParam().switches[i].value; 356 { switches::kNoProxyServer, NULL }, 368 { switches::kNoProxyServer, NULL }, 369 { switches::kProxyServer, "http://proxy:8888" } [all...] |
/external/qemu-pc-bios/vgabios/tests/ |
testbios.c | 32 Bit8u switches;
member in struct:__anon10144 282 biosarea->switches=peekb(0x40,0x88);
308 printf("switches: %02x\t",biosarea->switches);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
StatusBar.java | 73 int[] switches = new int[7]; local 77 switches, binders); 82 disable(switches[0]); 83 setSystemUiVisibility(switches[1]); 84 topAppWindowChanged(switches[2] != 0); 86 setImeWindowStatus(binders.get(0), switches[3], switches[4]); 87 setHardKeyboardStatus(switches[5] != 0, switches[6] != 0); 140 + " disabled=0x" + Integer.toHexString(switches[0] [all...] |