HomeSort by relevance Sort by last modified time
    Searched defs:DEBUG (Results 1 - 25 of 1060) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/tools/idegen/src/
Log.java 22 static final boolean DEBUG = false;
24 static void debug(String message) { method in class:Log
25 if (DEBUG) {
  /external/chromium/testing/gmock/scripts/generator/cpp/
utils.py 27 DEBUG = True
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
debug.py 6 # debug mode.
7 DEBUG = os.environ.get('DISTUTILS_DEBUG')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
debug.py 6 # debug mode.
7 DEBUG = os.environ.get('DISTUTILS_DEBUG')
  /external/llvm/include/llvm/Support/
Debug.h 1 //===- llvm/Support/Debug.h - Easy way to add debug output ------*- C++ -*-===//
14 // In particular, just wrap your code with the DEBUG() macro, and it will be
15 // enabled automatically if you specify '-debug' on the command-line.
17 // that your debug code belongs to class "foo". Then, on the command line, you
18 // can specify '-debug-only=foo' to enable JUST the debug information for the
21 // When compiling without assertions, the -debug-* options and all code in
22 // DEBUG() statements disappears, so it does not affect the runtime of the code.
34 /// all of their DEBUG statements to be activatable with -debug-only=thatstring
    [all...]
  /external/srec/srec/clib/
voicing.c 39 #define DEBUG 0
51 #if DEBUG
136 #if DEBUG
log_add.c 31 #define DEBUG 0
77 #if DEBUG
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
Debug.java 19 public class Debug {
21 public final static boolean DEBUG = false;
  /system/extras/fatblock/
utils.h 28 #define DEBUG(...) EPRINT(__VA_ARGS__)
  /art/runtime/
log_severity.h 22 const int VERBOSE = 0, DEBUG = 1, INFO = 2, WARNING = 3, ERROR = 4, FATAL = 5;
  /external/valgrind/main/VEX/switchback/
binary_switchback.pl 21 use constant DEBUG => 0;
157 unlink($TMPFILE) if (! DEBUG);
163 unlink($TMPFILE) if (! DEBUG);
167 if (DEBUG) {
187 unlink($TMPFILE) if (! DEBUG);
195 unlink($TMPFILE) if (! DEBUG);
258 if (DEBUG) {
295 if (DEBUG) {
309 if (DEBUG) {
328 if (DEBUG) {
    [all...]
  /frameworks/base/core/java/android/util/
Config.java 31 public static final boolean DEBUG = false;
  /frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
ObbBackupService.java 46 static final boolean DEBUG = true;
66 if (DEBUG) {
73 if (DEBUG) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CatLog.java 22 static final boolean DEBUG = true;
25 if (!DEBUG) {
35 if (!DEBUG) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
MatrixUtilsTests.java 27 private static final boolean DEBUG = false;
47 if (DEBUG) {
  /system/core/fastbootd/
debug.h 28 #define DEBUG 4
  /bionic/libc/netbsd/resolv/
res_mkquery.c 100 #ifndef DEBUG
101 #define DEBUG
134 #ifdef DEBUG
241 #ifdef DEBUG
262 #ifdef DEBUG
  /bionic/linker/
linker_debug.h 34 // You can increase the verbosity of debug traces by defining the LD_DEBUG
36 // INFO, TRACE, and DEBUG calls in the source). This will only
55 * To enable/disable specific debug options, change the defines above
82 #define DEBUG(x...) _PRINTVF(2, "DEBUG: " x)
84 #define DEBUG(x...) do {} while (0)
  /build/tools/fs_get_stats/
fs_get_stats.c 17 #define DEBUG(fmt,args...) \
18 do { fprintf(stderr, "DEBUG: " fmt, ##args); } while(0)
20 #define DEBUG(x...) do {} while(0)
  /development/apps/CustomLocale/src/com/android/customlocale2/
ChangeLocale.java 34 private static final boolean DEBUG = true;
43 if (DEBUG) {
71 if (DEBUG) {
CustomLocaleReceiver.java 40 private static final boolean DEBUG = true;
51 if (DEBUG) {
72 if (!is_ok && DEBUG) {
  /device/generic/goldfish/qemu-props/
qemu-props.c 27 #define DEBUG 1
29 #if DEBUG
  /external/chromium_org/chrome/tools/
check_grd_for_unused_strings.py 21 DEBUG = 0
93 if DEBUG:
97 elif DEBUG > 1:
  /external/chromium_org/third_party/icu/source/test/intltest/
nmfmtrt.h 30 static UBool DEBUG;
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/
tasm-options.c 37 #define DEBUG(x) fprintf ## x ;
39 #define DEBUG(x)
52 DEBUG((stderr, "parse_cmdline: entered\n"));
98 DEBUG((stderr, "parse_cmdline: finished\n"));

Completed in 1725 milliseconds

1 2 3 4 5 6 7 8 91011>>