Home
last modified time | relevance | path

Searched refs:shared_ptr (Results 1 - 25 of 612) sorted by relevance

12345678910>>...25

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
H A DContext.hpp66 std::shared_ptr<Thread> currentThread();
69 // does not exist or no longer has any external shared_ptr references.
70 std::shared_ptr<Thread> get(ID<Thread>);
73 // external shared_ptr reference.
74 std::vector<std::shared_ptr<Thread>> threads();
80 std::shared_ptr<File> createVirtualFile(const std::string &name,
85 std::shared_ptr<File> createPhysicalFile(const std::string &path);
88 // does not exist or no longer has any external shared_ptr references.
89 std::shared_ptr<File> get(ID<File>);
93 std::shared_ptr<Fil
[all...]
H A DThread.hpp46 const std::shared_ptr<File> &file,
47 const std::shared_ptr<VariableContainer> &variables);
53 const std::shared_ptr<File> file;
56 const std::shared_ptr<VariableContainer> variables;
60 const std::shared_ptr<File> &file, in Scope()
61 const std::shared_ptr<VariableContainer> &variables) in Scope()
87 std::shared_ptr<Scope> arguments;
90 std::shared_ptr<Scope> locals;
93 std::shared_ptr<Scope> registers;
96 std::shared_ptr<Scop
[all...]
H A DContext.cpp63 std::shared_ptr<ListenerSet> listeners = std::make_shared<ListenerSet>();
175 void addFile(const std::shared_ptr<File> &file);
181 std::unordered_map<std::thread::id, std::shared_ptr<Thread>> threadsByStdId;
230 void Context::Impl::addFile(const std::shared_ptr<File> &file) in addFile()
247 std::shared_ptr<Context> Context::create() in create()
249 return std::shared_ptr<Context>(new Context::Impl()); in create()
296 std::shared_ptr<Thread> Context::Lock::currentThread() in currentThread()
317 std::shared_ptr<Thread> Context::Lock::get(Thread::ID id) in get()
322 std::vector<std::shared_ptr<Thread>> Context::Lock::threads() in threads()
324 std::vector<std::shared_ptr<Threa in threads()
[all...]
H A DVariable.hpp41 std::shared_ptr<Value> value;
70 virtual std::shared_ptr<Value> get(const std::string &name);
99 inline std::shared_ptr<Value> get(const std::string &name) override;
105 inline void put(const std::string &name, const std::shared_ptr<Value> &value);
110 inline void extend(const std::shared_ptr<Variables> &base);
125 std::vector<std::shared_ptr<Variables>> extends GUARDED_BY(mutex);
155 std::shared_ptr<Value> VariableContainer::get(const std::string &name) in get()
193 const std::shared_ptr<Value> &value) in put()
198 void VariableContainer::extend(const std::shared_ptr<Variables> &base) in extend()
H A DValue.hpp58 virtual std::shared_ptr<Variables> children() { return nullptr; } in children()
96 Struct(const std::string &type, const std::shared_ptr<Variables> &members) in Struct()
105 std::shared_ptr<Variables> children() override { return members; }
112 static std::shared_ptr<Struct> create(const std::string &name, F &&fields) in create()
121 std::shared_ptr<Variables> const members;
124 // make_constant() returns a shared_ptr to a Constant with the given value.
126 inline std::shared_ptr<Constant<T>> make_constant(const T &value) in make_constant()
131 // make_reference() returns a shared_ptr to a Reference with the given value.
133 inline std::shared_ptr<Reference<T>> make_reference(const T &value) in make_reference()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DWorkerThread.cpp59 std::shared_ptr<WaitableEvent> postWorkerTask(std::shared_ptr<Closure> task) override;
65 std::shared_ptr<WaitableEvent> SingleThreadedWorkerPool::postWorkerTask( in postWorkerTask()
66 std::shared_ptr<Closure> task) in postWorkerTask()
137 std::shared_ptr<WaitableEvent> postWorkerTask(std::shared_ptr<Closure> task) override;
150 std::queue<std::pair<std::shared_ptr<AsyncWaitableEvent>, std::shared_ptr<Closure>>> mTaskQueue;
154 std::shared_ptr<WaitableEvent> AsyncWorkerPool::postWorkerTask(std::shared_ptr<Closur
[all...]
H A DWorkerThread.h46 void setWorkerThreadPool(std::shared_ptr<WorkerThreadPool> pool) { mPool = pool; } in setWorkerThreadPool()
49 static void WaitMany(std::array<std::shared_ptr<WaitableEvent>, Count> *waitables) in WaitMany()
59 std::shared_ptr<WorkerThreadPool> mPool;
78 static std::shared_ptr<WorkerThreadPool> Create(bool multithreaded);
79 static std::shared_ptr<WaitableEvent> PostWorkerTask(std::shared_ptr<WorkerThreadPool> pool,
80 std::shared_ptr<Closure> task);
89 virtual std::shared_ptr<WaitableEvent> postWorkerTask(std::shared_ptr<Closure> task) = 0;
/third_party/skia/modules/skparagraph/include/
H A DFontCollection.h50 void setAssetFontManager(std::shared_ptr<RSFontMgr> fontManager);
51 void setDynamicFontManager(std::shared_ptr<RSFontMgr> fontManager);
52 void setTestFontManager(std::shared_ptr<RSFontMgr> fontManager);
53 void setDefaultFontManager(std::shared_ptr<RSFontMgr> fontManager);
54 void setDefaultFontManager(std::shared_ptr<RSFontMgr> fontManager, const char defaultFamilyName[]);
55 void setDefaultFontManager(std::shared_ptr<RSFontMgr> fontManager, const std::vector<SkString>& defaultFamilyNames);
57 std::shared_ptr<RSFontMgr> getFallbackManager() const in getFallbackManager()
63 std::vector<std::shared_ptr<RSTypeface>> findTypefaces(
65 std::vector<std::shared_ptr<RSTypeface>> findTypefaces(
68 std::shared_ptr<RSTypefac
[all...]
/third_party/skia/modules/skparagraph/src/
H A DFontCollection.cpp13 std::shared_ptr<RSTypeface> RSLegacyMakeTypeface( in RSLegacyMakeTypeface()
14 std::shared_ptr<RSFontMgr> fontMgr, const char familyName[], RSFontStyle style) in RSLegacyMakeTypeface()
22 return std::shared_ptr<RSTypeface>(typeface); in RSLegacyMakeTypeface()
30 std::unordered_map<uint32_t, std::shared_ptr<RSTypeface>> g_faceTypeCache(MAX_VARTYPEFACE_SIZE);
74 void FontCollection::setAssetFontManager(std::shared_ptr<RSFontMgr> font_manager) {
83 void FontCollection::setDynamicFontManager(std::shared_ptr<RSFontMgr> font_manager) {
92 void FontCollection::setTestFontManager(std::shared_ptr<RSFontMgr> font_manager)
103 void FontCollection::setDefaultFontManager(std::shared_ptr<RSFontMgr> fontManager,
115 void FontCollection::setDefaultFontManager(std::shared_ptr<RSFontMgr> fontManager,
126 void FontCollection::setDefaultFontManager(std::shared_ptr<RSFontMg
[all...]
/third_party/node/src/
H A Dnode_sockaddr.h159 std::shared_ptr<SocketAddress> address);
169 std::shared_ptr<SocketAddress> address);
171 inline const std::shared_ptr<SocketAddress>& address() const { in address()
189 inline explicit TransferData(std::shared_ptr<SocketAddress> address) in TransferData()
202 std::shared_ptr<SocketAddress> address_;
206 std::shared_ptr<SocketAddress> address_;
250 std::shared_ptr<SocketAddressBlockList> parent = {});
253 void AddSocketAddress(const std::shared_ptr<SocketAddress>& address);
255 void RemoveSocketAddress(const std::shared_ptr<SocketAddress>& address);
258 const std::shared_ptr<SocketAddres
[all...]
H A Dinspector_io.h31 std::shared_ptr<MainThreadHandle> main_thread,
33 std::shared_ptr<ExclusiveAccess<HostPort>> host_port,
43 InspectorIo(std::shared_ptr<MainThreadHandle> handle,
45 std::shared_ptr<ExclusiveAccess<HostPort>> host_port,
56 std::shared_ptr<MainThreadHandle> main_thread_;
59 std::shared_ptr<RequestQueue> request_queue_;
60 std::shared_ptr<ExclusiveAccess<HostPort>> host_port_;
H A Djs_native_api_v8_inspector.cc113 std::shared_ptr<MainThreadHandle> GetHandle();
132 std::shared_ptr<MainThreadHandle> handle_;
209 std::shared_ptr<MainThreadHandle> thread, int object_id) in AnotherThreadObjectReference()
214 std::shared_ptr<MainThreadHandle> thread, Factory factory) in AnotherThreadObjectReference()
246 std::shared_ptr<MainThreadHandle> thread_;
281 std::shared_ptr<MainThreadHandle> thread, in CrossThreadInspectorSession()
301 ThreadSafeDelegate(std::shared_ptr<MainThreadHandle> thread, int object_id) in ThreadSafeDelegate()
313 std::shared_ptr<MainThreadHandle> thread_;
373 std::shared_ptr<MainThreadHandle> MainThreadInterface::GetHandle() { in GetHandle()
550 std::shared_ptr<RequestQueu
[all...]
/third_party/node/src/inspector/
H A Dworker_inspector.h25 std::shared_ptr<MainThreadHandle> worker) = 0;
31 explicit WorkerManagerEventHandle(std::shared_ptr<WorkerManager> manager, in WorkerManagerEventHandle()
38 std::shared_ptr<WorkerManager> manager_;
45 std::shared_ptr<MainThreadHandle> worker_thread) in WorkerInfo()
51 std::shared_ptr<MainThreadHandle> worker_thread;
58 std::shared_ptr<MainThreadHandle> parent_thread,
67 void WorkerStarted(std::shared_ptr<MainThreadHandle> worker_thread,
80 std::shared_ptr<MainThreadHandle> parent_thread_;
87 explicit WorkerManager(std::shared_ptr<MainThreadHandle> thread) in WorkerManager()
98 std::shared_ptr<MainThreadHandl
[all...]
/third_party/libabigail/include/
H A Dabg-fwd.h52 using std::shared_ptr;
67 typedef shared_ptr<corpus> corpus_sptr;
70 typedef shared_ptr<corpus_group> corpus_group_sptr;
80 typedef shared_ptr<ir_traversable_base> ir_traversable_base_sptr;
84 typedef shared_ptr<environment> environment_sptr;
90 /// A convenience typedef for a shared_ptr to @ref type_or_decl_base.
91 typedef shared_ptr<type_or_decl_base> type_or_decl_base_sptr;
96 typedef shared_ptr<type_base> type_base_sptr;
107 typedef shared_ptr<translation_unit> translation_unit_sptr;
124 typedef shared_ptr<decl_bas
[all...]
H A Dabg-ini.h28 using std::shared_ptr;
35 /// Convenience typefef for shared_ptr to @ref property.
36 typedef shared_ptr<property> property_sptr;
62 /// Convenience typedef for a shared_ptr to @ref property_value.
63 typedef shared_ptr<property_value> property_value_sptr;
96 /// A convenience typedef for a shared_ptr to @ref string_property_value.
97 typedef shared_ptr<string_property_value> string_property_value_sptr;
128 /// A convenience typedef for a shared_ptr to @ref
130 typedef shared_ptr<list_property_value> list_property_value_sptr;
168 /// Convenience typedef for a shared_ptr t
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dwasm-engine.h102 std::shared_ptr<NativeModule> MaybeGetNativeModule(
106 std::shared_ptr<NativeModule> Update(
107 std::shared_ptr<NativeModule> native_module, bool error);
188 std::shared_ptr<CompilationResultResolver> resolver,
198 std::shared_ptr<StreamingDecoder> StartStreamingCompilation(
201 std::shared_ptr<CompilationResultResolver> resolver);
214 std::shared_ptr<NativeModule> ExportNativeModule(
220 Isolate* isolate, std::shared_ptr<NativeModule> shared_module,
283 std::shared_ptr<NativeModule> NewNativeModule(
285 std::shared_ptr<cons
[all...]
H A Dmodule-compiler.h53 std::shared_ptr<NativeModule> CompileToNativeModule(
55 std::shared_ptr<const WasmModule> module, const ModuleWireBytes& wire_bytes,
129 std::shared_ptr<CompilationResultResolver> resolver,
135 std::shared_ptr<StreamingDecoder> CreateStreamingDecoder();
167 void CreateNativeModule(std::shared_ptr<const WasmModule> module,
170 bool GetOrCreateNativeModule(std::shared_ptr<const WasmModule> module,
231 const std::shared_ptr<CompilationResultResolver> resolver_;
234 std::shared_ptr<NativeModule> native_module_;
239 std::shared_ptr<v8::TaskRunner> foreground_task_runner_;
253 std::shared_ptr<StreamingDecode
[all...]
/third_party/node/deps/v8/src/inspector/
H A Dv8-stack-trace-impl.h88 V8StackTraceImpl(std::vector<std::shared_ptr<StackFrame>> frames,
90 std::shared_ptr<AsyncStackTrace> asyncParent,
102 std::vector<std::shared_ptr<StackFrame>>::const_iterator m_currentIt;
103 std::vector<std::shared_ptr<StackFrame>>::const_iterator m_currentEnd;
107 std::vector<std::shared_ptr<StackFrame>> m_frames;
117 static std::shared_ptr<AsyncStackTrace> capture(V8Debugger*,
121 std::shared_ptr<AsyncStackTrace> stack);
131 const std::vector<std::shared_ptr<StackFrame>>& frames() const { in frames()
137 std::vector<std::shared_ptr<StackFrame>> frames,
138 std::shared_ptr<AsyncStackTrac
[all...]
/third_party/nghttp2/src/
H A Dshrpx_connection_handler.h99 const std::shared_ptr<DownstreamConfig> &downstreamconf) in SerialEvent()
103 std::shared_ptr<DownstreamConfig> downstreamconf;
147 set_ticket_keys_to_worker(const std::shared_ptr<TicketKeys> &ticket_keys);
149 void set_ticket_keys(std::shared_ptr<TicketKeys> ticket_keys);
150 const std::shared_ptr<TicketKeys> &get_ticket_keys() const;
186 on_tls_ticket_key_get_success(const std::shared_ptr<TicketKeys> &ticket_keys,
203 void set_quic_keying_materials(std::shared_ptr<QUICKeyingMaterials> qkms);
204 const std::shared_ptr<QUICKeyingMaterials> &get_quic_keying_materials() const;
242 const std::shared_ptr<DownstreamConfig> &downstreamconf);
249 worker_replace_downstream(std::shared_ptr<DownstreamConfi
[all...]
H A Dshrpx_worker.h225 std::shared_ptr<mruby::MRubyContext> mruby_ctx;
252 std::shared_ptr<SharedDownstreamAddr> shared_addr;
301 std::shared_ptr<TicketKeys> ticket_keys;
302 std::shared_ptr<DownstreamConfig> downstreamconf;
320 const std::shared_ptr<TicketKeys> &ticket_keys,
322 std::shared_ptr<DownstreamConfig> downstreamconf);
336 std::shared_ptr<TicketKeys> get_ticket_keys();
337 void set_ticket_keys(std::shared_ptr<TicketKeys> ticket_keys);
363 std::vector<std::shared_ptr<DownstreamAddrGroup>> &
371 replace_downstream_config(std::shared_ptr<DownstreamConfi
[all...]
/third_party/node/deps/v8/src/objects/
H A Dmanaged.h26 void (*destructor_)(void* shared_ptr) = nullptr;
41 // {Managed<T>} is essentially a {std::shared_ptr<T>} allocated on the heap
46 // {std::shared_ptr<T>}, thereby decrementing its internal reference count,
58 V8_INLINE const std::shared_ptr<CppType>& get() { return *GetSharedPtrPtr(); } in get()
82 // Create a {Managed<CppType>} from an existing {std::shared_ptr<CppType>}.
85 std::shared_ptr<CppType> shared_ptr);
89 // std::shared_ptr<CppType>.
90 std::shared_ptr<CppType>* GetSharedPtrPtr() { in GetSharedPtrPtr()
93 return reinterpret_cast<std::shared_ptr<CppTyp in GetSharedPtrPtr()
[all...]
/third_party/skia/src/sksl/ir/
H A DSkSLSymbolTable.h36 SymbolTable(std::shared_ptr<SymbolTable> parent, bool builtin) in SymbolTable()
42 static void Push(std::shared_ptr<SymbolTable>* table) { in Push()
45 static void Push(std::shared_ptr<SymbolTable>* table, bool isBuiltin) { in Push()
53 static void Pop(std::shared_ptr<SymbolTable>* table) { in Pop()
62 static std::shared_ptr<SymbolTable> WrapIfBuiltin(std::shared_ptr<SymbolTable> symbolTable) { in WrapIfBuiltin()
141 std::shared_ptr<SymbolTable> fParent;
179 AutoSymbolTable(std::shared_ptr<SymbolTable>* s) in AutoSymbolTable()
190 std::shared_ptr<SymbolTable>* fSymbolTable;
H A DSkSLSwitchStatement.h30 StatementArray cases, std::shared_ptr<SymbolTable> symbols) in SwitchStatement()
46 std::shared_ptr<SymbolTable> symbolTable);
55 std::shared_ptr<SymbolTable> symbolTable);
64 std::shared_ptr<SymbolTable> symbolTable);
86 const std::shared_ptr<SymbolTable>& symbols() const { in symbols()
98 std::shared_ptr<SymbolTable> fSymbols;
/third_party/libfuse/example/
H A Dcxxopts.hpp287 std::shared_ptr<Value>
311 virtual std::shared_ptr<Value>
314 virtual std::shared_ptr<Value>
317 virtual std::shared_ptr<Value>
824 std::shared_ptr<Value>
832 std::shared_ptr<Value>
840 std::shared_ptr<Value>
879 std::shared_ptr<T> m_result;
895 std::shared_ptr<Value>
919 std::shared_ptr<Valu
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp92 virtual std::shared_ptr<DebugSubsection>
110 std::shared_ptr<DebugSubsection>
113 static Expected<std::shared_ptr<YAMLChecksumsSubsection>>
124 std::shared_ptr<DebugSubsection>
127 static Expected<std::shared_ptr<YAMLLinesSubsection>>
140 std::shared_ptr<DebugSubsection>
143 static Expected<std::shared_ptr<YAMLInlineeLinesSubsection>>
156 std::shared_ptr<DebugSubsection>
159 static Expected<std::shared_ptr<YAMLCrossModuleExportsSubsection>>
170 std::shared_ptr<DebugSubsectio
[all...]

Completed in 16 milliseconds

12345678910>>...25