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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Preprocessor/
macro_paste_commaext.c 7 #define debug(format, ...) format, ## __VA_ARGS__) macro
8 debug(V);
9 debug(W, 1, 2);
10 debug(X, 1, 2 );
11 debug(Y, );
12 debug(Z,);
c99-6_10_3_4_p9.c 5 #define debug(...) fprintf(stderr, __VA_ARGS__) macro
9 debug("Flag");
12 debug("X = %d\n", x);
  /external/shflags/examples/
debug_output.sh 4 # '--debug') flag is given, additinal "debug" output is enabled.
12 # $ ./debug_output.sh --debug sing
18 DEFINE_boolean 'debug' false 'enable debug mode' 'd'
26 debug() function
29 echo "DEBUG: $@" >&2
48 debug "I'm getting ready to say something..."
53 debug "I'm getting ready to sing something..."
  /external/syslinux/com32/lib/sys/vesa/
debug.h 11 static void debug(const char *str, ...)
29 static inline void debug(const char *str, ...) function
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/bfin/
pseudo.s 2 .global debug
4 debug: label
  /art/compiler/debug/
elf_debug_writer.h 25 #include "debug/dwarf/dwarf_constants.h"
26 #include "debug/debug_info.h"
34 namespace debug { namespace in namespace:art
65 } // namespace debug
  /cts/tests/tests/debug/src/android/debug/cts/
DebugTest.java 17 package android.debug.cts;
  /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) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
linktree.py 17 debug = 0 variable
51 if debug: print 'linknames', (old, new, link)
62 if debug > 1: print oldname, newname, linkname
  /external/libchrome/base/debug/
alias.cc 5 #include "base/debug/alias.h"
9 namespace debug { namespace in namespace:base
22 } // namespace debug
alias.h 11 namespace debug { namespace in namespace:base
18 } // namespace debug
debugger.h 15 namespace debug { namespace in namespace:base
34 // the debugger is suppressed for debug errors, even in debug mode (normally
41 } // namespace debug
dump_without_crashing.h 14 namespace debug { namespace in namespace:base
27 } // namespace debug
task_annotator.h 15 namespace debug { namespace in namespace:base
17 // Implements common debug annotations for posted tasks. This includes data
42 } // namespace debug
dump_without_crashing.cc 5 #include "base/debug/dump_without_crashing.h"
19 namespace debug { namespace in namespace:base
33 } // namespace debug
  /external/python/cpython2/Tools/scripts/
linktree.py 17 debug = 0 variable
51 if debug: print 'linknames', (old, new, link)
62 if debug > 1: print oldname, newname, linkname
  /external/python/cpython3/Tools/scripts/
linktree.py 17 debug = 0 variable
51 if debug: print('linknames', (old, new, link))
62 if debug > 1: print(oldname, newname, linkname)
  /external/swiftshader/src/OpenGL/compiler/
Pragma.h 19 // By default optimization is turned on and debug is turned off.
20 TPragma() : optimize(true), debug(false) { }
21 TPragma(bool o, bool d) : optimize(o), debug(d) { }
24 bool debug; member in struct:TPragma
  /external/valgrind/tests/
min_power_isa.c 14 * Second argument "-debug" is optional. If passed, then the defined ISA
19 int debug = 0; local
23 if ((argc == 3) && (strcmp(argv[2], "-debug") == 0)) {
24 debug = 1;
27 fprintf(stderr, "usage: min_power_ISA <ISA> [-debug]\n" );
34 if (debug) printf("HAS_ISA_2_05 is set\n");
39 if (debug) printf("HAS_ISA_2_06 is set\n");
44 if (debug) printf("HAS_ISA_2_07 is set\n");
49 if (debug) printf("HAS_ISA_3_00 is set\n");
  /frameworks/base/libs/hwui/debug/
MockGlesDriver.h 25 namespace debug { namespace in namespace:android::uirenderer
35 } // namespace debug
  /prebuilts/go/darwin-x86/src/runtime/debug/
stack.go 5 // Package debug contains facilities for programs to debug themselves while
7 package debug package
  /prebuilts/go/darwin-x86/src/syscall/
mksysctl_openbsd.pl 17 my $debug = 0;
62 #debug # Special handling required
142 sub debug() { subroutine
143 print STDERR "$_[0]\n" if $debug;
179 &debug("Processing $header...");
206 &debug("Ignoring $ctlname...");
214 &debug("Missing node $part");
  /prebuilts/go/linux-x86/src/runtime/debug/
stack.go 5 // Package debug contains facilities for programs to debug themselves while
7 package debug package
  /prebuilts/go/linux-x86/src/syscall/
mksysctl_openbsd.pl 17 my $debug = 0;
62 #debug # Special handling required
142 sub debug() { subroutine
143 print STDERR "$_[0]\n" if $debug;
179 &debug("Processing $header...");
206 &debug("Ignoring $ctlname...");
214 &debug("Missing node $part");
  /external/mockito/src/test/java/org/mockitousage/debugging/
NewMockito.java 11 //TODO get rid when debug() finally is out
14 public static MockitoDebugger debug() { method in class:NewMockito

Completed in 654 milliseconds

1 2 3 4 5 6 7 8 91011>>