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

1 2 3 4 5 6 78 91011>>

  /packages/apps/Camera2/src/com/android/camera/debug/
LogUtil.java 17 package com.android.camera.debug;
Logger.java 17 package com.android.camera.debug;
19 import com.android.camera.debug.Log.Tag;
  /prebuilts/go/darwin-x86/src/cmd/cover/
cover_test.go 41 var debug = flag.Bool("debug", false, "keep rewritten files for debugging") var
67 if !*debug {
83 if !*debug {
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
c++filt.go 42 var debug = flag.Bool("d", false, "Display debugging information for strings on command line") var
65 if *debug {
  /prebuilts/go/darwin-x86/src/net/rpc/
debug.go 8 Some HTML presented at http://machine:port/debug/rpc
39 var debug = template.Must(template.New("RPC debug").Parse(debugText)) var
71 // Runs at /debug/rpc
86 err := debug.Execute(w, services)
  /prebuilts/go/linux-x86/src/cmd/cover/
cover_test.go 41 var debug = flag.Bool("debug", false, "keep rewritten files for debugging") var
67 if !*debug {
83 if !*debug {
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
c++filt.go 42 var debug = flag.Bool("d", false, "Display debugging information for strings on command line") var
65 if *debug {
  /prebuilts/go/linux-x86/src/net/rpc/
debug.go 8 Some HTML presented at http://machine:port/debug/rpc
39 var debug = template.Must(template.New("RPC debug").Parse(debugText)) var
71 // Runs at /debug/rpc
86 err := debug.Execute(w, services)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/
mingw.py 31 def debug(self, *k, **kw): member in class:EmptyLogger
64 log.debug(' - requesting: %s', url)
109 log.debug('found \'%s\'', path[0])
121 log.debug(' - %r', cmd)
130 log.debug(' - url: %s', url)
131 log.debug(' - location: %s', location)
217 log.debug(' - arch: %s', arch)
218 log.debug(' - threading: %s', threading)
219 log.debug(' - exceptions: %s', exceptions)
220 log.debug(' - revision: %s', revision
    [all...]
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/
LoggerWrapper.java 237 public void debug(String msg) { method in class:LoggerWrapper
244 logger.debug(msg);
251 public void debug(String format, Object arg) { method in class:LoggerWrapper
259 logger.debug(format, arg);
266 public void debug(String format, Object arg1, Object arg2) { method in class:LoggerWrapper
274 logger.debug(format, arg1, arg2);
281 public void debug(String format, Object... argArray) { method in class:LoggerWrapper
289 logger.debug(format, argArray);
296 public void debug(String msg, Throwable t) { method in class:LoggerWrapper
303 logger.debug(msg, t)
310 public void debug(Marker marker, String msg) { method in class:LoggerWrapper
323 public void debug(Marker marker, String format, Object arg) { method in class:LoggerWrapper
337 public void debug(Marker marker, String format, Object arg1, Object arg2) { method in class:LoggerWrapper
351 public void debug(Marker marker, String format, Object... argArray) { method in class:LoggerWrapper
366 public void debug(Marker marker, String msg, Throwable t) { method in class:LoggerWrapper
    [all...]
  /external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/
JCLLoggerAdapter.java 160 * Delegates to the {@link Log#debug(java.lang.Object)} method of the underlying
165 public void debug(String msg) { method in class:JCLLoggerAdapter
166 log.debug(msg);
170 * Delegates to the {@link Log#debug(java.lang.Object)} method of the underlying
175 * for level DEBUG.
183 public void debug(String format, Object arg) { method in class:JCLLoggerAdapter
186 log.debug(ft.getMessage(), ft.getThrowable());
191 * Delegates to the {@link Log#debug(java.lang.Object)} method of the underlying
196 * for level DEBUG.
206 public void debug(String format, Object arg1, Object arg2) method in class:JCLLoggerAdapter
225 public void debug(String format, Object... arguments) { method in class:JCLLoggerAdapter
241 public void debug(String msg, Throwable t) { method in class:JCLLoggerAdapter
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/solver/
ExecutionPath.java 121 public void debug(StringBuilder builder, int offset) { method in class:ExecutionPath
139 path.debug(builder, offset);
142 debug(builder, mTrueBranch, offset); method
145 debug(builder, mFalseBranch, offset); method
173 private void debug(StringBuilder builder, ExecutionBranch branch, int offset) { method in class:ExecutionPath
179 branch.getPath().debug(builder, offset + 1);
  /libcore/ojluni/src/main/java/sun/security/util/
ManifestEntryVerifier.java 45 private static final Debug debug = Debug.getInstance("jar"); field in class:ManifestEntryVerifier
209 if (debug != null) {
210 debug.println("Manifest Entry: " +
212 debug.println(" manifest " + toHex(manHash));
213 debug.println(" computed " + toHex(theHash));
214 debug.println();
  /art/compiler/debug/
elf_gnu_debugdata_writer.h 32 namespace debug { namespace in namespace:art
90 linker::VectorOutputStream out("Mini-debug-info ELF file", &buffer);
99 WriteDebugSymbols(builder.get(), true /* mini-debug-info */, debug_info);
112 } // namespace debug
elf_symtab_writer.h 24 #include "debug/debug_info.h"
25 #include "debug/method_debug_info.h"
31 namespace debug { namespace in namespace:art
119 } // namespace debug
method_debug_info.h 27 namespace debug { namespace in namespace:art
48 } // namespace debug
  /art/tools/dexfuzz/src/dexfuzz/
Log.java 29 DEBUG,
44 public static void debug(String msg) { method in class:Log
45 log(LogTag.DEBUG, msg);
  /dalvik/dx/src/com/android/dx/command/dump/
Args.java 23 /** whether to run in debug mode */
24 boolean debug = false; field in class:Args
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
log.py 6 DEBUG = 1
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
36 def debug(self, msg, *args): member in class:Log
37 self._log(DEBUG, msg, args)
53 debug = _global_log.debug variable
71 set_threshold(DEBUG)
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugParser.java 28 package org.antlr.runtime.debug;
43 /** Create a normal parser except wrap the token stream in a debug
59 /** Provide a new debug event listener for this parser. Notify the
  /external/apache-http/src/org/apache/commons/logging/
Log.java 29 * <li>debug</li>
49 * log.debug(theResult);
74 * <p> Is debug logging currently enabled? </p>
78 * when the log level is more than debug. </p>
80 * @return true if debug is enabled in the underlying logger.
166 * <p> Log a message with debug log level. </p>
170 public void debug(Object message); method in interface:Log
174 * <p> Log an error with debug log level. </p>
179 public void debug(Object message, Throwable t); method in interface:Log
  /external/apache-http/src/org/apache/commons/logging/impl/
NoOpLog.java 49 public void debug(Object message) { } method in class:NoOpLog
51 public void debug(Object message, Throwable t) { } method in class:NoOpLog
70 * Debug is never enabled.
  /external/libmojo/base/debug/
proc_maps_linux.cc 5 #include "base/debug/proc_maps_linux.h"
29 namespace debug { namespace in namespace:base
168 } // namespace debug
  /external/libxml2/
testReader.c 37 static int debug = 0; variable
114 if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug")))
115 debug++;
  /external/ltp/testcases/kernel/sched/sched_stress/
sched_tc0.c 83 * debug: enable debugging messages
90 int debug = 0; variable
119 if (debug) {
143 if (debug)
146 if (debug) {
154 if (debug)
245 debug++;

Completed in 1597 milliseconds

1 2 3 4 5 6 78 91011>>