Home
last modified time | relevance | path

Searched refs:std (Results 10501 - 10525 of 20229) sorted by relevance

1...<<421422423424425426427428429430>>...810

/third_party/node/src/tracing/
H A Dnode_trace_buffer.h45 std::vector<std::unique_ptr<TraceBufferChunk>> chunks_;
75 std::atomic<InternalTraceBuffer*> current_buf_;
/third_party/node/test/addons/async-cleanup-hook/
H A Dbinding.cc25 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 Dpan_pps_perf.cc38 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 Dmap-inference.h57 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 Dcode-comments.cc79 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 Dregister-base.h67 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 Dstack_trace_android.cc79 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 Ddecoder-arm64.cc27 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 Dlsan-virtual-address-space.h24 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 Dv8threads.h74 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 Dallocation-observer.h106 std::vector<AllocationObserverCounter> observers_;
107 std::vector<AllocationObserverCounter> pending_added_;
108 std::unordered_set<AllocationObserver*> pending_removed_;
H A Dallocation-stats.h100 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 Dwasm-module-debug.h27 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 Dinspected-context.h77 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 Dsmi.h64 typename = typename std::enable_if<std::is_enum<E>::value>::type>
90 V8_EXPORT_PRIVATE void SmiPrint(std::ostream& os) const;
H A Dstruct.h26 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 Dmessage-macros.h14 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 Dtrap-handler.h102 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 Ddetachable-vector.h48 // 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 Dsfn_instr_alugroup.h38 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 Ddot.rs5 use std::fs::File;
6 use std::io::{self, Write};
7 use std::path::Path;
/third_party/rust/crates/codespan/codespan/src/
H A Dspan.rs3 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 Daction.rs292 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 Dversion.rs1 use std::path::Path;
2 use std::process::Command;
3 use std::str;
/third_party/rust/crates/io-lifetimes/tests/
H A Dffi.rs9 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()

Completed in 14 milliseconds

1...<<421422423424425426427428429430>>...810