Searched refs:Trace (Results 1 - 25 of 53) sorted by relevance

123

/external/javasqlite/src/main/java/SQLite/
H A DTrace.java7 public interface Trace { interface
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A Ddebug.h24 void Trace(const char* format, ...);
31 #define Trace(...) ((void)0) macro
38 Trace("Assert failed: %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \
43 Trace("Unimplemented invoked: %s(%d)\n", __FUNCTION__, __LINE__); \
48 Trace("Unreachable reached: %s(%d)\n", __FUNCTION__, __LINE__); \
H A Ddebug.cpp20 void Trace(const char *format, ...) { function
/external/llvm/lib/Analysis/
H A DTrace.cpp1 //===- Trace.cpp - Implementation of Trace class --------------------------===//
11 // single entry, multiple exit, region of code that is often hot. Trace-based
18 #include "llvm/Analysis/Trace.h"
25 Function *Trace::getFunction() const {
29 Module *Trace::getModule() const {
35 void Trace::print(raw_ostream &O) const {
37 O << "; Trace from function " << F->getNameStr() << ", blocks:\n";
43 O << "; Trace parent function: \n" << *F;
49 void Trace
[all...]
/external/webrtc/src/system_wrappers/test/
H A DTest.cpp33 Trace::CreateTrace();
34 Trace::SetTraceFile("testTrace.txt");
35 Trace::SetLevelFilter(webrtc::kTraceAll);
64 Trace::ReturnTrace();
/external/chromium/base/debug/
H A Dtrace_event_win.h16 base::debug::TraceLog::Trace( \
23 base::debug::TraceLog::Trace( \
30 base::debug::TraceLog::Trace( \
57 // Trace begin/end/instant events, this is the bottleneck implementation
64 static void Trace(const char* name,
72 static void Trace(const char* name, function in class:base::debug::TraceLog
76 return Trace(name, -1, type, id, extra.c_str(), extra.length());
81 static void Trace(const char* name, function in class:base::debug::TraceLog
85 return Trace(name, -1, type, id, extra, -1);
H A Dtrace_event.h5 // Trace events to track application performance. Events consist of a name
55 base::debug::TraceLog::GetInstance()->Trace( \
66 base::debug::TraceLog::GetInstance()->Trace( \
76 base::debug::TraceLog::GetInstance()->Trace( \
109 void Trace(const std::string& name,
115 void Trace(const std::string& name,
H A Dtrace_event.cc51 void TraceLog::Trace(const std::string& name, function in class:base::debug::TraceLog
59 Trace(name, type, id, WideToUTF8(extra), file, line);
62 void TraceLog::Trace(const std::string& name, function in class:base::debug::TraceLog
H A Dtrace_event_win_unittest.cc214 TraceLog::Trace(kName,
228 TraceLog::Trace(static_cast<const char*>(kName),
240 TraceLog::Trace(static_cast<const char*>(kName),
253 TraceLog::Trace(NULL,
266 TraceLog::Trace(NULL,
/external/libpng/contrib/gregbook/
H A Dreadpng.h67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} macro
69 # define Trace(x) ; macro
H A Dreadpng2.h67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} macro
69 # define Trace(x) ; macro
H A Dwritepng.h67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} macro
69 # define Trace(x) ; macro
H A Drpng-x.c96 /* #define DEBUG : this enables the Trace() macros */
377 Trace((stderr, "calling readpng_get_image()\n"))
380 Trace((stderr, "done with readpng_get_image()\n"))
397 Trace((stderr, "calling rpng_x_display_image()\n"))
402 Trace((stderr, "done with rpng_x_display_image()\n"))
472 Trace((stderr, "default depth is %d: checking other visuals\n",
486 Trace((stderr, "XGetVisualInfo() returned %d 24-bit visuals\n",
697 Trace((stderr, "beginning display loop (image_channels == %d)\n",
699 Trace((stderr, " (width = %ld, rowbytes = %ld, ximage_rowbytes = %d)\n",
701 Trace((stder
[all...]
H A Dreadppm.c161 Trace((stderr, "readpng_get_image: rowbytes = %ld, height = %ld\n", rowbytes, height));
H A Drpng-win.c90 /* #define DEBUG : this enables the Trace() macros */
389 Trace((stderr, "calling readpng_get_image()\n"))
392 Trace((stderr, "done with readpng_get_image()\n"))
409 Trace((stderr, "calling rpng_win_display_image()\n"))
414 Trace((stderr, "done with rpng_win_display_image()\n"))
543 Trace((stderr, "beginning display loop (image_channels == %d)\n",
545 Trace((stderr, "(width = %ld, rowbytes = %ld, wimage_rowbytes = %d)\n",
604 Trace((stderr, "calling final image-flush routine\n"))
/external/webrtc/src/system_wrappers/interface/
H A Dtrace.h27 #define WEBRTC_TRACE Trace::Add
31 class Trace class in namespace:webrtc
/external/chromium/net/disk_cache/
H A Dtrace.h36 void Trace(const char* format, ...);
H A Dtrace.cc88 void Trace(const char* format, ...) { function in namespace:disk_cache
154 void Trace(const char* format, ...) { function in namespace:disk_cache
H A Deviction.cc112 Trace("*** Trim Cache ***");
153 Trace("*** Trim Cache end ***");
263 Trace("NewEntry failed on Trim 0x%x", node->address().value());
289 Trace("*** Trim Cache ***");
365 Trace("*** Trim Cache end ***");
465 Trace("*** Trim Deleted ***");
496 Trace("*** Trim Deleted end ***");
503 Trace("NewEntry failed on Trim 0x%x", node->address().value());
H A Dstorage_block-inl.h120 Trace("Failed data load.");
132 Trace("Failed data store.");
/external/webrtc/src/system_wrappers/source/
H A Dtrace_impl.h56 class TraceImpl : public Trace
61 static Trace* CreateTrace();
64 static Trace* StaticInstance(TraceCount inc,
H A Dtrace_impl.cc38 Trace* TraceImpl::StaticInstance(TraceCount inc, const TraceLevel level)
42 static Trace* volatile theTrace = NULL;
87 Trace* oldValue = theTrace;
153 Trace* newTrace = TraceImpl::CreateTrace();
156 Trace* oldValue = (Trace*)InterlockedExchangePointer(
170 Trace* oldValue = (Trace*)InterlockedExchangePointer(
182 void Trace::CreateTrace()
187 void Trace
[all...]
/external/llvm/include/llvm/Analysis/
H A DTrace.h1 //===- llvm/Analysis/Trace.h - Represent one trace of LLVM code -*- C++ -*-===//
11 // single entry, multiple exit, region of code that is often hot. Trace-based
30 class Trace { class in namespace:llvm
35 /// Trace ctor - Make a new trace from a vector of basic blocks,
39 Trace(const std::vector<BasicBlock *> &vBB) : BasicBlocks (vBB) {} function in class:llvm::Trace
/external/v8/src/
H A Djsregexp.h361 friend class Trace;
462 class Trace;
603 virtual void Emit(RegExpCompiler* compiler, Trace* trace) = 0;
618 Trace* trace,
678 LimitResult LimitVersions(RegExpCompiler* compiler, Trace* trace);
780 virtual void Emit(RegExpCompiler* compiler, Trace* trace);
846 virtual void Emit(RegExpCompiler* compiler, Trace* trace);
878 Trace* trace,
916 virtual void Emit(RegExpCompiler* compiler, Trace* trace);
946 virtual void Emit(RegExpCompiler* compiler, Trace* trac
1172 class Trace { class in namespace:v8::internal
1235 Trace() function in class:v8::internal::Trace
[all...]
/external/v8/test/cctest/
H A Dtest-log-stack-tracer.cc80 StackTracer::Trace(Isolate::Current(), trace_env.sample);
103 static v8::Handle<v8::Value> Trace(const v8::Arguments& args);
122 return v8::FunctionTemplate::New(TraceExtension::Trace);
148 printf("Trace: %p\n", fp);
153 v8::Handle<v8::Value> TraceExtension::Trace(const v8::Arguments& args) { function in class:TraceExtension
306 // StackTracer::Trace
309 CHECK_EQ(FUNCTION_ADDR(TraceExtension::Trace), sample.external_callback);
354 // StackTracer::Trace

Completed in 329 milliseconds

123