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

1 2 3 4 5

  /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
32 } // 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.
44 } // namespace switches
settings.cc 23 #include "service/switches.h"
34 const auto& switches = command_line->GetSwitches(); local
36 for (const auto& iter : switches) {
37 if (iter.first == switches::kCreateIPCSocketPath) {
47 } else if (iter.first == switches::kAndroidIPCSocketSuffix) {
57 } else if (iter.first == switches::kEnableOnStart) {
63 LOG(ERROR) << "Invalid value for " << switches::kEnableOnStart << ": "
68 // Check for libbase logging switches. These get processed by
70 else if (iter.first != ::switches::kV) {
71 LOG(ERROR) << "Unexpected command-line switches found: " << iter.first
    [all...]
main.cc 24 #include "service/switches.h"
52 if (command_line->HasSwitch(bluetooth::switches::kHelpLong) ||
53 command_line->HasSwitch(bluetooth::switches::kHelpShort)) {
54 LOG(INFO) << bluetooth::switches::kHelpMessage;
  /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...]
  /external/swiftshader/third_party/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 102 # Current set of switches is empty
114 echo "Return code not the same with these switches:"
115 echo $switches
123 echo "Diff fails with these switches:"
124 echo $switches
136 switches="$switches $sw"
137 if tryit "$switches" ; then
146 if [ "$switches" == " $all_switches" ] ; then
152 while [ ! -z "$switches" ] ; do
    [all...]
  /external/libchrome/base/
base_switches.cc 8 namespace switches { namespace
114 } // namespace switches
base_switches.h 5 // Defines all the "base" command-line switches.
12 namespace switches { namespace
42 } // namespace switches
sys_info.cc 25 if (command_line->HasSwitch(switches::kEnableLowEndDeviceMode))
27 if (command_line->HasSwitch(switches::kDisableLowEndDeviceMode))
  /external/icu/icu4c/source/common/unicode/
uconfig.h 25 * Miscellaneous switches:
31 * Switches for excluding parts of ICU library code modules:
35 * The switches are fairly coarse, controlling large modules.
43 * libraries with these switches customized to your needs.
204 /* common/i18n library switches --------------------------------------------- */
228 # error Contradictory collation switches in uconfig.h.
235 /* common library switches -------------------------------------------------- */
260 # error Contradictory file io switches in uconfig.h.
332 # error Contradictory collation switches in uconfig.h.
369 /* i18n library switches ---------------------------------------------------- *
    [all...]
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
SfxSetup.cpp 146 UString archiveName, switches; local
150 NCommandLineParser::SplitCommandLine(GetCommandLineW(), archiveName, switches); local
155 switches.Trim();
157 if (switches.IsPrefixedBy_Ascii_NoCase("-y"))
160 switches = switches.Ptr(2);
161 switches.Trim();
275 if (!switches.IsEmpty())
278 executeParameters += switches;
324 if (!switches.IsEmpty())
    [all...]
  /external/python/cpython2/Lib/test/
test_timeit.py 216 def run_main(self, seconds_per_increment=1.0, switches=None, timer=None):
219 if switches is None:
222 args = switches[:]
232 s = self.run_main(switches=['--bad-switch'])
247 s = self.run_main(seconds_per_increment=0.0000025, switches=['-n100'])
251 s = self.run_main(seconds_per_increment=2.0, switches=['-n35'])
256 switches=['-n35', '-s', 'print("CustomSetup")'])
261 s = self.run_main(seconds_per_increment=60.0, switches=['-r9'])
265 s = self.run_main(seconds_per_increment=60.0, switches=['-r-5'])
270 s = self.run_main(switches=['-h']
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
BluetoothDetailsProfilesControllerTest.java 210 private void verifyProfileSwitchTitles(List<SwitchPreference> switches) {
211 for (int i = 0; i < switches.size(); i++) {
214 assertThat(switches.get(i).getTitle()).isEqualTo(expectedTitle);
230 List<SwitchPreference> switches = getProfileSwitches(true); local
231 verifyProfileSwitchTitles(switches);
232 assertThat(switches.get(0).isChecked()).isTrue();
233 assertThat(switches.get(1).isChecked()).isFalse();
235 // Both switches should be enabled.
236 assertThat(switches.get(0).isEnabled()).isTrue();
237 assertThat(switches.get(1).isEnabled()).isTrue()
256 List<SwitchPreference> switches = getProfileSwitches(true); local
296 List<SwitchPreference> switches = getProfileSwitches(false); local
318 List<SwitchPreference> switches = getProfileSwitches(false); local
339 List<SwitchPreference> switches = getProfileSwitches(false); local
    [all...]
  /external/curl/docs/cmdline-opts/
globoff.d 5 This option switches off the "URL globbing parser". When you set this option,
  /external/llvm/test/MC/X86/AlignedBundling/
switch-section-locked-error.s 3 # This test invokes .bundle_lock and then switches to a different section
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
TvStatusBar.java 47 int[] switches = new int[9]; local
56 mBarService.registerStatusBar(commandQueue, iconSlots, icons, switches, binders,
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Switches.java 30 public class Switches extends Activity implements CompoundButton.OnCheckedChangeListener {
35 setContentView(R.layout.switches);
  /external/clang/test/Profile/
c-general.c 213 // PGOGEN-LABEL: @switches()
214 // PGOUSE-LABEL: @switches()
216 void switches() { function
554 switches();
  /prebuilts/go/darwin-x86/test/
typeswitch3.go 7 // Verify that erroneous type switches are caught be the compiler.

Completed in 282 milliseconds

1 2 3 4 5