HomeSort by relevance Sort by last modified time
    Searched refs:switches (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/libchrome/base/test/
test_switches.cc 8 const char switches::kTestLauncherBatchLimit[] = "test-launcher-batch-limit";
12 const char switches::kTestLauncherBotMode[] =
16 // automatically switches to single process mode when it detects presence
18 const char switches::kTestLauncherDebugLauncher[] =
23 const char switches::kTestLauncherForceRunBrokenTests[] =
27 const char switches::kTestLauncherFilterFile[] = "test-launcher-filter-file";
30 const char switches::kTestLauncherJobs[] = "test-launcher-jobs";
33 const char switches::kTestLauncherListTests[] = "test-launcher-list-tests";
36 const char switches::kTestLauncherOutput[] = "test-launcher-output";
39 const char switches::kTestLauncherRetryLimit[] = "test-launcher-retry-limit"
    [all...]
test_switches.h 8 namespace switches { namespace
10 // All switches in alphabetical order. The switches should be documented
31 } // namespace switches
test_timeouts.cc 97 InitializeTimeout(switches::kTestTinyTimeout, &tiny_timeout_ms_);
98 InitializeTimeout(switches::kUiTestActionTimeout,
102 InitializeTimeout(switches::kUiTestActionMaxTimeout, action_timeout_ms_,
106 InitializeTimeout(switches::kTestLauncherTimeout, action_timeout_ms_,
multiprocess_test.cc 24 if (!command_line.HasSwitch(switches::kTestChildProcess))
25 command_line.AppendSwitchASCII(switches::kTestChildProcess, procname);
58 command_line.AppendSwitchASCII(switches::kTestChildProcess, procname);
  /external/cros/system_api/switches/
chrome_switches.h 8 // This file defines switches that are used both by Chrome and login_manager.
11 namespace switches { namespace in namespace:chromeos
13 // Sentinel switches for policy injected flags.
14 const char kPolicySwitchesBegin[] = "policy-switches-begin";
15 const char kPolicySwitchesEnd[] = "policy-switches-end";
23 } // namespace switches
  /system/bt/service/
switches.h 22 namespace switches { namespace in namespace:bluetooth
24 // List of command-line switches used by the daemon.
41 } // namespace switches
settings.cpp 23 #include "service/switches.h"
37 const auto& switches = command_line->GetSwitches(); local
39 for (const auto& iter : switches) {
40 if (iter.first == switches::kCreateIPCSocketPath) {
50 } else if (iter.first == switches::kAndroidIPCSocketSuffix) {
61 // Check for libbase logging switches. These get processed by
63 else if (iter.first != ::switches::kV) {
64 LOG(ERROR) << "Unexpected command-line switches found: " << iter.first;
main.cpp 33 #include "service/switches.h"
61 if (command_line->HasSwitch(bluetooth::switches::kHelpLong) ||
62 command_line->HasSwitch(bluetooth::switches::kHelpShort)) {
63 LOG(INFO) << bluetooth::switches::kHelpMessage;
  /system/connectivity/shill/
logging.cc 29 namespace switches { namespace in namespace:shill
34 } // namespace switches
37 if (cl->HasSwitch(switches::kLogLevel)) {
38 string log_level = cl->GetSwitchValueASCII(switches::kLogLevel);
50 if (cl->HasSwitch(switches::kLogScopes)) {
51 string log_scopes = cl->GetSwitchValueASCII(switches::kLogScopes);
testrunner.cc 24 namespace switches { namespace
29 "Additional (non-gtest) switches:\n"
37 } // namespace switches
47 if (cl->HasSwitch(switches::kHelp)) {
48 std::cerr << switches::kHelpMessage;
shill_main.cc 44 namespace switches { namespace
78 "Available Switches: \n"
109 } // namespace switches
169 SetupLogging(cl->HasSwitch(switches::kForeground), daemon_name);
177 if (cl->HasSwitch(switches::kHelp)) {
178 LOG(INFO) << switches::kHelpMessage;
183 if (cl->HasSwitch(switches::kTechnologyOrder)) {
186 switches::kTechnologyOrder);
200 if (cl->HasSwitch(switches::kDeviceBlackList)) {
202 cl->GetSwitchValueASCII(switches::kDeviceBlackList), ","
    [all...]
  /external/llvm/utils/
findoptdiff 84 echo "Diff fails with these switches:"
85 echo $switches
88 echo 'Switches:' $switches_to_use >> $diffs
97 switches="$switches $sw"
98 if tryit "$switches" ; then
findmisopt 101 # Current set of switches is empty
113 echo "Return code not the same with these switches:"
114 echo $switches
122 echo "Diff fails with these switches:"
123 echo $switches
135 switches="$switches $sw"
136 if tryit "$switches" ; then
145 if [ "$switches" == " $all_switches" ] ; then
151 while [ ! -z "$switches" ] ; d
    [all...]
  /system/connectivity/dhcp_client/
main.cc 27 namespace switches { namespace in namespace:__anon72928
36 } // namespace switches
55 SetupLogging(cl->HasSwitch(switches::kForeground), daemon_name);
63 if (cl->HasSwitch(switches::kHelp)) {
64 LOG(INFO) << switches::kHelpMessage;
  /system/connectivity/shill/shims/
netfilter_queue_helper.cc 50 namespace switches { namespace
59 "Available Switches:\n"
70 } // namespace switches
96 if (cl->HasSwitch(switches::kHelp)) {
97 LOG(INFO) << switches::kHelpMessage;
102 if (!GetIntegerOption(cl, switches::kInputQueue, &input_queue) ||
109 if (!GetIntegerOption(cl, switches::kOutputQueue, &output_queue) ||
115 if (cl->HasSwitch(switches::kVerbose)) {
  /system/connectivity/shill/test-rpc-proxy/
proxy_main.cc 33 namespace switches { namespace in namespace:__anon73049
37 "Available Switches: \n"
40 } // namespace switches
47 if (cl->HasSwitch(switches::kHelp)) {
48 LOG(INFO) << switches::kHelpMessage;
53 if (!cl->HasSwitch(switches::kPort)) {
55 LOG(ERROR) << switches::kHelpMessage;
58 xml_rpc_port = std::stoi(cl->GetSwitchValueASCII(switches::kPort));
  /external/dbus-binding-generator/chromeos-dbus-bindings/
generate_chromeos_dbus_bindings.cc 27 namespace switches { namespace
37 "generate-chromeos-dbus-bindings itf1.xml [itf2.xml...] [switches]\n"
39 "Available Switches: \n"
51 } // namespace switches
133 if (cl->HasSwitch(switches::kHelp)) {
134 LOG(INFO) << switches::kHelpMessage;
141 LOG(ERROR) << switches::kHelpMessage;
146 if (cl->HasSwitch(switches::kServiceConfig)) {
147 std::string config_file = cl->GetSwitchValueASCII(switches::kServiceConfig);
168 if (cl->HasSwitch(switches::kMethodNames))
    [all...]
  /external/libchrome/base/
base_switches.cc 8 namespace switches { namespace
95 } // namespace switches
base_switches.h 5 // Defines all the "base" command-line switches.
12 namespace switches { namespace
39 } // namespace switches
sys_info.cc 25 if (command_line->HasSwitch(switches::kEnableLowEndDeviceMode))
27 if (command_line->HasSwitch(switches::kDisableLowEndDeviceMode))
  /system/connectivity/shill/setup_wifi/
main.cc 36 namespace switches { namespace in namespace:__anon73037
42 "Available Switches: \n"
49 } // namespace switches
120 if (cl->HasSwitch(switches::kHelp)) {
121 LOG(INFO) << switches::kHelpMessage;
125 if (!cl->HasSwitch(switches::kSSID)) {
127 LOG(ERROR) << switches::kHelpMessage;
131 std::string ssid = cl->GetSwitchValueASCII(switches::kSSID);
133 if (cl->HasSwitch(switches::kPassphrase)) {
134 psk = cl->GetSwitchValueASCII(switches::kPassphrase)
    [all...]
  /external/clang/include/clang/Parse/
Makefile 11 $(Echo) "Building Clang parser-related attribute string switches"
12 $(Verb) $(ClangTableGen) -gen-clang-attr-parser-string-switches -o $(call SYSPATH, $@) \
  /external/icu/icu4c/source/common/unicode/
uconfig.h 23 * Miscellaneous switches:
29 * Switches for excluding parts of ICU library code modules:
33 * The switches are fairly coarse, controlling large modules.
41 * libraries with these switches customized to your needs.
202 /* common/i18n library switches --------------------------------------------- */
226 # error Contradictory collation switches in uconfig.h.
233 /* common library switches -------------------------------------------------- */
258 # error Contradictory file io switches in uconfig.h.
330 # error Contradictory collation switches in uconfig.h.
367 /* i18n library switches ---------------------------------------------------- *
    [all...]
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
SfxSetup.cpp 139 UString archiveName, switches; local
143 NCommandLineParser::SplitCommandLine(GetCommandLineW(), archiveName, switches); local
148 switches.Trim();
150 if (MyStringCompareNoCase_N(switches, L"-y", 2) == 0)
153 switches = switches.Ptr(2);
154 switches.Trim();
266 if (!switches.IsEmpty())
270 executeParameters += switches;
316 if (!switches.IsEmpty())
    [all...]
  /external/libvpx/libvpx/tools/
vpx-astyle.sh 3 astyle --style=java --indent=spaces=2 --indent-switches\

Completed in 671 milliseconds

1 2 3