HomeSort by relevance Sort by last modified time
    Searched full:verbose (Results 251 - 275 of 3185) sorted by null

<<11121314151617181920>>

  /frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
SysTrace.java 37 private static final boolean VERBOSE = Log.isLoggable(TAG, Log.VERBOSE);
49 if (VERBOSE) {
66 if (VERBOSE) {
84 if (VERBOSE) {
103 if (VERBOSE) {
117 if (VERBOSE) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 73 * To enable PBAP DEBUG/VERBOSE logging - run below cmd in adb shell, and
75 * "setprop log.tag.BluetoothPbapService DEBUG"; enable both VERBOSE and
76 * DEBUG log: "setprop log.tag.BluetoothPbapService VERBOSE"
81 public static final boolean VERBOSE = false;
196 if (VERBOSE) Log.v(TAG, "Pbap Service onCreate");
203 if (VERBOSE) Log.v(TAG, "Starting PBAP service");
237 if (VERBOSE) Log.v(TAG, "action: " + action);
240 if (VERBOSE) Log.v(TAG, "state: " + state);
277 if (VERBOSE) Log.v(TAG, "setTrust() result=" + result);
307 if (VERBOSE) Log.v(TAG, "Pbap Service onDestroy")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
applesingle.py 51 def __init__(self, fileobj, verbose=False):
57 if verbose:
74 if verbose:
107 def decode(infile, outpath, resonly=False, verbose=False):
108 """decode(infile, outpath [, resonly=False, verbose=False])
131 asfile = AppleSingle(infile, verbose=verbose)
  /system/core/libsparse/
simg_dump.py 23 -v verbose output
34 verbose = 0 # -v
38 ["verbose"])
43 if o in ("-v", "--verbose"):
44 verbose += 1
91 if not verbose:
144 if verbose > 1:
  /system/extras/tests/bionic/libc/
run-test.sh 25 VERBOSE=no
36 --verbose)
37 if [ "$VERBOSE" = "yes" ] ; then
40 VERBOSE=yes
69 echo " --verbose Enable verbose mode"
135 if [ $VERBOSE = "yes" ] ; then
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_lock.py 8 from test_all import db, test_support, verbose, have_threads, \
35 if verbose:
40 if verbose:
43 if verbose:
46 if verbose:
52 if verbose:
155 if verbose:
160 if verbose:
164 if verbose:
9 get_new_environment_path, get_new_database_path namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_lock.py 8 from test_all import db, test_support, verbose, have_threads, \
35 if verbose:
40 if verbose:
43 if verbose:
46 if verbose:
52 if verbose:
155 if verbose:
160 if verbose:
164 if verbose:
9 get_new_environment_path, get_new_database_path namespace
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedMember.java 62 * @param verbose whether to be verbose with the output
64 public abstract void debugPrint(PrintWriter out, boolean verbose);
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedMember.java 61 * @param verbose whether to be verbose with the output
63 public abstract void debugPrint(PrintWriter out, boolean verbose);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
main.py 24 -v, --verbose Verbose output
39 -v, --verbose Verbose output
54 -v, --verbose Verbose output
120 long_opts = ['help', 'verbose', 'quiet', 'failfast', 'catch', 'buffer']
128 if opt in ('-v','--verbose'):
169 parser.add_option('-v', '--verbose', dest='verbose', default=False
    [all...]
  /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/chromium_org/v8/tools/testrunner/objects/
context.py 30 def __init__(self, arch, mode, shell_dir, mode_flags, verbose, timeout,
36 self.verbose = verbose
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
EncodedMember.java 62 * @param verbose whether to be verbose with the output
64 public abstract void debugPrint(PrintWriter out, boolean verbose);
  /external/libvpx/libvpx/build/make/
armlink_adapter.sh 13 verbose=0
19 verbose=1
53 [ $verbose -eq 1 ] && echo $cmd
  /external/llvm/test/CodeGen/X86/
unaligned-load.ll 1 ; RUN: llc < %s -mtriple=i386-apple-darwin10.0 -mcpu=core2 -relocation-model=dynamic-no-pic --asm-verbose=0 | FileCheck -check-prefix=I386 %s
2 ; RUN: llc < %s -mtriple=x86_64-apple-darwin10.0 -mcpu=core2 -relocation-model=dynamic-no-pic --asm-verbose=0 | FileCheck -check-prefix=CORE2 %s
3 ; RUN: llc < %s -mtriple=x86_64-apple-darwin10.0 -mcpu=corei7 -relocation-model=dynamic-no-pic --asm-verbose=0 | FileCheck -check-prefix=COREI7 %s
  /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/openssh/regress/
try-ciphers.sh 17 verbose "test $tid: proto 2 cipher $c mac $m"
28 verbose "test $tid: proto 1 cipher $c"
44 verbose "test $tid: proto 2 cipher $c mac $m"
  /frameworks/base/core/java/android/accounts/
AccountAuthenticatorResponse.java 46 if (Log.isLoggable(TAG, Log.VERBOSE)) {
59 if (Log.isLoggable(TAG, Log.VERBOSE)) {
70 if (Log.isLoggable(TAG, Log.VERBOSE)) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_list.py 62 def test_main(verbose=None):
67 if verbose and hasattr(sys, "gettotalrefcount"):
78 test_main(verbose=True)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
main.py 21 -v, --verbose Verbose output
35 -v, --verbose Verbose output
50 -v, --verbose Verbose output
117 long_opts = ['help', 'verbose', 'quiet', 'failfast', 'catch', 'buffer']
125 if opt in ('-v','--verbose'):
169 parser.add_option('-v', '--verbose', dest='verbose', default=False
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_list.py 62 def test_main(verbose=None):
67 if verbose and hasattr(sys, "gettotalrefcount"):
78 test_main(verbose=True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
main.py 21 -v, --verbose Verbose output
35 -v, --verbose Verbose output
50 -v, --verbose Verbose output
117 long_opts = ['help', 'verbose', 'quiet', 'failfast', 'catch', 'buffer']
125 if opt in ('-v','--verbose'):
169 parser.add_option('-v', '--verbose', dest='verbose', default=False
    [all...]
  /system/core/toolbox/
restorecon.c 15 static int verbose; variable
39 if (verbose)
74 verbose = 1;
  /external/chromium_org/third_party/icu/source/tools/ctestfw/
uperf.cpp 26 "\t-v or --verbose print extra information when processing files\n"
46 VERBOSE,
84 verbose(FALSE), bulk_mode(FALSE),
100 verbose(FALSE), bulk_mode(FALSE),
134 if(options[VERBOSE].doesOccur) {
135 verbose = TRUE;
260 if(verbose==TRUE){
369 if(verbose==TRUE){
405 if(verbose==TRUE){
424 //print info only in verbose mod
    [all...]
  /external/icu4c/tools/ctestfw/
uperf.cpp 30 "\t-v or --verbose print extra information when processing files\n"
50 VERBOSE,
88 verbose(FALSE), bulk_mode(FALSE),
104 verbose(FALSE), bulk_mode(FALSE),
138 if(options[VERBOSE].doesOccur) {
139 verbose = TRUE;
270 if(verbose==TRUE){
378 if(verbose==TRUE){
414 if(verbose==TRUE){
433 //print info only in verbose mod
    [all...]

Completed in 2655 milliseconds

<<11121314151617181920>>