HomeSort by relevance Sort by last modified time
    Searched refs:Collect (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/tensorflow/tensorflow/core/platform/
device_tracer.h 42 // tracer->Collect(&collector);
49 // a single 'DeviceTracer' will collect activity from all devices.
67 // Collect trace results. Results are added to the specified
69 // It is an error to call 'Collect' while a trace is running.
70 virtual Status Collect(StepStatsCollector* collector) = 0;
device_tracer_test.cc 120 TF_EXPECT_OK(tracer->Collect(&collector));
130 Status status = tracer->Collect(&collector);
198 TF_ASSERT_OK(tracer->Collect(&collector));
  /art/runtime/
backtrace_helper.h 35 // Collect the backtrace, do not call more than once.
36 void Collect();
49 void Collect(size_t skip_count) {
51 collector.Collect();
backtrace_helper.cc 65 void BacktraceCollector::Collect() {
89 void BacktraceCollector::Collect() {
  /external/tensorflow/tensorflow/core/profiler/internal/gpu/
tracer.cc 50 Status s = device_tracer_->Collect(step_stats_collector.get());
  /external/tensorflow/tensorflow/core/profiler/internal/
traceme_recorder.h 72 static Events Collect();
traceme_recorder_test.cc 57 auto collected_results = TraceMeRecorder::Collect();
61 auto results_after_stop = TraceMeRecorder::Collect();
  /external/v8/src/debug/
debug-type-profile.h 35 static std::unique_ptr<TypeProfile> Collect(Isolate* isolate);
debug-coverage.h 63 static std::unique_ptr<Coverage> Collect(
debug-type-profile.cc 15 std::unique_ptr<TypeProfile> TypeProfile::Collect(Isolate* isolate) {
debug-coverage.cc 469 Collect(isolate, isolate->code_coverage_mode());
481 return Collect(isolate, v8::debug::Coverage::kBestEffort);
484 std::unique_ptr<Coverage> Coverage::Collect(
  /external/clang/lib/AST/
StmtObjC.cpp 21 ObjCForCollectionStmt::ObjCForCollectionStmt(Stmt *Elem, Expr *Collect,
26 SubExprs[COLLECTION] = Collect;
CXXInheritance.cpp 483 void Collect(const CXXRecordDecl *RD, bool VirtualBase,
489 void FinalOverriderCollector::Collect(const CXXRecordDecl *RD,
507 Collect(BaseDecl, false, InVirtualSubobject, Overriders);
511 // Collect all of the overridders from the base class subobject
524 // Collect may cause VirtualOverriders to reallocate, invalidating the
529 Collect(BaseDecl, true, BaseDecl, *MyVirtualOverriders);
532 Collect(BaseDecl, false, InVirtualSubobject, ComputedBaseOverriders);
626 Collector.Collect(this, false, nullptr, FinalOverriders);
  /external/grpc-grpc/src/csharp/
build_packages_dotnetcli.bat 24 @rem Collect the artifacts built by the previous build step
28 @rem Collect protoc artifacts built by the previous build step
build_unitypackage.bat 24 @rem Collect the artifacts built by the previous build step
28 @rem Collect protoc artifacts built by the previous build step
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 123 void runImpl(const driver::Action *A, bool Collect) {
124 bool CollectChildren = Collect;
131 if (Collect) {
253 // Collect only for Assemble jobs. If we do all jobs we get duplicates
  /external/bcc/examples/lua/
uprobe-readline-perf.lua 39 for _,e in log:read() do -- Collect available reader events
kprobe-latency.lua 59 -- Collect all events
  /external/tensorflow/tensorflow/core/profiler/internal/cpu/
host_tracer.cc 68 events_ = TraceMeRecorder::Collect();
  /external/lzma/CS/7zip/Compress/LZ/
LzOutWindow.cs 19 // System.GC.Collect();
  /development/vndk/tools/header-checker/src/diff/
abi_diff.cpp 57 // Collect all old and new types in maps, so that we can refer to them by
76 llvm::errs() << "Unable to collect dynsym exportables\n";
84 llvm::errs() << "Unable to collect user defined types\n";
163 return (Collect(old_ud_types_map, new_ud_types_map, nullptr, nullptr,
198 if (!Collect(old_exportables_map,
212 // Collect the added and removed elements. The ELF maps are needed because the
219 bool HeaderAbiDiff::Collect(
  /external/v8/src/heap/
object-stats.h 173 void Collect();
  /external/compiler-rt/make/
lib_platforms.mk 53 # Collect all the platform variables for subsequent use.
subdir.mk 63 # Collect all subdirectory variables for subsequent use.
  /external/tensorflow/tensorflow/core/platform/default/
device_tracer.cc 401 Status Collect(StepStatsCollector* collector) override;
650 Status Collect() {
689 static Status Collect(CudaEventRecorder* recorder,
693 auto status = CudaEventCollector(recorder, collector).Collect();
709 Status DeviceTracerImpl::Collect(StepStatsCollector* collector) {
715 TF_RETURN_IF_ERROR(CudaEventCollector::Collect(recorder_.get(), collector));

Completed in 1468 milliseconds

1 2 3