HomeSort by relevance Sort by last modified time
    Searched defs:DEBUG (Results 1 - 25 of 388) 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) {
  /frameworks/base/core/config/debug/android/util/
ConfigBuildFlags.java 23 /* package */ static final boolean DEBUG = true;
  /frameworks/base/core/config/ndebug/android/util/
ConfigBuildFlags.java 23 /* package */ static final boolean DEBUG = false;
  /frameworks/base/core/config/sdk/android/util/
ConfigBuildFlags.java 25 * to avoid treating DEBUG as a constant value. This is necessary
27 * a debug build.
29 /* package */ static boolean DEBUG = false;
  /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
cnorm_tr.c 36 #define DEBUG 0
105 #if DEBUG
113 #if DEBUG
  /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)
  /frameworks/base/core/java/android/util/
Config.java 21 * on release vs. debug build.
27 * If this is a debug build, this field will be true.
29 public static final boolean DEBUG = ConfigBuildFlags.DEBUG;
37 * @deprecated Use {@link #DEBUG} instead.
40 public static final boolean RELEASE = !DEBUG;
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
StkLog.java 22 static final boolean DEBUG = true;
25 if (!DEBUG) {
35 if (!DEBUG) {
  /bionic/libc/netbsd/resolv/
res_mkquery.c 100 #ifndef DEBUG
101 #define DEBUG
134 #ifdef DEBUG
241 #ifdef DEBUG
262 #ifdef DEBUG
  /dalvik/tools/
gclog.py 35 DEBUG = False # DEBUG is a global variable
152 if DEBUG:
203 global DEBUG
216 DEBUG = True
219 print "DEBUG = %s" % DEBUG
  /external/chromium/third_party/icu/source/test/intltest/
nmfmtrt.h 30 static UBool DEBUG;
  /external/icu4c/test/intltest/
nmfmtrt.h 30 static UBool DEBUG;
  /external/netperf/
netsh.h 16 #define DEBUG 0 /* debugging level */
56 debug, /* debugging level */
  /external/proguard/src/proguard/classfile/editor/
VariableSizeUpdater.java 42 private static final boolean DEBUG = false;
44 private static boolean DEBUG = true;
55 // DEBUG =
64 if (DEBUG)
92 if (DEBUG)
  /external/proguard/src/proguard/optimize/
MemberDescriptorSpecializer.java 42 private static final boolean DEBUG = true;
79 if (DEBUG)
119 if (DEBUG)
  /external/srec/srec/cfront/
chelmel4.c 35 #define DEBUG 0
77 #if DEBUG
86 #if DEBUG
  /external/v8/src/
v8.h 37 #if defined(DEBUG) && defined(NDEBUG)
41 #elif !defined(DEBUG) && !defined(NDEBUG)
42 // If neither is defined in Google3, then we are building a debug v8. Mark it
44 #define DEBUG
48 // V8 only uses DEBUG, but included external files
50 #if defined(DEBUG) && defined(NDEBUG)
51 #error both DEBUG and NDEBUG are set
  /frameworks/base/core/java/android/app/backup/
AbsoluteFileBackupHelper.java 33 private static final boolean DEBUG = false;
67 if (DEBUG) Log.d(TAG, "got entity '" + data.getKey() + "' size=" + data.size());
  /frameworks/base/core/java/android/net/
Proxy.java 34 static final private boolean DEBUG = false;
55 if (DEBUG) {
79 if (DEBUG) {
84 if (DEBUG) {
  /frameworks/base/core/java/android/net/http/
HttpLog.java 34 private static final boolean DEBUG = false;
35 static final boolean LOGV = DEBUG ? Config.LOGD : Config.LOGV;
  /hardware/ti/wlan/wl1271/CUDK/os/linux/src/
Android.mk 5 DEBUG ?= y
9 ifeq ($(DEBUG),y)
  /hardware/ti/wlan/wl1271/CUDK/tiwlan_loader/
Android.mk 5 DEBUG ?= y
11 ifeq ($(DEBUG),y)
  /packages/apps/Browser/src/com/android/browser/
Browser.java 33 final static boolean DEBUG = false;
36 final static boolean LOGV_ENABLED = DEBUG;
38 // Set to true to enable extra debug logging.

Completed in 2034 milliseconds

1 2 3 4 5 6 7 8 91011>>