/external/nist-sip/java/gov/nist/core/ |
Debug.java | 33 * A class to do debug printfs 35 public class Debug { 37 public static boolean debug = false; field in class:Debug 43 Debug.stackLogger = stackLogger; 47 if ((parserDebug || debug )&& stackLogger != null ) 51 if ((parserDebug || debug ) && stackLogger != null) { 57 if ((parserDebug || debug) && stackLogger != null ) {
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/ |
SetSourceFileMethodItem.java | 32 package org.jf.baksmali.Adaptors.Debug; 34 import org.jf.dexlib2.iface.debug.SetSourceFile;
|
EndLocalMethodItem.java | 32 package org.jf.baksmali.Adaptors.Debug; 35 import org.jf.dexlib2.iface.debug.EndLocal;
|
RestartLocalMethodItem.java | 32 package org.jf.baksmali.Adaptors.Debug; 35 import org.jf.dexlib2.iface.debug.RestartLocal;
|
StartLocalMethodItem.java | 32 package org.jf.baksmali.Adaptors.Debug; 35 import org.jf.dexlib2.iface.debug.StartLocal;
|
/packages/experimental/InstantCookieApp/src/test/instant/cookie/ |
CookieTest.java | 20 import android.os.Debug; 34 Debug.waitForDebugger();
|
/prebuilts/go/darwin-x86/src/cmd/asm/internal/flags/ |
flags.go | 17 Debug = flag.Bool("debug", false, "dump instructions as they are parsed")
|
/prebuilts/go/linux-x86/src/cmd/asm/internal/flags/ |
flags.go | 17 Debug = flag.Bool("debug", false, "dump instructions as they are parsed")
|
/external/v8/src/inspector/ |
debugger_script_externs.js | 62 var Debug = {}; 64 Debug.clearAllBreakPoints = function() {} 67 Debug.scripts = function() {} 75 * @param {Debug.BreakPositionAlignment=} positionAlignment 77 Debug.setScriptBreakPointById = function(scriptId, line, column, condition, groupId, positionAlignment) {} 83 Debug.findBreakPointActualLocations = function(breakId) {} 90 Debug.findBreakPoint = function(breakId, remove) {} 93 Debug.debuggerFlags = function() {} 101 Debug.BreakPositionAlignment = BreakPositionAlignment; 104 Debug.StepAction = { StepOut: 0 [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
ParseTreeBuilder.cs | 33 namespace Antlr.Runtime.Debug {
|
TraceDebugEventListener.cs | 33 namespace Antlr.Runtime.Debug {
|
DebugTokenStream.cs | 33 namespace Antlr.Runtime.Debug {
|
DebugTreeNodeStream.cs | 33 namespace Antlr.Runtime.Debug { 39 * Debug any tree node stream. The constructor accepts the stream 40 * and a debug listener. As node stream calls come in, debug events
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
ParseTreeBuilder.cs | 33 namespace Antlr.Runtime.Debug
|
TraceDebugEventListener.cs | 33 namespace Antlr.Runtime.Debug
|
DebugTokenStream.cs | 33 namespace Antlr.Runtime.Debug
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/ |
trace-event-listener.rb | 5 module Debug 6 =begin rdoc ANTLR3::Debug::EventListener 91 end # module Debug
|
/external/llvm/tools/llvm-cov/ |
CoverageViewOptions.h | 24 bool Debug;
|
/hardware/qcom/display/msm8996/sdm/libs/utils/ |
debug.cpp | 31 #include <utils/debug.h> 36 Debug Debug::debug_; 38 Debug::Debug() : debug_handler_(&default_debug_handler_) { 41 int Debug::GetSimulationFlag() { 48 int Debug::GetHDMIResolution() { 55 uint32_t Debug::GetIdleTimeoutMs() { 62 int Debug::GetBootAnimLayerCount() { 69 bool Debug::IsRotatorDownScaleDisabled() [all...] |
/packages/apps/Camera2/src/com/android/camera/app/ |
CameraApp.java | 22 import android.os.Debug; 40 * Use this if you need to debug code that is executed while the app starts 50 Debug.waitForDebugger();
|
/prebuilts/go/darwin-x86/src/cmd/internal/gcprog/ |
gcprog.go | 35 // The typical use of a Writer is to call Init, maybe call Debug, 43 debug io.Writer 53 // Debug causes the writer to print a debugging trace to out 56 func (w *Writer) Debug(out io.Writer) { 57 w.debug = out 67 if w.debug != nil { 77 if w.debug != nil { 96 if w.debug != nil { 97 fmt.Fprintf(w.debug, "gcprog: ptr at %d\n", index) 123 if w.debug != nil [all...] |
/prebuilts/go/linux-x86/src/cmd/internal/gcprog/ |
gcprog.go | 35 // The typical use of a Writer is to call Init, maybe call Debug, 43 debug io.Writer 53 // Debug causes the writer to print a debugging trace to out 56 func (w *Writer) Debug(out io.Writer) { 57 w.debug = out 67 if w.debug != nil { 77 if w.debug != nil { 96 if w.debug != nil { 97 fmt.Fprintf(w.debug, "gcprog: ptr at %d\n", index) 123 if w.debug != nil [all...] |
/frameworks/base/core/tests/coretests/src/android/os/ |
TraceTest.java | 19 import android.os.Debug; 41 Debug.startNativeTracing(); 47 Debug.stopNativeTracing(); 75 Debug.startMethodTracing("traceTest"); 77 Debug.stopMethodTracing();
|
/device/google/contexthub/util/nanotool/ |
log.cpp | 63 void Log::Debug(const char *format, ...) { 64 LOG_EX_VARARGS(LogLevel::Debug, format); 72 if (Log::level_ < LogLevel::Debug) { 81 Log::Debug("Dumping buffer of size %zu bytes", size); 89 Log::Debug(" %s\t%s", line, line_chars); 103 Log::Debug(" %s%s%s", line, tabs.c_str(), line_chars); 115 case LogLevel::Debug:
|
log.h | 35 #define LOGD(fmt, ...) Log::Debug(fmt, ##__VA_ARGS__) 57 Debug, 73 static void Debug(const char *format, ...);
|