Home
last modified time | relevance | path

Searched refs:verbosity (Results 1 – 25 of 273) sorted by relevance

1234567891011

/external/autotest/client/cros/cellular/wardmodem/state_machines/
Dnetwork_registration_machine.py72 verbosity = int(verbosity_code)
77 if verbosity < 0 or verbosity > 2:
80 verbosity))
82 self._update_state({'registration_change_message_verbosity': verbosity})
90 verbosity = self._state['registration_change_message_verbosity']
96 0, verbosity)
100 if verbosity == 0:
104 elif verbosity == 1:
109 assert verbosity == 2
/external/autotest/frontend/
Dsetup_test_environment.py26 def run_syncdb(verbosity=0): argument
31 management.call_command('syncdb', verbosity=verbosity, interactive=False)
32 management.call_command('syncdb', verbosity=verbosity, interactive=False,
34 management.call_command('syncdb', verbosity=verbosity, interactive=False,
36 management.call_command('syncdb', verbosity=verbosity, interactive=False,
/external/python/cpython2/Lib/ctypes/test/
D__init__.py61 def get_tests(package, mask, verbosity, exclude=()): argument
68 if verbosity > 1:
75 if verbosity > 1:
90 def test_with_refcounts(runner, verbosity, testcase): argument
120 elif verbosity:
168 verbosity = 1
173 verbosity -= 1
175 verbosity += 1
193 run_tests(package, mask, verbosity, search_leaks, exclude)
196 def run_tests(package, mask, verbosity, search_leaks, exclude): argument
[all …]
/external/python/cpython2/Doc/howto/
Dargparse.rst231 parser.add_argument("--verbosity", help="increase output verbosity")
233 if args.verbosity:
234 print "verbosity turned on"
240 $ python prog.py --verbosity 1
241 verbosity turned on
244 usage: prog.py [-h] [--verbosity VERBOSITY]
248 --verbosity VERBOSITY
249 increase output verbosity
250 $ python prog.py --verbosity
251 usage: prog.py [-h] [--verbosity VERBOSITY]
[all …]
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DSwatDeprecated.java34 private int verbosity; field in SwatDeprecated
97 public SwatDeprecated(String src, String dst, boolean dep, boolean overwrite, int verbosity) { in SwatDeprecated() argument
101 this.verbosity = verbosity; in SwatDeprecated()
124 if (verbosity >= 1) { in SwatDeprecated()
131 pw.println(" verbosity: " + verbosity); in SwatDeprecated()
141 if (verbosity >= 1) { in run()
149 if (verbosity >= 5) { in doList()
168 if (verbosity >= 5) { in processFile()
191 if (verbosity >= 5) { in processFile()
217 if (verbosity >= 5) { in processFile()
[all …]
/external/python/cpython2/Lib/ensurepip/
D__init__.py56 verbosity=0): argument
105 if verbosity:
106 args += ["-" + "v" * verbosity]
113 def _uninstall_helper(verbosity=0): argument
135 if verbosity:
136 args += ["-" + "v" * verbosity]
203 verbosity=args.verbosity,
/external/syslinux/gpxe/src/util/
Dlicence.pl105 my $verbosity = 1;
108 'verbose|v+' => sub { $verbosity++; },
109 'quiet|q+' => sub { $verbosity--; },
122 if ( $verbosity >= 1 ) {
138 if $verbosity >= 1;
148 print "The overall licence for this file is:\n " if $verbosity >= 1;
Dpadimg.pl8 my $verbosity = 0;
13 'verbose|v+' => sub { $verbosity++; },
14 'quiet|q+' => sub { $verbosity--; },
28 if ( $verbosity >= 1 ) {
/external/expat/tests/
Dminicheck.c102 add_failure(SRunner *runner, int verbosity) in add_failure() argument
105 if (verbosity >= CK_VERBOSE) { in add_failure()
112 srunner_run_all(SRunner *runner, int verbosity) in srunner_run_all() argument
127 add_failure(runner, verbosity); in srunner_run_all()
134 add_failure(runner, verbosity); in srunner_run_all()
142 add_failure(runner, verbosity); in srunner_run_all()
150 if (verbosity) { in srunner_run_all()
/external/bzip2/
Dbzlib.h103 int verbosity,
118 int verbosity,
142 int verbosity,
171 int verbosity,
210 int verbosity,
220 int verbosity
Dbzlib.c151 int verbosity, in BZ_API()
195 s->verbosity = verbosity; in BZ_API()
494 int verbosity, in BZ_API()
503 if (verbosity < 0 || verbosity > 4) return BZ_PARAM_ERROR; in BZ_API()
525 s->verbosity = verbosity; in BZ_API()
826 if (s->verbosity >= 3) in BZ_API()
829 if (s->verbosity >= 2) VPrintf0 ( "]" ); in BZ_API()
844 if (s->verbosity >= 3) in BZ_API()
920 int verbosity, in BZ_API()
931 (verbosity < 0 || verbosity > 4)) in BZ_API()
[all …]
Dbzip2.c183 Int32 verbosity; variable
345 blockSize100k, verbosity, workFactor ); in compressStream()
348 if (verbosity >= 2) fprintf ( stderr, "\n" ); in compressStream()
381 if (verbosity >= 1) { in compressStream()
455 &bzerr, zStream, verbosity, in uncompressStream()
501 if (verbosity >= 2) fprintf ( stderr, "\n " ); in uncompressStream()
573 &bzerr, zStream, verbosity, in testStream()
601 if (verbosity >= 2) fprintf ( stderr, "\n " ); in testStream()
606 if (verbosity == 0) in testStream()
1286 if (verbosity >= 1) { in compress()
[all …]
/external/python/cpython2/Lib/unittest/
Dmain.py74 exit=True, verbosity=1, failfast=None, catchbreak=None, argument
88 self.verbosity = verbosity
124 self.verbosity = 0
126 self.verbosity = 2
207 self.verbosity = 2
223 testRunner = self.testRunner(verbosity=self.verbosity,
Drunner.py36 def __init__(self, stream, descriptions, verbosity): argument
37 super(TextTestResult, self).__init__(stream, descriptions, verbosity)
39 self.showAll = verbosity > 1
40 self.dots = verbosity == 1
127 def __init__(self, stream=sys.stderr, descriptions=True, verbosity=1, argument
131 self.verbosity = verbosity
138 return self.resultclass(self.stream, self.descriptions, self.verbosity)
/external/llvm/lib/Fuzzer/test/
Dfuzzer-dfsan.test12 RUN: LLVMFuzzer-SimpleCmpTest-DFSan -use_traces=1 -seed=1 -runs=100 -timeout=5 -verbosity=3 2>&1 | …
15 RUN: LLVMFuzzer-MemcmpTest-DFSan -use_traces=1 -seed=1 -runs=2 -timeout=5 -verbosity=3 2>&1 | FileC…
18 RUN: LLVMFuzzer-StrncmpTest-DFSan -use_traces=1 -seed=1 -runs=2 -timeout=5 -verbosity=3 2>&1 | File…
21 RUN: LLVMFuzzer-StrcmpTest-DFSan -use_traces=1 -seed=1 -runs=2 -timeout=5 -verbosity=3 2>&1…
24 RUN: LLVMFuzzer-SwitchTest-DFSan -use_traces=1 -seed=1 -runs=2 -timeout=5 -verbosity=3 2>&1…
/external/autotest/frontend/afe/
Dmanagement.py17 def create_admin_group(app, created_models, verbosity, **kwargs): argument
34 if verbosity:
39 if verbosity:
42 if verbosity:
/external/python/cpython2/Lib/unittest/test/
Dtest_program.py50 program = unittest.TestProgram(testRunner=runner, exit=False, verbosity=2)
54 self.assertEqual(program.verbosity, 2)
99 verbosity = 1 variable in InitialisableProgram
155 program.verbosity = 1
157 self.assertEqual(program.verbosity, 0)
160 program.verbosity = 1
162 self.assertEqual(program.verbosity, 2)
190 program.verbosity = 'verbosity'
221 program.verbosity = 'verbosity'
/external/syslinux/com32/lua/test/
Dautomenu.lua23 local verbosity = 2
26 return (single and " single" or "") .. ({" quiet",""," debug"})[verbosity]
142 … show = function () return "Verbosity: " .. ({"quiet","normal","debug"})[verbosity] end,
143 execute = function () verbosity = verbosity < 3 and verbosity + 1 or 1 end
/external/skia/tools/skpbench/
Dskpbench.py73 if FLAGS.verbosity >= 5:
102 ARGV = [FLAGS.skpbench, '--verbosity', str(FLAGS.verbosity)]
211 elif FLAGS.verbosity >= 2:
251 if FLAGS.verbosity >= 1:
263 if FLAGS.verbosity >= 4:
265 if FLAGS.verbosity >= 1:
270 if FLAGS.verbosity >= 4:
281 adb = Adb(FLAGS.device_serial, echo=(FLAGS.verbosity >= 5))
/external/python/cpython2/Lib/test/
Dtest_ensurepip.py87 ensurepip.bootstrap(verbosity=1)
98 ensurepip.bootstrap(verbosity=2)
109 ensurepip.bootstrap(verbosity=3)
198 ensurepip._uninstall_helper(verbosity=1)
209 ensurepip._uninstall_helper(verbosity=2)
220 ensurepip._uninstall_helper(verbosity=3)
/external/mesa3d/src/gallium/tests/unit/
Dpipe_barrier_test.c47 static int verbosity = 0; variable
58 if (verbosity > 0) { \
99 ++verbosity; in main()
/external/libgsm/tst/
Dlin2txt.c17 int verbosity = 0; variable
37 gsm_option(r, GSM_OPT_VERBOSE, &verbosity);
77 case 'v': verbosity++; break;
Dlin2cod.c17 int verbosity = 0; variable
40 gsm_option(r, GSM_OPT_VERBOSE, &verbosity);
86 case 'v': verbosity++; break;
Dcod2lin.c18 int verbosity = 0; variable
44 gsm_option(r, GSM_OPT_VERBOSE, &verbosity);
85 case 'v': verbosity++; break;
/external/autotest/server/cros/ap_configurators/
Dpyauto_utils.py237 def __init__(self, stream, descriptions, verbosity): argument
238 unittest._TextTestResult.__init__(self, stream, descriptions, verbosity)
272 def __init__(self, verbosity=1): argument
274 verbosity=verbosity)
277 return _GTestTextTestResult(self.stream, self.descriptions, self.verbosity)

1234567891011