Searched refs:verbose (Results 276 - 300 of 945) sorted by relevance

<<11121314151617181920>>

/external/proguard/src/proguard/ant/
H A DProGuardTask.java247 public void setVerbose(boolean verbose) argument
249 configuration.verbose = verbose;
/external/qemu/distrib/ext4_utils/src/
H A Dmake_ext4fs_main.c73 int verbose = 0; local
144 verbose = 1;
204 sparse, crc, wipe, sehnd, verbose);
/external/skia/tests/
H A DFontMgrTest.cpp81 static void test_fontiter(skiatest::Reporter* reporter, bool verbose) { argument
93 if (verbose) {
106 if (verbose) {
114 DEFINE_bool(verboseFontMgr, false, "run verbose fontmgr tests.");
/external/vixl/tools/
H A Dtest.py60 result.add_argument('--verbose', action='store_true',
61 help='Print verbose output.')
66 if args.verbose:
106 # We normally only print the command on failure, but with --verbose we
148 UpdateProgress(start_time, passed, failed, count, args.verbose, test.name)
155 UpdateProgress(start_time, passed, failed, count, args.verbose, '== Done ==')
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dgrammar.rb70 @verbose = options.fetch( :verbose, $VERBOSE )
81 attr_accessor :output_directory, :verbose
212 $stderr.printf( string + "\n", *args ) if @verbose
277 @verbose = options.fetch( :verbose, $VERBOSE )
/external/chromium_org/chrome/test/chromedriver/test/
H A Drun_java_tests.py66 verbose, debug):
77 verbose: whether the output should be verbose.
134 class_path, sys_props, jvm_args, verbose)
137 def _RunAntTest(test_dir, test_class, class_path, sys_props, jvm_args, verbose):
146 verbose: whether the output should be verbose.
193 if verbose:
237 '', '--verbose', action='store_true', default=False,
238 help='Whether output should be verbose')
[all...]
/external/chromium_org/third_party/icu/source/test/thaitest/
H A Dthaitest.cpp92 // verbose - report all breaks if true, otherwise just report differences
93 ThaiWordbreakTest(const UChar *spaces, int32_t spaceCount, const UChar *noSpaces, int32_t noSpaceCount, UBool verbose);
160 const UChar *noSpaces, int32_t noSpaceCount, UBool verbose)
161 : fBreaksNotFound(0), fInvalidBreaks(0), fWordCount(0), fVerbose(verbose)
442 UBool verbose = FALSE; local
450 if (argc >= 2 && strcmp(argv[1], "-verbose") == 0) {
451 verbose = TRUE;
460 fprintf(stderr, "Usage: %s [-verbose] [<file>]\n", argv[0]);
483 ThaiWordbreakTest test(spaces, spaceCount, noSpaces, nonSpaceCount, verbose);
159 ThaiWordbreakTest(const UChar *spaces, int32_t spaceCount, const UChar *noSpaces, int32_t noSpaceCount, UBool verbose) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_test_main.c367 unsigned verbose = 0; local
376 ++verbose;
388 if (verbose >= 2) {
404 success = test_single(verbose, fp);
406 success = test_some(verbose, fp, n);
408 success = test_all(verbose, fp);
/external/chromium_org/v8/tools/testrunner/local/
H A Dexecution.py40 def __init__(self, command, dep_command, test_id, timeout, verbose):
45 self.verbose = verbose
51 dep_output = commands.Execute(job.dep_command, job.verbose, job.timeout)
58 output = commands.Execute(job.command, job.verbose, job.timeout)
105 return Job(command, dep_command, test.id, timeout, self.context.verbose)
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDexFile.java189 * @param verbose whether to be verbose when writing human-oriented output
191 public void writeTo(OutputStream out, Writer humanOut, boolean verbose) argument
194 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
210 * @param verbose whether to be verbose when writing human-oriented output
213 public byte[] toDex(Writer humanOut, boolean verbose) argument
216 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
491 * @param verbose if annotating, whether to be verbose
494 toDex0(boolean annotate, boolean verbose) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java47 /** whether annotations are to be verbose */
48 private boolean verbose; field in class:ByteArrayAnnotatedOutput
110 this.verbose = false;
356 return verbose;
416 * @param verbose whether or not to indicate verbose annotations
418 public void enableAnnotations(int annotationWidth, boolean verbose) { argument
437 this.verbose = verbose;
/external/icu/icu4c/source/test/thaitest/
H A Dthaitest.cpp92 // verbose - report all breaks if true, otherwise just report differences
93 ThaiWordbreakTest(const UChar *spaces, int32_t spaceCount, const UChar *noSpaces, int32_t noSpaceCount, UBool verbose);
160 const UChar *noSpaces, int32_t noSpaceCount, UBool verbose)
161 : fBreaksNotFound(0), fInvalidBreaks(0), fWordCount(0), fVerbose(verbose)
442 UBool verbose = FALSE; local
450 if (argc >= 2 && strcmp(argv[1], "-verbose") == 0) {
451 verbose = TRUE;
460 fprintf(stderr, "Usage: %s [-verbose] [<file>]\n", argv[0]);
483 ThaiWordbreakTest test(spaces, spaceCount, noSpaces, nonSpaceCount, verbose);
159 ThaiWordbreakTest(const UChar *spaces, int32_t spaceCount, const UChar *noSpaces, int32_t noSpaceCount, UBool verbose) argument
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_main.c367 unsigned verbose = 0; local
376 ++verbose;
388 if (verbose >= 2) {
404 success = test_single(verbose, fp);
406 success = test_some(verbose, fp, n);
408 success = test_all(verbose, fp);
/external/pixman/test/
H A Dscaling-test.c50 int verbose)
240 if (verbose)
269 if (verbose)
297 if (verbose)
324 if (verbose)
352 if (verbose)
49 test_composite(int testnum, int verbose) argument
/external/blktrace/btt/
H A Dbt_timeline.c34 int verbose, done, time_bounded, output_all_data, seek_absolute; variable
114 if (verbose) {
/external/chromium_org/native_client_sdk/src/tools/
H A Dcreate_html.py143 if options.verbose:
166 parser.add_option('-v', '--verbose', action='store_true',
189 if options.verbose:
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dsampstat36 parser.add_option("-v", "--verbose",
37 action="store_true", dest="verbose", default=False,
87 if options.verbose:
96 prefix = "Mean: " if options.verbose else ""
/external/chromium_org/third_party/icu/source/tools/genccode/
H A Dgenccode.c93 UBool verbose = TRUE; local
162 if (verbose) {
/external/chromium_org/third_party/icu/source/tools/gendict/
H A Dgendict.cpp117 "\t-v or --verbose turn on verbose output\n"
293 UBool verbose = options[ARG_VERBOSE].doesOccur; local
346 if (verbose) { printf("Opening file %s...\n", wordFileName); }
353 if (verbose) { printf("Initializing dictionary builder of type %s...\n", (isBytesTrie ? "BytesTrie" : "UCharsTrie")); }
364 if (verbose) { puts("Adding words to dictionary..."); }
424 if (verbose) { printf("Processed %d lines, added %d words, minlen %d, maxlen %d\n", lineCount, wordCount, minlen, maxlen); }
433 if (verbose) { printf("Serializing data...isBytesTrie? %d\n", isBytesTrie); }
450 if (verbose) { puts("Opening output file..."); }
457 if (verbose) { put
[all...]
/external/chromium_org/tools/android/
H A Dfind_unused_resources.py90 parser.add_option('-v', help='Show verbose output', action='store_true')
111 verbose, source_paths, r_txt_paths, third_party_r_txt_paths = ParseArgs(args)
133 if verbose:
/external/chromium_org/tools/grit/grit/tool/
H A Dbuildinfo_unittest.py44 self.verbose = False
68 self.verbose = False
H A Drc2grd_unittest.py70 verbose = False variable in class:.testRegressionScriptWithTranslateable.DummyNode
116 verbose = False variable in class:.testRoleModel.DummyOpts
/external/fio/tools/plot/
H A Dfio2gnuplot42 if verbose: print "Generating rendering scripts"
127 if verbose: print "Processing data file 2/2"
155 if verbose: print "Processing data file 1/2 with %s<time<%s" % (min_time,end_time)
228 if verbose: print "Computing Maths"
343 if verbose: print " |-> Rendering comparing traces"
345 if verbose: print " |-> Rendering math traces"
347 if verbose: print " |-> Rendering 2D & 3D traces"
378 print '-v or --verbose : Increasing verbosity'
395 global verbose
396 verbose
[all...]
/external/icu/icu4c/source/tools/genccode/
H A Dgenccode.c93 UBool verbose = TRUE; local
162 if (verbose) {
/external/icu/icu4c/source/tools/gendict/
H A Dgendict.cpp117 "\t-v or --verbose turn on verbose output\n"
293 UBool verbose = options[ARG_VERBOSE].doesOccur; local
346 if (verbose) { printf("Opening file %s...\n", wordFileName); }
353 if (verbose) { printf("Initializing dictionary builder of type %s...\n", (isBytesTrie ? "BytesTrie" : "UCharsTrie")); }
364 if (verbose) { puts("Adding words to dictionary..."); }
424 if (verbose) { printf("Processed %d lines, added %d words, minlen %d, maxlen %d\n", lineCount, wordCount, minlen, maxlen); }
433 if (verbose) { printf("Serializing data...isBytesTrie? %d\n", isBytesTrie); }
450 if (verbose) { puts("Opening output file..."); }
457 if (verbose) { put
[all...]

Completed in 4168 milliseconds

<<11121314151617181920>>