HomeSort by relevance Sort by last modified time
    Searched defs:debug (Results 1 - 25 of 1443) 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..."
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
pseudo.s 2 .global debug
4 debug: label
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/debug/
error.js 19 * You should never need to throw goog.debug.Error(msg) directly, Error(msg) is
24 goog.provide('goog.debug.Error');
34 goog.debug.Error = function(opt_msg) {
43 goog.inherits(goog.debug.Error, Error);
47 goog.debug.Error.prototype.name = 'CustomError';
  /art/compiler/debug/
elf_debug_writer.h 24 #include "debug/dwarf/dwarf_constants.h"
33 namespace debug { namespace in namespace:art
63 } // namespace debug
  /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/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
task_annotator.h 15 namespace debug { namespace in namespace:base
17 // Implements common debug annotations for posted tasks. This includes data
47 } // namespace debug
debugger.cc 5 #include "base/debug/debugger.h"
11 namespace debug { namespace in namespace:base
41 } // namespace debug
  /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");
  /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/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/ltrace/
debug.h 28 /* debug levels:
43 #define debug(level, expr...) debug_(level, __FILE__, __LINE__, expr) macro
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_compute.h 56 static bool check_debug = false, debug = false; local
59 debug = debug_get_bool_option("R600_COMPUTE_DEBUG", FALSE);
62 if (debug) {
  /external/mesa3d/src/mapi/mapi/
table.c 37 static int debug = -1; local
39 if (debug < 0)
40 debug = (getenv("MESA_DEBUG") || getenv("LIBGL_DEBUG"));
42 if (debug)
  /art/compiler/
elf_writer.h 35 namespace debug { namespace in namespace:art
37 } // namespace debug
56 virtual void PrepareDebugInfo(const ArrayRef<const debug::MethodDebugInfo>& method_infos) = 0;
62 virtual void WriteDebugInfo(const ArrayRef<const debug::MethodDebugInfo>& method_infos) = 0;
  /device/moto/shamu/
init.mmi.touch.sh 35 debug() function
37 [ $dbg_on ] && echo "Debug: $*"
63 debug "searching driver for vendor [$touch_vendor]"
66 debug "no driver for vendor [$touch_vendor] is running"
69 debug "driver for vendor [$touch_vendor] found!!!"
77 debug "sysfs touch path: $touch_path"
82 debug "wait until driver reports <ready to flash>..."
86 debug "ready to flash!!!"
90 debug "not ready; keep waiting..."
103 debug "retrieving property: [$touch_path/$1]
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/echo/
main.py 28 debug=True) variable
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
main.py 28 debug=True) variable
  /external/elfutils/tests/
debuglink.c 53 const char *debug = dwelf_elf_gnu_debuglink (elf, &crc); local
54 if (debug == NULL)
57 printf ("%s: %s, crc: %" PRIx32 "\n", file, debug, crc);
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsBooleanArity.java 24 @Parameter(names = "-debug", arity = 1)
25 public Boolean debug = false; field in class:ArgsBooleanArity
ArgsBooleanArity0.java 24 @Parameter(names = "-debug", arity = 0)
25 public Boolean debug = false; field in class:ArgsBooleanArity0

Completed in 3559 milliseconds

1 2 3 4 5 6 7 8 91011>>