/third_party/node/src/tracing/ |
H A D | node_trace_buffer.h | 45 std::vector<std::unique_ptr<TraceBufferChunk>> chunks_; 75 std::atomic<InternalTraceBuffer*> current_buf_;
|
/third_party/node/test/addons/async-cleanup-hook/ |
H A D | binding.cc | 25 node::RemoveEnvironmentCleanupHook(std::move(data->handle)); in AsyncCleanupHook() 50 data->handle = std::move(handle); in Initialize() 56 node::RemoveEnvironmentCleanupHook(std::move(must_not_call_handle)); in Initialize()
|
/third_party/mesa3d/src/panfrost/ds/ |
H A D | pan_pps_perf.cc | 38 std::swap(ctx, o.ctx); in operator =() 39 std::swap(dev, o.dev); in operator =() 67 std::swap(perf, o.perf); in operator =()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | map-inference.h | 57 std::function<bool(InstanceType)> f); 98 std::function<bool(InstanceType)> f) const; 100 std::function<bool(InstanceType)> f) const;
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-comments.cc | 79 void CodeCommentsWriter::Add(uint32_t pc_offset, std::string comment) { in Add() 80 CodeCommentEntry entry = {pc_offset, std::move(comment)}; in Add() 82 comments_.push_back(std::move(entry)); in Add()
|
H A D | register-base.h | 67 typename = decltype(RegisterName(std::declval<RegType>()))> 68 inline std::ostream& operator<<(std::ostream& os, RegType reg) { in operator <<()
|
/third_party/node/deps/v8/src/base/debug/ |
H A D | stack_trace_android.cc | 79 std::string backtrace = ToString(); in Print() 83 void StackTrace::OutputToStream(std::ostream* os) const { in OutputToStream() 85 *os << "#" << std::setw(2) << i << trace_[i] << "\n"; in OutputToStream()
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | decoder-arm64.cc | 27 std::list<DecoderVisitor*>::iterator it; in InsertVisitorBefore() 43 std::list<DecoderVisitor*>::iterator it; in InsertVisitorAfter() 66 std::list<DecoderVisitor*>::iterator it; \
|
/third_party/node/deps/v8/src/base/sanitizer/ |
H A D | lsan-virtual-address-space.h | 24 std::unique_ptr<v8::VirtualAddressSpace> vas); 60 std::unique_ptr<VirtualAddressSpace> AllocateSubspace( 73 std::unique_ptr<v8::VirtualAddressSpace> vas_;
|
/third_party/node/deps/v8/src/execution/ |
H A D | v8threads.h | 74 return mutex_owner_.load(std::memory_order_relaxed) == ThreadId::Current(); in IsLockedByCurrentThread() 77 return mutex_owner_.load(std::memory_order_relaxed) == id; in IsLockedByThread() 95 // {ThreadId} must be trivially copyable to be stored in {std::atomic}. 97 std::atomic<ThreadId> mutex_owner_;
|
/third_party/node/deps/v8/src/heap/ |
H A D | allocation-observer.h | 106 std::vector<AllocationObserverCounter> observers_; 107 std::vector<AllocationObserverCounter> pending_added_; 108 std::unordered_set<AllocationObserver*> pending_removed_;
|
H A D | allocation-stats.h | 100 std::atomic<size_t> capacity_; 106 std::atomic<size_t> size_; 109 std::unordered_map<const BasicMemoryChunk*, size_t, BasicMemoryChunk::Hasher>
|
/third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
H A D | wasm-module-debug.h | 27 std::string GetModuleName() const; 79 static std::vector<wasm_addr_t> GetCallStack(uint32_t debug_context_id, 95 static std::vector<FrameSummary> FindWasmFrame(
|
/third_party/node/deps/v8/src/inspector/ |
H A D | inspected-context.h | 77 std::unordered_set<int> m_reportedSessionIds; 78 std::unordered_map<int, std::unique_ptr<InjectedScript>> m_injectedScripts;
|
/third_party/node/deps/v8/src/objects/ |
H A D | smi.h | 64 typename = typename std::enable_if<std::is_enum<E>::value>::type> 90 V8_EXPORT_PRIVATE void SmiPrint(std::ostream& os) const;
|
H A D | struct.h | 26 void BriefPrintDetails(std::ostream& os); 34 void BriefPrintDetails(std::ostream& os); 85 void BriefPrintDetails(std::ostream& os);
|
/third_party/node/deps/v8/src/torque/ls/ |
H A D | message-macros.h | 14 inline const std::string& name() const { \ 17 inline void set_##name(const std::string& str) { \ 48 inline std::size_t name##_size() { return GetArrayProperty(#name).size(); } \
|
/third_party/node/deps/v8/src/trap-handler/ |
H A D | trap-handler.h | 102 extern std::atomic<bool> g_can_enable_trap_handler; 116 if (g_can_enable_trap_handler.load(std::memory_order_relaxed)) { in IsTrapHandlerEnabled() 117 g_can_enable_trap_handler.store(false, std::memory_order_relaxed); in IsTrapHandlerEnabled()
|
/third_party/node/deps/v8/src/utils/ |
H A D | detachable-vector.h | 48 // should just use a std::vector. 57 size_t new_capacity = std::max(kMinimumCapacity, 2 * capacity_); in push_back() 81 size_t new_capacity = std::max(size_, kMinimumCapacity); in shrink_to_fit() 94 std::copy(data(), data() + size_, new_data_); in Resize()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_instr_alugroup.h | 38 using Slots = std::array<AluInstr *, 5>; 71 auto addr() const {return std::make_pair(m_addr_used, m_addr_is_index);} in addr() 95 void do_print(std::ostream& os) const override;
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | dot.rs | 5 use std::fs::File; 6 use std::io::{self, Write}; 7 use std::path::Path;
|
/third_party/rust/crates/codespan/codespan/src/ |
H A D | span.rs | 3 use std::fmt; 4 use std::ops::Range; 63 use std::cmp::{max, min}; in merge()
|
/third_party/rust/crates/clap/src/builder/ |
H A D | action.rs | 292 pub(crate) fn default_value(&self) -> Option<&'static std::ffi::OsStr> { 296 Self::SetTrue => Some(std::ffi::OsStr::new("false")), 297 Self::SetFalse => Some(std::ffi::OsStr::new("true")), 298 Self::Count => Some(std::ffi::OsStr::new("0")), 304 pub(crate) fn default_missing_value(&self) -> Option<&'static std::ffi::OsStr> { 308 Self::SetTrue => Some(std::ffi::OsStr::new("true")), 309 Self::SetFalse => Some(std::ffi::OsStr::new("false")),
|
/third_party/rust/crates/autocfg/src/ |
H A D | version.rs | 1 use std::path::Path; 2 use std::process::Command; 3 use std::str;
|
/third_party/rust/crates/io-lifetimes/tests/ |
H A D | ffi.rs | 9 use std::{convert::TryInto, os::windows::io::RawHandle, ptr::null_mut}; 48 std::io::Error::last_os_error().kind(), in test_file_not_found() 49 std::io::ErrorKind::NotFound in test_file_not_found()
|