HomeSort by relevance Sort by last modified time
    Searched full:verbose (Results 1 - 25 of 2031) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/libutil++/
cverb.h 3 * 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 stats\n
51 class verbose { class
    [all...]
cverb.cpp 3 * 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::verbose(char const * name function in class:verbose
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
recursive-test.c 14 int verbose = 0; variable
18 if (argc > 1) verbose = 1;
22 if (verbose) printf("recursive_local_block is a local recursive block\n");
24 if (verbose) printf("%d\n", i);
30 if (verbose) printf("recursive_local_block's address is %p, running it:\n", (void*)recursive_local_block);
33 if (verbose) printf("Creating other_local_block: a local block that calls recursive_local_block\n");
36 if (verbose) printf("other_local_block running\n");
40 if (verbose) printf("other_local_block's address is %p, running it:\n", (void*)other_local_block);
45 if (verbose) printf("Creating other_copied_block: a Block_copy of a block that will call recursive_local_block\n");
48 if (verbose) printf("other_copied_block running\n")
    [all...]
  /packages/apps/Phone/
proguard.flags 6 -verbose
  /external/emma/core/res/com/vladium/emma/data/
merge_usage.res 26 'verbose':
29 "verbose output operation";
33 excludes {'silent', 'verbose', 'debug'},
38 excludes {'quiet', 'verbose', 'debug'},
44 excludes {'verbose', 'quiet', 'silent'},
  /external/iptables/include/
ip6tables.h 13 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);
iptables.h 12 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);
  /development/tools/yuv420sp2rgb/
cmdline.h 13 int *verbose);
  /external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
JavaScriptCorePostBuild.cmd 1 if exist "%WEBKITLIBRARIESDIR%\tools\VersionStamper\VersionStamper.exe" "%WEBKITLIBRARIESDIR%\tools\VersionStamper\VersionStamper.exe" --verbose "%TARGETPATH%"
  /external/webkit/Source/WebKit2/win/
WebKitPostBuild.cmd 1 if exist "%WEBKITLIBRARIESDIR%\tools\VersionStamper\VersionStamper.exe" "%WEBKITLIBRARIESDIR%\tools\VersionStamper\VersionStamper.exe" --verbose "%TARGETPATH%"
  /external/qemu/distrib/sdl-1.2.15/test/
testplatform.c 18 int TestTypes(SDL_bool verbose)
23 if ( verbose )
29 if ( verbose )
35 if ( verbose )
42 if ( verbose )
48 if ( verbose ) {
52 if ( verbose && !error )
58 int TestEndian(SDL_bool verbose)
77 if ( verbose ) {
87 if ( verbose ) {
147 SDL_bool verbose = SDL_TRUE; local
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyEventSource.java 29 * set verbose to allow different level of log
31 * @param verbose output mode? 1= verbose, 2=very verbose
33 public void setVerbose(int verbose);
  /external/emma/core/res/com/vladium/emma/instr/
instr_usage.res 46 'verbose':
49 "verbose output operation";
53 excludes {'silent', 'verbose', 'debug'},
58 excludes {'quiet', 'verbose', 'debug'},
64 excludes {'verbose', 'quiet', 'silent'},
  /external/emma/core/res/com/vladium/emma/report/
report_usage.res 31 'verbose':
34 "verbose output operation";
38 excludes {'silent', 'verbose', 'debug'},
43 excludes {'quiet', 'verbose', 'debug'},
49 excludes {'verbose', 'quiet', 'silent'},
  /sdk/ddms/libs/ddmuilib/tests/src/com/android/ddmuilib/logcat/
LogCatFilterTest.java 30 LogCatMessage msg = new LogCatMessage(LogLevel.VERBOSE,
42 "", "", "123", "", LogLevel.VERBOSE);
45 LogCatMessage msg = new LogCatMessage(LogLevel.VERBOSE,
50 msg = new LogCatMessage(LogLevel.VERBOSE,
57 "", "", "", "dalvik.*", LogLevel.VERBOSE);
60 LogCatMessage msg = new LogCatMessage(LogLevel.VERBOSE,
65 msg = new LogCatMessage(LogLevel.VERBOSE,
72 "tag.*", "", "", "", LogLevel.VERBOSE);
75 LogCatMessage msg = new LogCatMessage(LogLevel.VERBOSE,
79 msg = new LogCatMessage(LogLevel.VERBOSE,
    [all...]
  /frameworks/compile/libbcc/runtime/make/
config.mk 20 VERBOSE := 0
26 # Adjust settings for verbose mode
27 ifneq ($(VERBOSE),1)
  /external/openssh/regress/
sftp-cmds.sh 46 verbose "$tid: lls"
50 verbose "$tid: lls w/path"
54 verbose "$tid: ls"
59 verbose "$tid: shell"
64 verbose "$tid: pwd"
69 verbose "$tid: lpwd"
74 verbose "$tid: quit"
79 verbose "$tid: help"
85 verbose "$tid: get"
91 verbose "$tid: get quoted
    [all...]
  /external/libsepol/tests/
libsepol-tests.c 50 printf("\t-v, --verbose\t\t\tverbose output\n");
54 static int do_tests(int interactive, int verbose)
67 if (verbose)
83 int i, verbose = 1, interactive = 0; local
86 {"verbose", 0, NULL, 'v'},
94 verbose = 1;
109 if (do_tests(interactive, verbose))
114 if (do_tests(interactive, verbose))
  /external/linux-tools-perf/Documentation/
perf-test.txt 21 --verbose::
22 Be more verbose.
  /frameworks/base/core/tests/coretests/src/android/util/
LogTest.java 49 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
56 // Set the log level to be VERBOSE for this tag.
57 SystemProperties.set(PROPERTY_TAG, "VERBOSE");
59 // Test to make sure all log levels >= VERBOSE are loggable.
60 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.VERBOSE));
71 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
82 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
93 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
104 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
115 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
    [all...]
  /external/clang/test/CodeGen/
debug-dead-local-var.c 1 // RUN: %clang_cc1 -mllvm -asm-verbose -S -O2 -g %s -o - | FileCheck %s
  /external/clang/test/CodeGenCXX/
field-access-debug-info.cpp 1 // RUN: %clang_cc1 -g -S -masm-verbose -o - %s | FileCheck %s
  /external/clang/test/CodeGenObjC/
debug-info-class-extension.m 1 // RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
debug-info-class-extension2.m 1 // RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
debug-info-class-extension3.m 1 // RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s

Completed in 425 milliseconds

1 2 3 4 5 6 7 8 91011>>