/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
H A D | trace.h | 15 // The Trace API produces a trace event file that can be consumed with Chrome's 41 // Trace writes a trace event file into the current working directory that can 44 class Trace { class 48 static Trace* get(); 62 Trace* const trace; 71 Trace* const trace; 77 Trace(); 78 ~Trace(); 79 Trace(const Trace [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
H A D | trace.cpp | 15 // The Trace API produces a trace event file that can be consumed with Chrome's 46 Trace* Trace::get() { in get() 47 static Trace trace; in get() 51 Trace::Trace() { in Trace() function in marl::Trace 54 Thread::setName("Trace worker"); in Trace() 83 Trace::~Trace() { in ~Trace() 88 void Trace [all...] |
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | debug.h | 23 #define Trace(...) ((void)0) macro 35 void Trace(const char* format, ...); 37 inline void Trace(const char* format, ...) {} 39 inline void Trace() {} in Trace() function 46 sh::Trace("Assert failed: %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \ 52 sh::Trace("Unimplemented invoked: %s(%d): ", __FUNCTION__, __LINE__); \ 53 sh::Trace(__VA_ARGS__); \ 54 sh::Trace("\n"); \ 60 sh::Trace("Unreachable reached: %s(%d). %s: %d\n", __FUNCTION__, __LINE__, #value, value); \
|
/third_party/skia/third_party/externals/oboe/samples/debug-utils/ |
H A D | trace.cpp | 37 bool Trace::is_enabled_ = false; 38 bool Trace::has_error_been_shown_ = false; 40 void Trace::beginSection(const char *fmt, ...) { in beginSection() 50 LOGE("Tracing is either not initialized (call Trace::initialize()) " in beginSection() 56 void Trace::endSection() { in endSection() 63 void Trace::initialize() { in initialize()
|
/third_party/node/deps/v8/include/v8-include/cppgc/internal/ |
H A D | gc-info.h | 72 TraceTrait<T>::Trace, // 77 TraceTrait<T>::Trace, // 81 TraceTrait<T>::Trace, // 85 TraceTrait<T>::Trace)) // 88 TraceTrait<T>::Trace, // 93 TraceTrait<T>::Trace, // 97 TraceTrait<T>::Trace, // 101 TraceTrait<T>::Trace)) //
|
/third_party/node/deps/v8/include/cppgc/internal/ |
H A D | gc-info.h | 78 TraceTrait<T>::Trace, // 83 TraceTrait<T>::Trace, // 87 TraceTrait<T>::Trace, // 91 TraceTrait<T>::Trace)) // 94 TraceTrait<T>::Trace, // 99 TraceTrait<T>::Trace, // 103 TraceTrait<T>::Trace, // 107 TraceTrait<T>::Trace)) //
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-nodes.h | 21 class Trace; 141 virtual void Emit(RegExpCompiler* compiler, Trace* trace) = 0; 160 bool EmitQuickCheck(RegExpCompiler* compiler, Trace* bounds_check_trace, 161 Trace* trace, bool preload_has_checked_bounds, 266 LimitResult LimitVersions(RegExpCompiler* compiler, Trace* trace); 347 void Emit(RegExpCompiler* compiler, Trace* trace) override; 423 void Emit(RegExpCompiler* compiler, Trace* trace) override; 452 bool preloaded, Trace* trace, bool first_element_checked, 483 void Emit(RegExpCompiler* compiler, Trace* trace) override; 494 void EmitBoundaryCheck(RegExpCompiler* compiler, Trace* trac [all...] |
H A D | regexp-compiler.cc | 149 // manipulation in an object called the Trace. The Trace object can record a 152 // to be emitted it can flush the Trace or update it. Flushing the Trace 161 // The virtual state found in the Trace affects code generation. For example 270 Trace new_trace; in Assemble() 295 bool Trace::DeferredAction::Mentions(int that) { in Mentions() 304 bool Trace::mentions_reg(int reg) { in mentions_reg() 312 bool Trace::GetStoredPosition(int reg, int* cp_offset) { in GetStoredPosition() 361 int Trace [all...] |
/third_party/skia/third_party/externals/oboe/samples/hello-oboe/src/main/cpp/ |
H A D | LatencyTuningCallback.cpp | 38 if (Trace::isEnabled()) Trace::beginSection("numFrames %d, Underruns %d, buffer size %d", in onAudioReady() 41 if (Trace::isEnabled()) Trace::endSection(); in onAudioReady()
|
/third_party/skia/third_party/externals/oboe/src/common/ |
H A D | Trace.cpp | 19 #include "Trace.h" 33 bool Trace::mIsTracingSupported = false; 35 void Trace::beginSection(const char *format, ...){ in beginSection() 44 LOGE("Tracing is either not initialized (call Trace::initialize()) " in beginSection() 49 void Trace::endSection() { in endSection() 56 void Trace::initialize() { in initialize()
|
H A D | StabilizedCallback.cpp | 19 #include "common/Trace.h" 27 Trace::initialize(); in StabilizedCallback() 67 Trace::beginSection("Actual load"); in onAudioReady() 69 Trace::endSection(); in onAudioReady() 74 Trace::beginSection("Stabilized load for %lldns", stabilizingLoadDurationNanos); in onAudioReady() 76 Trace::endSection(); in onAudioReady()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | Trace.cpp | 1 //===- Trace.cpp - Implementation of Trace class --------------------------===// 10 // single entry, multiple exit, region of code that is often hot. Trace-based 17 #include "llvm/Analysis/Trace.h" 27 Function *Trace::getFunction() const { in getFunction() 31 Module *Trace::getModule() const { in getModule() 36 void Trace::print(raw_ostream &O) const { in print() 38 O << "; Trace from function " << F->getName() << ", blocks:\n"; in print() 44 O << "; Trace parent function: \n" << *F; in print() 50 LLVM_DUMP_METHOD void Trace [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/ |
H A D | Trace.h | 1 //===- Trace.h - XRay Trace Abstraction -----------------------------------===// 9 // Defines the XRay Trace class representing records in an XRay trace file. 26 /// A Trace object represents the records that have been loaded from XRay 28 /// reading the traces in factory functions that populate the Trace object 31 /// Trace objects provide an accessor to an XRayFileHeader which says more about 46 class Trace { class 53 friend Expected<Trace> loadTrace(const DataExtractor &, bool); 71 Expected<Trace> loadTraceFile(StringRef Filename, bool Sort = false); 75 Expected<Trace> loadTrac [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | RDFDeadCode.h | 36 : Trace(false), DFG(dfg), MRI(mri), LV(mri, dfg) {} in DeadCodeElimination() 40 void trace(bool On) { Trace = On; } in trace() 41 bool trace() const { return Trace; } in trace() 48 bool Trace; member
|
/third_party/rust/crates/log/src/ |
H A D | serde.rs | 27 Level::Trace => serializer.serialize_unit_variant("Level", 4, "TRACE"), in serialize() 122 LevelFilter::Trace => serializer.serialize_unit_variant("LevelFilter", 5, "TRACE"), in serialize() 270 (Level::Trace, [level_token("TRACE")]), in test_level_ser_de() 285 (Level::Trace, [level_token("trace")]), in test_level_case_insensitive() 300 (Level::Trace, level_bytes_tokens(b"TRACE")), in test_level_de_bytes() 315 (Level::Trace, level_variant_tokens(4)), in test_level_de_variant_index() 338 (LevelFilter::Trace, [level_filter_token("TRACE")]), in test_level_filter_ser_de() 354 (LevelFilter::Trace, [level_filter_token("trace")]), in test_level_filter_case_insensitive() 370 (LevelFilter::Trace, level_filter_bytes_tokens(b"TRACE")), in test_level_filter_de_bytes() 386 (LevelFilter::Trace, level_filter_variant_token in test_level_filter_de_variant_index() [all...] |
H A D | lib.rs | 189 //! [`Trace`][level_link] level log messages. A logging implementation should 449 Trace, 589 5 => Some(Level::Trace), in from_usize() 597 Level::Trace in max() 625 /// assert_eq!(Some(Level::Trace), levels.last()); in as_str() 653 /// Corresponds to the `Trace` log level. 654 Trace, 768 5 => Some(LevelFilter::Trace), in from_usize() 776 LevelFilter::Trace in max() 806 /// assert_eq!(Some(LevelFilter::Trace), level in as_str() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MachineTraceMetrics.h | 97 friend class Trace; 156 /// Trace predecessor, or NULL for the first block in the trace. 160 /// Trace successor, or NULL for the last block in the trace. 253 /// passes through the current basic block one. The Trace class serves as a 255 class Trace { class in llvm::MachineTraceMetrics 262 explicit Trace(Ensemble &te, TraceBlockInfo &tbi) : TE(te), TBI(tbi) {} in Trace() function in llvm::MachineTraceMetrics::Trace 322 friend class Trace; 336 ArrayRef<const MachineBasicBlock*> Trace); 361 Trace getTrace(const MachineBasicBlock *MBB); 422 const MachineTraceMetrics::Trace in operator <<() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/ |
H A D | Trace.cpp | 1 //===- Trace.cpp - XRay Trace Loading implementation. ---------------------===// 12 #include "llvm/XRay/Trace.h" 325 // After the sort, we then reconstitute `Trace` records using a stateful in loadFDRLog() 352 YAMLXRayTrace Trace; in loadYAMLLog() local 354 In >> Trace; in loadYAMLLog() local 358 FileHeader.Version = Trace.Header.Version; in loadYAMLLog() 359 FileHeader.Type = Trace.Header.Type; in loadYAMLLog() 360 FileHeader.ConstantTSC = Trace.Header.ConstantTSC; in loadYAMLLog() 361 FileHeader.NonstopTSC = Trace in loadYAMLLog() [all...] |
/third_party/rust/crates/env_logger/src/filter/ |
H A D | mod.rs | 417 let level_universe: Level = Level::Trace; // use of trace variant is arbitrary in ensure_tests_cover_level_universe() 419 Level::Error | Level::Warn | Level::Info | Level::Debug | Level::Trace => (), in ensure_tests_cover_level_universe() 437 assert!(!enabled(&logger.directives, Level::Trace, "")); in parse_default_bare_level_off_lc() 447 assert!(!enabled(&logger.directives, Level::Trace, "")); in parse_default_bare_level_off_uc() 457 assert!(!enabled(&logger.directives, Level::Trace, "")); in parse_default_bare_level_error_lc() 467 assert!(!enabled(&logger.directives, Level::Trace, "")); in parse_default_bare_level_error_uc() 477 assert!(!enabled(&logger.directives, Level::Trace, "")); in parse_default_bare_level_warn_lc() 487 assert!(!enabled(&logger.directives, Level::Trace, "")); in parse_default_bare_level_warn_uc() 497 assert!(!enabled(&logger.directives, Level::Trace, "")); in parse_default_bare_level_info_lc() 507 assert!(!enabled(&logger.directives, Level::Trace, "")); in parse_default_bare_level_info_uc() [all...] |
/third_party/node/deps/v8/include/cppgc/ |
H A D | visitor.h | 43 * void Trace(Visitor* visitor) const { 44 * visitor->Trace(foo_); 45 * visitor->Trace(weak_foo_); 66 * Trace method for raw pointers. Prefer the versions for managed pointers. 71 void Trace(const T* t) { in Trace() function in cppgc::Visitor 82 * Trace method for Member. 87 void Trace(const Member<T>& member) { in Trace() function in cppgc::Visitor 90 Trace(value); in Trace() 94 * Trace method for WeakMember. 99 void Trace(cons function in cppgc::Visitor 125 void Trace(const T& object) { Trace() function in cppgc::Visitor 154 void Trace(const EphemeronPair<K, V>& ephemeron_pair) { Trace() function in cppgc::Visitor [all...] |
/third_party/node/deps/v8/include/v8-include/cppgc/ |
H A D | visitor.h | 43 * void Trace(Visitor* visitor) const { 44 * visitor->Trace(foo_); 45 * visitor->Trace(weak_foo_); 66 * Trace method for Member. 71 void Trace(const Member<T>& member) { in Trace() function in cppgc::Visitor 78 * Trace method for WeakMember. 83 void Trace(const WeakMember<T>& weak_member) { in Trace() function in cppgc::Visitor 104 * Trace method for UncompressedMember. 109 void Trace(const subtle::UncompressedMember<T>& member) { in Trace() function in cppgc::Visitor 117 * Trace metho 123 void Trace(const T& object) { Trace() function in cppgc::Visitor 152 void Trace(const EphemeronPair<K, V>& ephemeron_pair) { Trace() function in cppgc::Visitor 371 void Trace(const AnyStrongPersistentType& p) { Trace() function in cppgc::internal::RootVisitor 384 void Trace(const AnyWeakPersistentType& p) { Trace() function in cppgc::internal::RootVisitor [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | wasm-inlining.cc | 34 void WasmInliner::Trace(Node* call, int inlinee, const char* decision) { in Trace() function in v8::internal::compiler::WasmInliner 99 Trace(call, inlinee_index, "not a wasm call"); in ReduceCall() 103 Trace(call, inlinee_index, "imported function"); in ReduceCall() 107 Trace(call, inlinee_index, "recursive call"); in ReduceCall() 111 Trace(call, inlinee_index, "adding to inlining candidates!"); in ReduceCall() 135 void WasmInliner::Trace(const CandidateInfo& candidate, const char* decision) { in Trace() function in v8::internal::compiler::WasmInliner 152 Trace(candidate, "dead node"); in Finalize() 157 Trace(candidate, "not called often enough"); in Finalize() 164 Trace(candidate, "not enough inlining budget"); in Finalize() 224 Trace(candidat in Finalize() [all...] |
/third_party/node/deps/v8/include/ |
H A D | v8-cppgc.h | 169 void Trace(const TracedReferenceBase& ref) { in Trace() function in v8::JSVisitor 207 return {nullptr, Trace}; in GetTraceDescriptor() 210 static void Trace(Visitor* visitor, const void* self) { in Trace() function 211 static_cast<v8::JSVisitor*>(visitor)->Trace( in Trace()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-cppgc.h | 191 void Trace(const TracedReferenceBase& ref) { in Trace() function in v8::JSVisitor 229 return {nullptr, Trace}; in GetTraceDescriptor() 232 static void Trace(Visitor* visitor, const void* self) { in Trace() function 233 static_cast<v8::JSVisitor*>(visitor)->Trace( in Trace()
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | persistent-node.cc | 86 void PersistentRegionBase::Trace(Visitor* visitor) { in Trace() function in cppgc::internal::PersistentRegionBase 92 node.Trace(visitor); in Trace() 148 void CrossThreadPersistentRegion::Trace(Visitor* visitor) { in Trace() function in cppgc::internal::CrossThreadPersistentRegion 150 PersistentRegionBase::Trace(visitor); in Trace()
|