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

12

/frameworks/compile/slang/tests/
H A Dtest.py24 verbose = 0 variable in class:Options
32 if Options.verbose:
36 if Options.verbose:
64 if Options.verbose != 0:
92 if Options.verbose > 1:
111 if Options.verbose > 1:
125 if Options.verbose:
130 if Options.verbose:
134 if Options.verbose:
139 if Options.verbose
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDebug.java163 boolean verbose = false;
166 verbose = true;
170 SQLiteDatabase.dumpAll(printer, verbose);
H A DSQLiteConnection.java1050 * @param verbose True to dump more verbose information.
1052 public void dump(Printer printer, boolean verbose) { argument
1053 dumpUnsafe(printer, verbose);
1068 * @param verbose True to dump more verbose information.
1070 void dumpUnsafe(Printer printer, boolean verbose) { argument
1072 if (verbose) {
1078 mRecentOperations.dump(printer, verbose);
1080 if (verbose) {
1411 dump(Printer printer, boolean verbose) argument
1451 describe(StringBuilder msg, boolean verbose) argument
[all...]
H A DSQLiteConnectionPool.java999 * @param verbose True to dump more verbose information.
1001 public void dump(Printer printer, boolean verbose) { argument
1010 mAvailablePrimaryConnection.dump(indentedPrinter, verbose);
1019 mAvailableNonPrimaryConnections.get(i).dump(indentedPrinter, verbose);
1030 connection.dumpUnsafe(indentedPrinter, verbose);
H A DSQLiteDatabase.java2042 static void dumpAll(Printer printer, boolean verbose) { argument
2044 db.dump(printer, verbose);
2048 private void dump(Printer printer, boolean verbose) { argument
2052 mConnectionPoolLocked.dump(printer, verbose);
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py102 def __init__(self, device=None, verbose=False):
103 self.verbose = verbose
147 if self.verbose:
162 if self.verbose:
201 if not os.path.exists(lib_path) and self.verbose:
337 def __init__(self, adb, name="android-status", cat=gdb.COMMAND_OBSCURE, verbose=False):
339 self.verbose = verbose
356 if self.verbose
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java26 public void setVerbose(boolean verbose) { argument
27 mVerbose = verbose;
/frameworks/compile/slang/
H A Dslang_rs_reflect_utils.h37 // verbose: whether or not to print out additional info about compilation.
46 bool verbose; member in struct:slang::RSSlangReflectUtils::BitCodeAccessorContext
118 const std::string *optionalLicense, bool isJava, bool verbose);
H A DRSCCOptions.td129 def verbose : Flag<["-"], "v">,
130 HelpText<"Display verbose information during the compilation">;
131 def _verbose : Flag<["-"], "verbose">, Alias<verbose>;
132 def __verbose : Flag<["--"], "verbose">, Alias<verbose>;
H A Dslang_rs_reflect_utils.cpp278 context.licenseNote, true, context.verbose)) {
346 bool verbose) {
347 if (verbose) {
342 startFile(const string &outDirectory, const string &outFileName, const string &sourceFileName, const string *optionalLicense, bool isJava, bool verbose) argument
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp35 jint verbose; member in struct:android::levels_t
75 return isLoggable(tag, levels.verbose);
124 levels.verbose = env->GetStaticIntField(clazz, GetStaticFieldIDOrDie(env, clazz, "VERBOSE", "I"));
/frameworks/native/opengl/tests/hwc/
H A DhwcStress.cpp144 static bool verbose = defaultVerbose; variable
339 verbose = true;
479 if (verbose) { testPrintI("Prepare:"); hwcTestDisplayList(list); }
481 if (verbose) {
490 if (verbose) {testPrintI("Set:"); }
492 if (verbose) { hwcTestDisplayListHandles(list); }
535 hwcTestInitDisplay(verbose, &dpy, &surface, &width, &height);
557 if (verbose) { testPrintI("initFrames seed: %u", seed); }
584 if (verbose) {
604 if (verbose) {
[all...]
H A DhwcColorEquiv.cpp25 -v - verbose
136 static bool verbose = defaultVerbose; variable
247 verbose = true;
381 if (verbose) { testPrintI("Prepare:"); hwcTestDisplayList(list); }
383 if (verbose) {
391 if (verbose) {hwcTestDisplayListHandles(list); }
416 hwcTestInitDisplay(verbose, &dpy, &surface, &width, &height);
H A DhwcRects.cpp178 static bool verbose = defaultVerbose; variable
225 verbose = true;
329 if (verbose) { testPrintI("Prepare:"); hwcTestDisplayList(list); }
331 if (verbose) {
340 if (verbose) {testPrintI("Set:"); }
341 if (verbose) { hwcTestDisplayListHandles(list); }
518 if (verbose) {
536 hwcTestInitDisplay(verbose, &dpy, &surface, &width, &height);
H A DhwcCommit.cpp311 static bool verbose = defaultVerbose; variable
377 verbose = true;
826 bool origVerbose = verbose; // Temporarily turn off verbose
827 verbose = false;
849 verbose = origVerbose;
877 bool origVerbose = verbose; // Temporarily turn off verbose
878 verbose = false;
898 verbose
[all...]
H A DhwcTestLib.h105 void hwcTestInitDisplay(bool verbose, EGLDisplay *dpy, EGLSurface *surface,
H A DhwcTestLib.cpp49 void hwcTestInitDisplay(bool verbose, EGLDisplay *dpy, EGLSurface *surface, argument
73 if (verbose) {
99 if (verbose) {
128 if (verbose) {
/frameworks/compile/mclinker/lib/LD/
H A DTextDiagnosticPrinter.cpp83 // show debug message only if verbose >= 0
84 if (m_Config.options().verbose() >= 0) {
93 // show ignored message only if verbose >= 1
94 if (m_Config.options().verbose() >= 1) {
103 // show ignored message only if verbose >= 2
104 if (m_Config.options().verbose() >= 2) {
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp61 bool verbose = true; variable
78 // Turn off verbose so that we only generate the .info file.
80 verbose = false;
84 verbose = true;
278 if (verbose) {
285 if (verbose) {
306 if (verbose) {
/frameworks/base/wifi/java/android/net/wifi/
H A DIWifiManager.aidl151 void enableVerboseLogging(int verbose);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiTrafficPoller.java107 void enableVerboseLogging(int verbose) { argument
108 if (verbose > 0 ) {
H A DSupplicantStateTracker.java82 void enableVerboseLogging(int verbose) { argument
83 if (verbose > 0) {
/frameworks/base/tools/obbtool/
H A Dmkobb.sh173 -v) verbose=1; shift;;
/frameworks/compile/libbcc/tests/debuginfo/
H A Dbuild_test_apk.sh69 --verbose|-v)
140 echo " --verbose|-v Enable verbose mode"
/frameworks/base/tools/aapt2/
H A DMain.cpp307 // Whether to output verbose details about
309 bool verbose = false; member in struct:AaptOptions
522 if (options.verbose) {
678 if (options.verbose) {
885 if (options.verbose) {
906 if (options.verbose) {
967 if (options.verbose) {
1142 flag::optionalSwitch("-v", "enables verbose logging", true, &options.verbose);

Completed in 628 milliseconds

12