Home
last modified time | relevance | path

Searched refs:SmartPointer (Results 1 – 25 of 1864) sorted by relevance

12345678910>>...75

/dports/games/openlierox/OpenLieroX/include/DeprecatedGUI/
H A DGraphics.h24 SmartPointer<SDL_Surface> bmpScrollbar;
25 SmartPointer<SDL_Surface> bmpSliderBut;
34 SmartPointer<SDL_Surface> bmpMuzzle;
36 SmartPointer<SDL_Surface> bmpSmoke;
38 SmartPointer<SDL_Surface> bmpSpawn;
39 SmartPointer<SDL_Surface> bmpHook;
41 SmartPointer<SDL_Surface> bmpInGame;
46 SmartPointer<SDL_Surface> bmpLag;
54 SmartPointer<SDL_Surface> bmpAI;
55 SmartPointer<SDL_Surface> bmpClock;
[all …]
H A DMenu.h277 SmartPointer<SDL_Surface> bmpBuffer;
279 SmartPointer<SDL_Surface> bmpMsgBuffer;
284 SmartPointer<SDL_Surface> bmpTitles;
286 SmartPointer<SDL_Surface> bmpButtons;
287 SmartPointer<SDL_Surface> bmpCheckbox;
288 SmartPointer<SDL_Surface> bmpInputbox;
293 SmartPointer<SDL_Surface> bmpMainNet;
296 SmartPointer<SDL_Surface> bmpHost;
298 SmartPointer<SDL_Surface> bmpSpeech;
300 SmartPointer<SDL_Surface> bmpDownload;
[all …]
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/include/deal.II/base/
H A Dsmartpointer.h81 SmartPointer(const SmartPointer<T, Q> &tt);
87 SmartPointer(const SmartPointer<T, P> &tt);
216 inline SmartPointer<T, P>::SmartPointer() in SmartPointer() function
225 inline SmartPointer<T, P>::SmartPointer(T *t) in SmartPointer() function
250 inline SmartPointer<T, P>::SmartPointer(const SmartPointer<T, Q> &tt) in SmartPointer() function
262 inline SmartPointer<T, P>::SmartPointer(const SmartPointer<T, P> &tt) in SmartPointer() function
274 inline SmartPointer<T, P>::~SmartPointer() in ~SmartPointer()
319 SmartPointer<T, P>::operator=(const SmartPointer<T, Q> &tt)
339 SmartPointer<T, P>::operator=(const SmartPointer<T, P> &tt)
390 SmartPointer<T, P>::swap(SmartPointer<T, Q> &tt) in swap()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Common/include/
H A DitkSmartPointer.h51 class SmartPointer
65 SmartPointer (const SmartPointer& p) noexcept: in SmartPointer() function
76 SmartPointer(const SmartPointer<T> &p) noexcept: in SmartPointer() function
83 SmartPointer (SmartPointer<ObjectType > &&p) noexcept : in SmartPointer() function
90 SmartPointer( SmartPointer<T> &&p) noexcept: in SmartPointer() function
100 ~SmartPointer () in ~SmartPointer()
140 SmartPointer & operator=(SmartPointer r) noexcept
229 bool operator<( const SmartPointer<T>& l, const SmartPointer<TU>& r ) noexcept
234 bool operator>( const SmartPointer<T>& l, const SmartPointer<TU>& r ) noexcept
244 bool operator>=( const SmartPointer<T>& l, const SmartPointer<TU>& r ) noexcept
[all …]
/dports/math/geogram/geogram-1.7.7/src/lib/geogram/basic/
H A Dsmart_pointer.h82 class SmartPointer {
87 SmartPointer() : in SmartPointer() function
97 SmartPointer(T* ptr) : in SmartPointer() function
108 SmartPointer(const SmartPointer<T>& rhs) : in SmartPointer() function
119 ~SmartPointer() { in ~SmartPointer()
146 SmartPointer<T>& operator= (const SmartPointer<T>& rhs) {
228 inline bool operator== (const SmartPointer<T1>& lhs, const SmartPointer<T2>& rhs) {
241 inline bool operator!= (const SmartPointer<T1>& lhs, const SmartPointer<T2>& rhs) {
254 inline bool operator< (const SmartPointer<T1>& lhs, const SmartPointer<T2>& rhs) {
267 inline bool operator<= (const SmartPointer<T1>& lhs, const SmartPointer<T2>& rhs) {
[all …]
/dports/devel/gdcm/gdcm-3.0.10/Testing/Source/Common/Cxx/
H A DTestSmartPointer.cxx20 using gdcm::SmartPointer;
32 SmartPointer<Object> Instance;
35 void Fill(SmartPointer<Foo> &p) in Fill()
37 SmartPointer<Foo> in = new Foo; in Fill()
43 SmartPointer<Foo> gf;
60 SmartPointer<Foo> f = new Foo; in TestReturn()
75 SmartPointer<Foo> p2 = new Foo; in TestSmartPointer()
92 SmartPointer<Foo> p4 = p2; in TestSmartPointer()
93 SmartPointer<Object> p5 = p3; in TestSmartPointer()
96 SmartPointer<Foo> p6 = &(*p2); in TestSmartPointer()
[all …]
/dports/games/gtkradiant/GPL/GtkRadiant/libs/generic/
H A Dreferencecounted.h46 class SmartPointer : public Counter
51 SmartPointer(const SmartPointer& other) in SmartPointer() function
61 ~SmartPointer() in ~SmartPointer()
65 SmartPointer& operator=(const SmartPointer& other)
67 SmartPointer temp(other);
73 SmartPointer temp(value);
77 void swap(SmartPointer& other) in swap()
101 inline bool operator<(const SmartPointer<Type>& self, const SmartPointer<Type>& other)
106 inline bool operator==(const SmartPointer<Type>& self, const SmartPointer<Type>& other)
111 inline bool operator!=(const SmartPointer<Type>& self, const SmartPointer<Type>& other)
[all …]
/dports/games/netradiant/netradiant-20150621-src/libs/generic/
H A Dreferencecounted.h44 class SmartPointer : public Counter
49 SmartPointer( const SmartPointer& other ) in SmartPointer() function
57 ~SmartPointer(){ in ~SmartPointer()
60 SmartPointer& operator=( const SmartPointer& other ){
61 SmartPointer temp( other );
66 SmartPointer temp( value );
70 void swap( SmartPointer& other ){ in swap()
90 inline bool operator<( const SmartPointer<Type>& self, const SmartPointer<Type>& other ){
94 inline bool operator==( const SmartPointer<Type>& self, const SmartPointer<Type>& other ){
98 inline bool operator!=( const SmartPointer<Type>& self, const SmartPointer<Type>& other ){
[all …]
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/libs/generic/
H A Dreferencecounted.h49 SmartPointer(const SmartPointer& other) in SmartPointer() function
53 explicit SmartPointer(Type* value) in SmartPointer() function
57 ~SmartPointer() { in ~SmartPointer()
60 SmartPointer& operator=(const SmartPointer& other) {
61 SmartPointer temp(other);
66 SmartPointer temp(value);
70 void swap(SmartPointer& other) { in swap()
89 inline bool operator<(const SmartPointer<Type>& self, const SmartPointer<Type>& other) {
93 inline bool operator==(const SmartPointer<Type>& self, const SmartPointer<Type>& other) {
97 inline bool operator!=(const SmartPointer<Type>& self, const SmartPointer<Type>& other) {
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/GDCM/src/gdcm/Source/Common/
H A DgdcmSmartPointer.h39 class SmartPointer
42 SmartPointer():Pointer(nullptr) {} in SmartPointer() function
43 SmartPointer(const SmartPointer<ObjectType>& p):Pointer(p.Pointer) in SmartPointer() function
45 SmartPointer(ObjectType* p):Pointer(p) in SmartPointer() function
47 SmartPointer(ObjectType const & p) in SmartPointer() function
52 ~SmartPointer() { in ~SmartPointer()
72 SmartPointer &operator = (SmartPointer const &r)
76 SmartPointer &operator = (ObjectType *r)
92 SmartPointer &operator = (ObjectType const &r)
/dports/devel/gdcm/gdcm-3.0.10/Source/Common/
H A DgdcmSmartPointer.h39 class SmartPointer
42 SmartPointer():Pointer(nullptr) {} in SmartPointer() function
43 SmartPointer(const SmartPointer<ObjectType>& p):Pointer(p.Pointer) in SmartPointer() function
45 SmartPointer(ObjectType* p):Pointer(p) in SmartPointer() function
47 SmartPointer(ObjectType const & p) in SmartPointer() function
52 ~SmartPointer() { in ~SmartPointer()
72 SmartPointer &operator = (SmartPointer const &r)
76 SmartPointer &operator = (ObjectType *r)
92 SmartPointer &operator = (ObjectType const &r)
/dports/devel/spatialindex/spatialindex-src-1.8.5/include/spatialindex/tools/
H A DSmartPointer.h32 template <class X> class SmartPointer
35 explicit SmartPointer(X* p = 0) throw() : m_pointer(p) { m_prev = m_next = this; } in throw()
36 ~SmartPointer() { release(); } in ~SmartPointer()
37 SmartPointer(const SmartPointer& p) throw() { acquire(p); } in throw()
38 SmartPointer& operator=(const SmartPointer& p)
55 mutable const SmartPointer* m_prev;
56 mutable const SmartPointer* m_next;
58 void acquire(const SmartPointer& p) throw() in acquire()
/dports/games/openlierox/OpenLieroX/include/
H A DSounds.h68 SmartPointer<SoundSample> smpClick;
69 SmartPointer<SoundSample> smpChat;
70 SmartPointer<SoundSample> smpNotify;
76 SmartPointer<SoundSample> smpNinja;
77 SmartPointer<SoundSample> smpPickup;
78 SmartPointer<SoundSample> smpBump;
79 SmartPointer<SoundSample> smpDeath[3];
80 SmartPointer<SoundSample> smpTeamScore;
96 SmartPointer<SoundSample> LoadSample(const std::string& _filename, int maxplaying);
108 inline bool PlaySoundSample(const SmartPointer<SoundSample> & sample) { in PlaySoundSample()
[all …]
H A DCache.h47 SmartPointer<SDL_Surface> GetImage__unsafe(const std::string& file);
48 SmartPointer<SoundSample> GetSound(const std::string& file);
49 SmartPointer<CMap> GetMap(const std::string& file);
50 SmartPointer<CGameScript> GetMod(const std::string& dir);
56 void SaveImage__unsafe(const std::string& file, const SmartPointer<SDL_Surface> & img);
57 void SaveSound(const std::string& file, const SmartPointer<SoundSample> & smp);
58 void SaveMod(const std::string& dir, const SmartPointer<CGameScript> & mod);
83 SmartPointer<SDL_Surface> bmpSurf;
91 SmartPointer<SoundSample> sndSample;
99 SmartPointer<CMap> tMap;
[all …]
H A DCServer.h80 SmartPointer<NetworkSocket> tTraverseSocket;
81 SmartPointer<NetworkSocket> tConnectHereSocket;
99 SmartPointer<CGameScript> cGameScript;
133 SmartPointer<NetworkSocket> tSockets[MAX_SERVER_SOCKETS];
135 typedef std::list< SmartPointer<NatConnection> > NatConnList;
213 bool ReadPacketsFromSocket(const SmartPointer<NetworkSocket>& sock);
289 void ParseGetChallenge(const SmartPointer<NetworkSocket>& tSocket, CBytestream *bs);
290 void ParseConnect(const SmartPointer<NetworkSocket>& tSocket, CBytestream *bs);
291 void ParsePing(const SmartPointer<NetworkSocket>& tSocket);
292 void ParseTime(const SmartPointer<NetworkSocket>& tSocket);
[all …]
H A DSmartPointer.h23 class SmartPointer; variable
64 class SmartPointer { //friend class SmartObject<_Type>;
175 SmartPointer() : obj(NULL), refCount(NULL), mutex(NULL) { in SmartPointer() function
179 ~SmartPointer() { in ~SmartPointer()
186 SmartPointer(const SmartPointer& pt) : obj(NULL), refCount(NULL), mutex(NULL) { operator=(pt); } in SmartPointer() function
187 SmartPointer& operator=(const SmartPointer& pt) {
203 SmartPointer(_Type* pt): obj(NULL), refCount(NULL), mutex(NULL) { operator=(pt); } in SmartPointer() function
204 SmartPointer& operator=(_Type* pt) {
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/GDCM/src/gdcm/Source/MediaStorageAndFileFormat/
H A DgdcmSimpleSubjectWatcher.h56 SmartPointer<Subject> m_Subject;
62 SmartPointer<SimpleCommandType> m_StartFilterCommand;
63 SmartPointer<SimpleCommandType> m_EndFilterCommand;
64 SmartPointer<CommandType> m_ProgressFilterCommand;
65 SmartPointer<CommandType> m_FileNameFilterCommand;
66 SmartPointer<SimpleCommandType> m_IterationFilterCommand;
67 SmartPointer<SimpleCommandType> m_AbortFilterCommand;
68 SmartPointer<CommandType> m_AnonymizeFilterCommand;
69 SmartPointer<CommandType> m_DataFilterCommand;
70 SmartPointer<CommandType> m_DataSetFilterCommand;
H A DgdcmSegmentWriter.cxx46 SmartPointer< Segment > SegmentWriter::GetSegment(const unsigned int idx /*= 0*/) const in GetSegment()
52 void SegmentWriter::AddSegment(SmartPointer< Segment > segment) in AddSegment()
68 SmartPointer<SequenceOfItems> sequence; in writeCodeSequenceMacroAttributes()
146 SmartPointer<SequenceOfItems> segmentsSQ; in PrepareWrite()
178 std::vector< SmartPointer< Segment > >::const_iterator it0 = Segments.begin(); in PrepareWrite()
179 std::vector< SmartPointer< Segment > >::const_iterator it0End = Segments.end(); in PrepareWrite()
184 SmartPointer< Segment > segment = *it0; in PrepareWrite()
296 SmartPointer<SequenceOfItems> segmentsRefSQ; in PrepareWrite()
325 std::vector< SmartPointer< Surface > >::const_iterator it = surfaces.begin(); in PrepareWrite()
326 std::vector< SmartPointer< Surface > >::const_iterator itEnd = surfaces.end(); in PrepareWrite()
[all …]
/dports/devel/gdcm/gdcm-3.0.10/Source/MediaStorageAndFileFormat/
H A DgdcmSimpleSubjectWatcher.h56 SmartPointer<Subject> m_Subject;
62 SmartPointer<SimpleCommandType> m_StartFilterCommand;
63 SmartPointer<SimpleCommandType> m_EndFilterCommand;
64 SmartPointer<CommandType> m_ProgressFilterCommand;
65 SmartPointer<CommandType> m_FileNameFilterCommand;
66 SmartPointer<SimpleCommandType> m_IterationFilterCommand;
67 SmartPointer<SimpleCommandType> m_AbortFilterCommand;
68 SmartPointer<CommandType> m_AnonymizeFilterCommand;
69 SmartPointer<CommandType> m_DataFilterCommand;
70 SmartPointer<CommandType> m_DataSetFilterCommand;
H A DgdcmSegmentWriter.cxx46 SmartPointer< Segment > SegmentWriter::GetSegment(const unsigned int idx /*= 0*/) const in GetSegment()
52 void SegmentWriter::AddSegment(SmartPointer< Segment > segment) in AddSegment()
68 SmartPointer<SequenceOfItems> sequence; in writeCodeSequenceMacroAttributes()
146 SmartPointer<SequenceOfItems> segmentsSQ; in PrepareWrite()
178 std::vector< SmartPointer< Segment > >::const_iterator it0 = Segments.begin(); in PrepareWrite()
179 std::vector< SmartPointer< Segment > >::const_iterator it0End = Segments.end(); in PrepareWrite()
184 SmartPointer< Segment > segment = *it0; in PrepareWrite()
296 SmartPointer<SequenceOfItems> segmentsRefSQ; in PrepareWrite()
325 std::vector< SmartPointer< Surface > >::const_iterator it = surfaces.begin(); in PrepareWrite()
326 std::vector< SmartPointer< Surface > >::const_iterator itEnd = surfaces.end(); in PrepareWrite()
[all …]
/dports/games/openlierox/OpenLieroX/src/client/
H A DDynDraw.cpp14 SmartPointer<SDL_Surface> surf;
15 SDLSurfDraw(const SmartPointer<SDL_Surface>& s) : DynDrawIntf(s->w, s->h), surf(s) {} in SDLSurfDraw()
23 SmartPointer<SDL_Surface> surf;
25 SDLSurfDrawCrop(const SmartPointer<SDL_Surface>& s, int x, int y, int W, int H) : in SDLSurfDrawCrop()
34 SmartPointer<DynDrawIntf> DynDrawFromSurface(const SmartPointer<SDL_Surface>& surf) { in DynDrawFromSurface()
39 SmartPointer<DynDrawIntf> DynDrawFromSurfaceCrop(const SmartPointer<SDL_Surface>& surf, int x, int … in DynDrawFromSurfaceCrop()
/dports/devel/gdcm/gdcm-3.0.10/Testing/Source/MessageExchangeDefinition/Cxx/
H A DTestFindPatientRootQuery.cxx38 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindPatientRootQuery()
49 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindPatientRootQuery()
60 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindPatientRootQuery()
72 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindPatientRootQuery()
86 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindPatientRootQuery()
97 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindPatientRootQuery()
108 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindPatientRootQuery()
120 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindPatientRootQuery()
133 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindPatientRootQuery()
144 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindPatientRootQuery()
[all …]
H A DTestFindStudyRootQuery.cxx39 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindStudyRootQuery()
50 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindStudyRootQuery()
61 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindStudyRootQuery()
72 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindStudyRootQuery()
83 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindStudyRootQuery()
98 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindStudyRootQuery()
109 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindStudyRootQuery()
121 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindStudyRootQuery()
133 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindStudyRootQuery()
146 gdcm::SmartPointer<gdcm::BaseRootQuery> theQuery = in TestFindStudyRootQuery()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Common/test/
H A DitkSmartPointerGTest.cxx38 using Pointer = itk::SmartPointer< Self >;
39 using ConstPointer = itk::SmartPointer< const Self >;
73 using Pointer = itk::SmartPointer< Self >;
74 using ConstPointer = itk::SmartPointer< const Self >;
90 TEST(SmartPointer, EmptyAndNull) in TEST() argument
92 using ObjectPointer = itk::SmartPointer<itk::Object>; in TEST()
148 TEST(SmartPointer,Converting) in TEST() argument
151 using BasePointer = itk::SmartPointer<itk::Object>; in TEST()
154 using Derived1Pointer = itk::SmartPointer<Derived1>; in TEST()
199 TEST(SmartPointer,ConvertingRegisterCount) in TEST() argument
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/packages/scolib/src/scolib/
H A DMultiStatePS.h32 class SmartPointer
48 SmartPointer() in SmartPointer() function
51 SmartPointer(T* ref) in SmartPointer() function
54 SmartPointer(const SmartPointer<T> & rhs) in SmartPointer() function
60 ~SmartPointer() in ~SmartPointer()
65 SmartPointer<T>& operator=(T* ref)
71 SmartPointer<T>& operator=(const SmartPointer<T> & rhs)
141 typedef SmartPointer<PatternState> StateContainer;

12345678910>>...75