Searched refs:verbose (Results 1 - 25 of 381) sorted by relevance

1234567891011>>

/external/oprofile/libutil++/
H A Dcverb.h3 * verbose output stream
22 * verbose object, all output through this stream are made only
23 * if a verbose object with a true state is injected in the stream.
29 * declare some verbose global object:
30 * verbose debug("debug");
31 * verbose stats("stats");
32 * verbose level2("level2");
36 * verbose::setup(command_line_args_to'--verbose=');
39 * cverb << (stats&level2) << "very verbose stat
51 class verbose { class
[all...]
H A Dcverb.cpp3 * verbose output stream
25 verbose vlevel1("level1");
26 verbose vdebug("debug");
27 verbose vstats("stats");
28 verbose vsfile("sfile");
29 verbose vxml("xml");
51 // We use a multimap because user can create multiple verbose object with
54 typedef multimap<string, verbose *> recorder_t;
55 // The recorder is lazilly created by verbose object ctor
61 verbose function in class:verbose
[all...]
/external/webkit/Tools/Scripts/
H A Drun-jsc39 my $usage = "Usage: run-jsc [--count run_count] [--verbose] shell_file [file2...]";
42 my $verbose = 0;
44 "verbose|v" => \$verbose);
48 $jsc .= " 2> " . File::Spec->devnull() unless $verbose;
/external/webkit/Source/WebCore/bindings/scripts/
H A Dgenerate-bindings.pl49 my $verbose;
59 'verbose' => \$verbose,
72 if ($verbose) {
78 my $parser = IDLParser->new(!$verbose);
82 my $codeGen = CodeGenerator->new(\@idlDirectories, $generator, $outputDirectory, $outputHeadersDirectory, 0, $preprocessor, $writeDependencies, $verbose);
/external/iptables/include/
H A Dip6tables.h13 extern int for_each_chain6(int (*fn)(const ip6t_chainlabel, int, struct ip6tc_handle *), int verbose, int builtinstoo, struct ip6tc_handle *handle);
14 extern int flush_entries6(const ip6t_chainlabel chain, int verbose, struct ip6tc_handle *handle);
15 extern int delete_chain6(const ip6t_chainlabel chain, int verbose, struct ip6tc_handle *handle);
H A Diptables.h12 extern int delete_chain4(const ipt_chainlabel chain, int verbose,
14 extern int flush_entries4(const ipt_chainlabel chain, int verbose,
17 int verbose, int builtinstoo, struct iptc_handle *handle);
/external/chromium/testing/gmock/include/gmock/
H A Dgmock.h72 GMOCK_DECLARE_string_(verbose);
/external/icu4c/tools/toolutil/
H A Dpkg_gencmn.h14 const char *dataFile, uint32_t max_size, UBool sourceTOC, UBool verbose, char *gencmnFileName);
/external/icu4c/tools/genrb/
H A Dgendtjar.pl41 "--verbose" => \$verbose,
110 buildICU($platform, $icuRootDir, $icuTestDataDir, $verbose);
131 convertData($icuDataDir, $icupkg, $tempDir, $icu4jDataDir, $verbose);
133 createJar("\"$jarDir/jar\"", "icudata.jar", $tempDir, $icu4jDataDir, $verbose);
135 convertTestData($icuTestDataDir, $icupkg, $tempDir, $icu4jTestDataDir, $verbose);
136 createJar("\"$jarDir/jar\"", "testdata.jar", $tempDir, $icu4jTestDataDir, $verbose);
137 copyData($icu4jDir, $icu4jImpl, $icu4jDevDataDir, $tempDir, $verbose);
142 local($platform, $icuRootDir, $icuTestDataDir, $verbose) = @_;
154 cmd("make all", $verbose);
[all...]
/external/chromium/testing/gmock/test/
H A Dgmock_test.cc41 using testing::GMOCK_FLAG(verbose);
50 const ::std::string old_verbose = GMOCK_FLAG(verbose);
60 EXPECT_EQ(expected_gmock_verbose, GMOCK_FLAG(verbose).c_str());
61 GMOCK_FLAG(verbose) = old_verbose; // Restores the gmock_verbose flag.
73 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG(verbose));
87 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG(verbose));
118 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG(verbose));
166 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG(verbose));
180 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG(verbose));
211 TestInitGoogleMock(argv, new_argv, GMOCK_FLAG(verbose));
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DReportProcessor.java118 final boolean verbose = m_log.atVERBOSE ();
119 if (verbose)
121 log.verbose (IAppConstants.APP_VERBOSE_BUILD_ID);
124 log.verbose ("input data path:");
125 log.verbose ("{");
131 log.verbose (" " + nonexistent + f.getAbsolutePath ());
133 log.verbose ("}");
138 log.verbose ("source path not set");
142 log.verbose ("source path:");
143 log.verbose ("{");
[all...]
/external/icu4c/tools/genren/
H A Dgenren.pl45 /^-v/ && ($VERBOSE++, next); # verbose
152 &verbose( "type: \"$type\" ");
155 &verbose( "Import: $_ \"$type\"\n");
156 &verbose( "C++ method: $_\n");
168 &verbose ("Skipping C++ function: $_\n");
170 &verbose ("Skipping C++ destructor: $_\n");
172 &verbose( " Class: '$CppName[0]': $_ \n");
177 &verbose ( "$ARGV[0]: got global C++ function $cfn with '$_'\n" );
183 &verbose( "$ARGV[0]: Skipped initializer $_\n" );
185 &verbose( "
236 sub verbose { subroutine
[all...]
/external/srtp/crypto/test/
H A Daes_calc.c38 int verbose; local
41 /* we're not in verbose mode */
42 verbose = 0;
45 /* we're in verbose mode */
46 verbose = 1;
92 if (verbose) {
103 if (verbose) {
/external/libvpx/build/make/
H A Darmlink_adapter.sh13 verbose=0
19 verbose=1
53 [ $verbose -eq 1 ] && echo $cmd
/external/bluetooth/glib/tests/
H A Drun-bookmark-test.sh11 if [ "$verbose" = "1" ]; then
18 verbose=1
H A Drun-collate-tests.sh11 if [ "$verbose" = "1" ]; then
18 verbose=1
H A Drun-markup-tests.sh11 if [ "$verbose" = "1" ]; then
18 verbose=1
/external/dbus/tools/
H A Ddbus-launch-win.c98 int verbose = s && *s != '\0' ? 1 : 0; local
106 if (verbose)
120 if (verbose)
129 if (verbose)
136 if (verbose)
144 if (verbose)
151 if (!verbose)
160 if (verbose)
H A Ddbus-launch.c101 verbose ("UID: %s\n", machine_uuid);
111 verbose (const char *format, function
115 static int verbose = TRUE; local
119 * in the non-verbose case we just have the one
122 if (!verbose)
127 verbose = getenv ("DBUS_VERBOSE") != NULL;
129 if (!verbose)
342 verbose ("Killing message bus and exiting babysitter\n");
455 verbose ("stdin isatty(), monitoring it\n");
457 verbose ("stdi
[all...]
/external/emma/core/java12/com/vladium/emma/data/
H A DMergeProcessor.java98 final boolean verbose = m_log.atVERBOSE ();
99 if (verbose)
101 log.verbose (IAppConstants.APP_VERBOSE_BUILD_ID);
104 log.verbose ("input data path:");
105 log.verbose ("{");
111 log.verbose (" " + nonexistent + f.getAbsolutePath ());
113 log.verbose ("}");
142 if (verbose) log.verbose ("processing input file [" + dataFile.getAbsolutePath () + "] ...");
149 if (verbose) lo
[all...]
/external/v8/samples/
H A Dcount-hosts.js31 if (options.verbose) {
/external/proguard/src/proguard/shrink/
H A DShortestUsagePrinter.java43 private final boolean verbose; field in class:ShortestUsagePrinter
62 * @param verbose specifies whether the output should be verbose.
65 boolean verbose)
67 this(shortestUsageMarker, verbose, System.out);
74 * @param verbose specifies whether the output should be verbose.
78 boolean verbose,
82 this.verbose = verbose;
64 ShortestUsagePrinter(ShortestUsageMarker shortestUsageMarker, boolean verbose) argument
77 ShortestUsagePrinter(ShortestUsageMarker shortestUsageMarker, boolean verbose, PrintStream printStream) argument
[all...]
/external/blktrace/btt/
H A Dbno_plot.py25 [ -v | --verbose ]
43 verbose = 0 variable
55 global verbose
59 l_opts = [ 'help', 'keys-below', 'verbose' ]
72 elif o in ('-v', '--verbose'):
73 verbose += 1
86 if verbose:
119 if verbose: print 'Executing %s' % cmd
/external/proguard/src/proguard/gui/
H A DReTraceRunnable.java40 private final boolean verbose; field in class:ReTraceRunnable
48 * @param verbose specifies whether the de-obfuscated stack trace
49 * should be verbose.
53 boolean verbose,
58 this.verbose = verbose;
91 verbose,
52 ReTraceRunnable(JTextArea consoleTextArea, boolean verbose, File mappingFile, String stackTrace) argument
/external/proguard/src/proguard/
H A DProGuard.java167 if (configuration.verbose)
189 if (configuration.verbose)
205 if (configuration.verbose)
219 if (configuration.verbose)
234 if (configuration.verbose)
276 if (configuration.verbose)
304 if (configuration.verbose)
319 if (configuration.verbose)
334 if (configuration.verbose)
361 if (configuration.verbose)
[all...]

Completed in 1164 milliseconds

1234567891011>>