HomeSort by relevance Sort by last modified time
    Searched refs:Trace (Results 126 - 150 of 447) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libpng/contrib/gregbook/
readpng.h 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);}
69 # define Trace(x) ;
  /external/v8/tools/clang/blink_gc_plugin/tests/
cycle_ptrs.h 24 virtual void Trace(Visitor*);
31 virtual void Trace(Visitor*);
persistent_field_in_gc_managed_class.h 22 void Trace(Visitor*);
raw_ptr_to_gc_managed_class.h 25 void Trace(Visitor*);
raw_ptr_to_gc_managed_class_error.h 25 void Trace(Visitor*);
trace_if_needed.h 17 virtual void Trace(Visitor*);
unique_ptr_to_gc_managed_class.h 22 void Trace(Visitor*);
virtual_and_trace_after_dispatch.h 14 void Trace(Visitor*);
weak_fields_require_tracing.h 14 void Trace(Visitor*);
  /cts/hostsidetests/dumpsys/apps/FramestatsTestApp/src/com/android/cts/framestatstestapp/
FramestatsTestAppActivity.java 20 import android.os.Trace;
  /external/llvm/lib/Target/Hexagon/
RDFDeadCode.h 37 : Trace(false), DFG(dfg), MRI(mri), LV(mri, dfg) {}
41 void trace(bool On) { Trace = On; } function in struct:llvm::rdf::DeadCodeElimination
42 bool trace() const { return Trace; } function in struct:llvm::rdf::DeadCodeElimination
49 bool Trace;
  /external/swiftshader/src/OpenGL/compiler/
debug.cpp 27 void Trace(const char *format, ...) {
39 parseContext->trace(buf);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
RDFDeadCode.h 37 : Trace(false), DFG(dfg), MRI(mri), LV(mri, dfg) {}
41 void trace(bool On) { Trace = On; } function in struct:llvm::rdf::DeadCodeElimination
42 bool trace() const { return Trace; } function in struct:llvm::rdf::DeadCodeElimination
49 bool Trace;
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
NativeObjRegistry.java 89 idToDebugInfoMap.put(nativeId, new DebugInfo(new Trace(o)));
112 debugInfo.unregistrationTraces.add(new Trace(o));
115 for (Trace unregistration : debugInfo.unregistrationTraces) {
161 final Trace registrationTrace;
162 final List<Trace> unregistrationTraces = new ArrayList<>();
164 public DebugInfo(Trace trace) {
165 registrationTrace = trace;
169 private static class Trace extends Throwable {
173 private Trace(Object o)
    [all...]
  /art/runtime/
trace.cc 17 #include "trace.h"
71 TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
73 Trace* volatile Trace::the_trace_ = nullptr;
74 pthread_t Trace::sampling_pthread_ = 0U;
75 std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_;
84 ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) {
89 uint32_t Trace::EncodeTraceMethod(ArtMethod* method) {
105 uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) {
111 std::vector<ArtMethod*>* Trace::AllocStackTrace()
    [all...]
  /art/test/1936-thread-end-events/src/art/
Test1936.java 41 Trace.disableTracing(target);
42 Trace.enableTracing2(
  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 18 // by looking at a trace through the current basic block.
20 // For every block, the MachineTraceMetrics pass will pick a preferred trace
21 // that passes through the block. The trace is chosen based on loop structure,
25 // It is expensive to compute a full arbitrary trace for every block, so to
31 // Traces tend to align with loops. The trace through a block in an inner loop
33 // nested loops, the trace may begin and end at those instead.
35 // For each trace, we compute the critical path length, which is the number of
36 // cycles required to execute the trace when execution is limited by data
38 // of cycles required to execute all instructions in the trace when ignoring
78 class Trace;
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
logging.cc 18 #include "webrtc/system_wrappers/include/trace.h"
54 return WebRtcSeverity(sev) & Trace::level_filter() ? true : false;
59 Trace::Add(WebRtcSeverity(severity_), kTraceUndefined, 0, "%s", str.c_str());
  /external/pdfium/xfa/fxfa/parser/
cxfa_trace.cpp 16 constexpr wchar_t kName[] = L"trace";
25 XFA_Element::Trace,
  /external/webrtc/webrtc/modules/video_coding/test/
video_rtp_play.cc 13 #include "webrtc/system_wrappers/include/trace.h"
34 webrtc::Trace::CreateTrace();
35 webrtc::Trace::SetTraceFile(trace_file.c_str());
36 webrtc::Trace::set_level_filter(webrtc::kTraceAll);
86 webrtc::Trace::ReturnTrace();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTrace.java 6 import android.os.Trace;
18 * Shadow implementation for {@link Trace}, which stores the traces locally in arrays (unlike the
25 @Implements(Trace.class)
43 /** Starts a new trace section with given name. */
46 if (Trace.isTagEnabled(TRACE_TAG_APP)) {
66 * Ends the most recent active trace section.
68 * @throws {@link AssertionError} if called without any active trace section.
72 if (Trace.isTagEnabled(TRACE_TAG_APP)) {
75 Log.e(TAG, "Trying to end a trace section that was never started");
90 return directlyOn(Trace.class, "isTagEnabled", ClassParameter.from(long.class, traceTag))
    [all...]
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
TensorFlowImageClassifier.java 20 import android.os.Trace;
129 Trace.beginSection("recognizeImage");
131 Trace.beginSection("preprocessBitmap");
141 Trace.endSection();
144 Trace.beginSection("feed");
146 Trace.endSection();
149 Trace.beginSection("run");
151 Trace.endSection();
154 Trace.beginSection("fetch");
156 Trace.endSection()
    [all...]
TensorFlowMultiBoxDetector.java 21 import android.os.Trace;
205 Trace.beginSection("recognizeImage");
207 Trace.beginSection("preprocessBitmap");
217 Trace.endSection(); // preprocessBitmap
220 Trace.beginSection("feed");
222 Trace.endSection();
225 Trace.beginSection("run");
227 Trace.endSection();
230 Trace.beginSection("fetch");
235 Trace.endSection()
    [all...]
TensorFlowObjectDetectionAPIModel.java 21 import android.os.Trace;
137 Trace.beginSection("recognizeImage");
139 Trace.beginSection("preprocessBitmap");
149 Trace.endSection(); // preprocessBitmap
152 Trace.beginSection("feed");
154 Trace.endSection();
157 Trace.beginSection("run");
159 Trace.endSection();
162 Trace.beginSection("fetch");
171 Trace.endSection()
    [all...]
TensorFlowYoloDetector.java 21 import android.os.Trace;
138 Trace.beginSection("recognizeImage");
140 Trace.beginSection("preprocessBitmap");
150 Trace.endSection(); // preprocessBitmap
153 Trace.beginSection("feed");
155 Trace.endSection();
160 Trace.beginSection("run");
162 Trace.endSection();
167 Trace.beginSection("fetch");
173 Trace.endSection()
    [all...]

Completed in 872 milliseconds

1 2 3 4 56 7 8 91011>>