HomeSort by relevance Sort by last modified time
    Searched defs:SharedPtr (Results 1 - 6 of 6) sorted by null

  /external/lldb/source/Plugins/Process/Utility/
RegisterContextDummy.h 24 typedef std::shared_ptr<RegisterContextDummy> SharedPtr;
RegisterContextLLDB.h 28 typedef std::shared_ptr<RegisterContextLLDB> SharedPtr;
31 const SharedPtr& next_frame,
109 SharedPtr
112 SharedPtr
  /external/deqp/framework/delibs/decpp/
deSharedPtr.hpp 73 class SharedPtr;
81 * SharedPtr is smart pointer for managing shared ownership to a pointer.
82 * Multiple SharedPtr's can maintain ownership to the pointer and it is
83 * destructed when last SharedPtr is destroyed.
89 * SharedPtr can also be empty.
92 * data using SharedPtr across threads. SharedPtr object itself is not
98 class SharedPtr
101 SharedPtr (void);
102 SharedPtr (const SharedPtr<T, Deleter, threadSafe>& other)
    [all...]
  /external/icu/icu4c/source/common/
sharedptr.h 7 * File SHAREDPTR.H
27 * SharedPtr are shared pointers that support copy-on-write sematics.
28 * SharedPtr makes the act of copying large objects cheap by deferring the
31 * A SharedPtr<T> instance can refer to no object or an object of type T.
34 * SharedPtr instances are cheap because they only involve copying or
35 * assigning the SharedPtr instance, not the T object which could be large.
36 * Although many SharedPtr<T> instances may refer to the same T object,
37 * clients can still assume that each SharedPtr<T> instance has its own
38 * private instance of T because each SharedPtr<T> instance offers only a
40 * must change a T object through its SharedPtr<T>, it can do so by callin
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/lib/
shared_ptr.h 17 class SharedPtr {
19 SharedPtr() {}
21 explicit SharedPtr(P* ptr) {
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceQueryTests.cpp 194 typedef de::SharedPtr<const Node, de::DefaultDeleter<const Node>, false> SharedPtr;
196 Node (NodeType type, const SharedPtr& enclosingNode) : m_type(type), m_enclosingNode(enclosingNode) { DE_ASSERT(type < TYPE_LAST); }
204 const SharedPtr m_enclosingNode;
211 : Node (TYPE_PROGRAM, SharedPtr())
222 Shader (const SharedPtr& enclosingNode, glu::ShaderType type, glu::GLSLVersion version)
237 DefaultBlock (const SharedPtr& enclosing)
249 StorageQualifier (const SharedPtr& enclosing, glu::Storage storage)
263 Variable (const SharedPtr& enclosing, glu::DataType dataType)
282 InterfaceBlock (const SharedPtr& enclosing, bool named
    [all...]

Completed in 337 milliseconds