HomeSort by relevance Sort by last modified time
    Searched refs:verbose (Results 101 - 125 of 1197) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/proguard/src/proguard/
ProGuard.java 167 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...]
  /build/target/board/vbox_x86/
BoardConfig.mk 19 BOARD_INSTALLER_CMDLINE := init=/init console=ttyS0 console=tty0 vga=788 verbose
20 BOARD_KERNEL_CMDLINE := init=/init qemu=1 console=tty0 vga=788 verbose androidboot.hardware=vbox_x86 androidboot.console=tty0 android.qemud=tty0
  /cts/libs/vogar-expect/src/vogar/util/
Log.java 29 public static void verbose(String s) { method in class:Log
31 sLogoutput.verbose(s);
  /external/iproute2/examples/
gaiconf 11 verbose=
16 if [ x"$verbose" != x"" ]; then
52 TEMP=`getopt -o c::dlv -l config::,default,list,verbose -n gaiconf -- "$@"`
93 verbose=1
  /external/libgsm/src/
gsm_option.c 28 result = r->verbose;
29 if (val) r->verbose = *val;
  /external/openssh/regress/
host-expand.sh 14 verbose "test $tid: proto $p"
key-options.sh 14 verbose "key option proto $p $c"
28 verbose "key option proto $p no-pty"
39 verbose "key option proto $p environment"
58 verbose "key option proto $p $from"
sftp-batch.sh 39 verbose "$tid: good commands"
43 verbose "$tid: bad commands"
47 verbose "$tid: comments and blanks"
51 verbose "$tid: junk command"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
macresource.py 77 def open_pathname(pathname, verbose=0):
92 pathname = _decode(pathname, verbose=verbose)
95 def resource_pathname(pathname, verbose=0):
111 pathname = _decode(pathname, verbose=verbose)
119 def _decode(pathname, verbose=0):
131 if verbose:
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyEvent.java 67 * @param verbose a log switch
71 public abstract int injectEvent(IWindowManager iwm, IActivityManager iam, int verbose);
MonkeySourceRandomScript.java 26 /** The verbose level of the source (currently not used) */
123 * @param verbose The verbose level.
125 public void setVerbose(int verbose) {
126 mVerbose = verbose;
129 mSetupSource.setVerbose(verbose);
133 source.setVerbose(verbose);
MonkeyActivityEvent.java 56 public int injectEvent(IWindowManager iwm, IActivityManager iam, int verbose) {
58 if (verbose > 0) {
75 if (verbose > 0) {
  /development/tools/yuv420sp2rgb/
cmdline.c 19 {"verbose", no_argument, 0, 'V'},
32 "print verbose output",
40 "\t%s infile --height <height> --width <width> --output <outfile> -t <ppm|grb|argb> [ --gray ] [ --rotate <degrees> ] [ --verbose ]\n"
64 int *verbose) {
72 ASSERT(verbose); *verbose = 0;
133 case 'V': *verbose = 1; break;
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_reader.py 40 def __init__(self, interface_dependencies_filename=None, additional_idl_filenames=None, idl_attributes_filename=None, outputdir='', verbose=False):
51 self.parser = blink_idl_parser.BlinkIDLParser(outputdir=outputdir, verbose=verbose)
idl_compiler.py 66 parser.add_option('--verbose', action='store_true', default=False)
109 verbose = options.verbose
110 if verbose:
114 reader = idl_reader.IdlReader(options.interface_dependencies_file, options.additional_idl_files, options.idl_attributes_file, output_directory, verbose)
116 code_generator = code_generator_v8.CodeGeneratorV8(definitions, interface_name, options.output_directory, relative_dir_posix, options.idl_directories, verbose)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test.h 62 test_some(unsigned verbose, FILE *fp,
66 test_single(unsigned verbose, FILE *fp);
69 test_all(unsigned verbose, FILE *fp);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test.h 62 test_some(unsigned verbose, FILE *fp,
66 test_single(unsigned verbose, FILE *fp);
69 test_all(unsigned verbose, FILE *fp);
  /external/smack/src/org/xbill/DNS/
Compression.java 24 private boolean verbose = Options.check("verbosecompression"); field in class:Compression
49 if (verbose)
67 if (verbose)
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDebug.java 37 * Enable using "adb shell setprop log.tag.SQLiteLog VERBOSE".
40 Log.isLoggable("SQLiteLog", Log.VERBOSE);
45 * Enable using "adb shell setprop log.tag.SQLiteStatements VERBOSE".
48 Log.isLoggable("SQLiteStatements", Log.VERBOSE);
54 * Enable using "adb shell setprop log.tag.SQLiteTime VERBOSE".
57 Log.isLoggable("SQLiteTime", Log.VERBOSE);
163 boolean verbose = false;
166 verbose = true;
170 SQLiteDatabase.dumpAll(printer, verbose);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bsddb3.py 22 verbose = False variable
23 if 'verbose' in sys.argv:
24 verbose = True variable
25 sys.argv.remove('verbose')
28 verbose = False variable
test_runpy.py 8 from test.test_support import verbose, run_unittest, forget namespace
120 if verbose: print " Package tree in:", sub_dir
122 if verbose: print " Updated sys.path:", sys.path[0]
126 if verbose: print " Next level in:", sub_dir
127 if verbose: print " Created:", pkg_fname
132 if verbose: print " Created:", mod_fname
140 if verbose: print " Removed sys.modules entries"
142 if verbose: print " Removed sys.path entry"
148 if verbose: print ex # Persist with cleaning up
154 if verbose: print ex # Persist with cleaning u
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bsddb3.py 22 verbose = False variable
23 if 'verbose' in sys.argv:
24 verbose = True variable
25 sys.argv.remove('verbose')
28 verbose = False variable
test_runpy.py 8 from test.test_support import verbose, run_unittest, forget namespace
120 if verbose: print " Package tree in:", sub_dir
122 if verbose: print " Updated sys.path:", sys.path[0]
126 if verbose: print " Next level in:", sub_dir
127 if verbose: print " Created:", pkg_fname
132 if verbose: print " Created:", mod_fname
140 if verbose: print " Removed sys.modules entries"
142 if verbose: print " Removed sys.path entry"
148 if verbose: print ex # Persist with cleaning up
154 if verbose: print ex # Persist with cleaning u
    [all...]
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.h 111 void BicTest ( pfHash hash, const int keybit, const int reps, double & maxBias, int & maxA, int & maxB, bool verbose )
126 if(verbose)
150 if(verbose) printf("\n");
160 if(verbose) printf("\\");
181 if(verbose)
190 if(verbose) printf("\n");
239 void BicTest3 ( pfHash hash, const int reps, bool verbose = true )
292 if(verbose) printf("(%3d,%3d) - ",out1,out2);
317 if(verbose)
328 if(verbose) printf("\n")
    [all...]
  /bootable/diskinstaller/editdisklbl/
editdisklbl.c 48 "\t\t-v -- Be verbose\n"
56 int *verbose)
78 *verbose = 1;
171 int verbose = 0; local
174 if (parse_args(argc, argv, &dinfo, &test, &verbose))
177 if (verbose)

Completed in 4648 milliseconds

1 2 3 45 6 7 8 91011>>