Home
last modified time | relevance | path

Searched refs:T (Results 1 – 25 of 569) sorted by relevance

12345678910>>...23

/trunk/main/o3tl/inc/o3tl/
H A Dheap_ptr.hxx179 heap_ptr<T>::heap_ptr( T * pass_heapObject ) in heap_ptr()
193 heap_ptr<T>::operator=(T * pass_heapObject) in operator =()
200 inline const T &
209 inline T &
218 inline const T *
225 inline T *
235 heap_ptr<T>::operator typename heap_ptr<T>::safe_bool() const
256 heap_ptr<T>::reset(T * pass_heapObject) in reset()
267 T *
292 inline const T *
[all …]
H A Drange.hxx43 template <class T>
76 template <class T>
77 inline range<T>
78 make_range(T i1, T i2) in make_range()
83 template <class T>
92 template <class T>
107 template <class T>
108 range<T>::range( T i_inclusiveLowerBorder, in range()
123 inline T
130 inline T
[all …]
/trunk/main/sfx2/inc/sfx2/
H A Dminarray.hxx45 T* pData;\
68 T* operator*();\
143 ( pData+n )->T::~T(); \
150 ( pData+n )->T::~T(); \
177 T* pNewData = (T*) new char[ nBytes ]; \
205 ( pData+n )->T::~T(); \
223 T* pNewData = (T*) new char[ nBytes ]; \
286 T* pNewData = (T*) new char[ nBytes ]; \
376 sal_Bool Replace( T aOldElem, T aNewElem ) {\
450 T* operator *() {\
[all …]
H A Dminstack.hxx30 DECL_OBJARRAY( ARR##arr_, T, nI, nG ); \
47 T Pop(); \
53 #define IMPL_OBJSTACK( ARR, T ) \ argument
54 IMPL_OBJARRAY( ARR##arr_, T ); \
56 T ARR::Pop() \
57 { T aRet = (*this)[Count()-1]; \
63 DECL_PTRARRAY( ARR##arr_, T, nI, nG ) \
77 sal_Bool Replace( T rOldElem, T rNewElem ) \
82 T Pop() \
83 { T aRet = (*this)[Count()-1]; \
[all …]
/trunk/main/writerfilter/inc/resourcemodel/
H A DTableManager.hxx41 template <typename T, typename PropertiesPointer>
90 const T & rT,
99 const T & rT ) = 0;
289 T mCurHandle;
391 T getHandle() in getHandle()
397 const T & rHandle ) in setHandle()
403 typedef boost::shared_ptr<T> T_p;
465 void closeCell(const T & handle);
508 virtual void handle(const T & rHandle);
683 void TableManager<T, PropertiesPointer>::handle(const T & rHandle) in handle()
[all …]
H A DOutputWithDepth.hxx35 template <typename T>
44 T mOpenTag;
45 T mCloseTag;
53 OutputWithDepth(const T & aOpenTag, const T & aCloseTag);
62 template <typename T>
63 OutputWithDepth<T>::OutputWithDepth(const T & aOpenTag, const T & aEndTag) in OutputWithDepth()
68 template <typename T>
73 template <typename T>
79 template <typename T>
86 template <typename T>
[all …]
H A DTableData.hxx37 template <typename T, typename PropertiesPointer>
46 T mStart;
51 T mEnd;
63 CellData(T start, PropertiesPointer pProps) in CellData()
75 void setStart(T start) { mStart = start; } in setStart()
107 const T & getStart() { return mStart; } in getStart()
112 const T & getEnd() { return mEnd; } in getEnd()
122 template <typename T, typename PropertiesPointer>
168 void endCell(const T & end) in endCell()
238 const T & getCellEnd(unsigned int i) const in getCellEnd()
[all …]
/trunk/main/vos/inc/vos/
H A Dref.inl38 inline ORef<T>::ORef(T* pBody)
47 inline ORef<T>::ORef(const ORef<T>& handle)
63 inline ORef<T>& ORef<T>::operator= (const ORef<T>& handle)
77 inline void ORef<T>::bind(T* pBody)
89 inline ORef<T>& ORef<T>::unbind()
100 inline void ORef<T>::operator= (T* pBody)
106 inline T& ORef<T>::operator() () const
113 inline T& ORef<T>::operator* () const
120 inline T* ORef<T>::operator->() const
127 inline T& ORef<T>::getBody() const
[all …]
H A Drefobj.inl25 template <class T>
26 ORefObj<T>::ORefObj(const T& Obj)
33 template <class T>
39 template <class T>
40 inline T& ORefObj<T>::operator=(const T& Obj)
48 inline ORefObj<T>::operator T&()
54 inline ORefObj<T>::operator const T&() const
60 inline T& ORefObj<T>::operator() ()
66 inline const T& ORefObj<T>::operator() () const
72 inline T& ORefObj<T>::getObj()
[all …]
H A Dref.hxx47 template <class T>
60 ORef(T* pBody);
73 ORef(const ORef<T>& handle);
83 ORef<T>& SAL_CALL operator= (const ORef<T>& handle);
95 void SAL_CALL bind(T* pBody);
104 ORef<T>& SAL_CALL unbind();
116 T& SAL_CALL operator* () const;
120 T* SAL_CALL operator->() const;
124 T& SAL_CALL getBody() const;
130 T* SAL_CALL getBodyPtr() const;
[all …]
/trunk/main/basebmp/inc/basebmp/
H A Daccessorfunctors.hxx40 template< typename T > struct XorFunctor : public std::binary_function<T,T,T>
42 T operator()( T v1, T v2 ) const { return v1 ^ v2; } in operator ()()
49 public TernaryFunctorBase<T,M,T,T> {};
59 template< typename T,
64 T operator()( T v1, M m, T v2 ) const in operator ()()
73 template< typename T,
76 template< typename T,
83 T operator()( T v1, M m, T v2 ) const in operator ()()
99 T operator()( T v1, M m, T v2 ) const in operator ()()
117 T operator()( T v1, M m, T v2 ) const in operator ()()
[all …]
H A Dmetafunctions.hxx51 template <typename T> struct add_const
53 typedef const T type;
55 template <typename T> struct add_const<const T>
57 typedef const T type;
63 typedef T type;
65 template <typename T> struct remove_const<const T>
67 typedef T type;
107 template< typename T > inline typename make_unsigned<T>::type unsigned_cast( T value ) in BASEBMP_MAKE_UNSIGNED()
115 template< typename T > inline bool is_negative( T x ) in is_negative()
204 template< typename T > inline T shiftLeft( T v, int shift ) in shiftLeft()
[all …]
/trunk/main/idlc/test/parser/
H A Dpolystruct.tests23 struct Struct<T> { T member; };
45 struct Struct1<T> { T member; };
50 struct Struct1<T> { T member; };
55 struct Struct1<T> { T member; };
60 struct Struct1<T> { T member; };
69 struct Struct1<T> { T member; };
74 struct Struct1<T> { T member; };
80 struct Struct1<T> { T member; };
85 struct Struct<T> { T T; };
105 struct Struct1<T> { T member; };
[all …]
/trunk/main/autodoc/inc/cosv/tpl/
H A Drange.hxx44 template <class T>
77 template <class T>
78 inline range<T>
79 make_range(T i1, T i2) in make_range()
84 template <class T>
93 template <class T>
108 template <class T>
109 range<T>::range( T i_inclusiveLowerBorder, in range()
124 inline T
131 inline T
[all …]
/trunk/main/xmloff/inc/xmloff/
H A Duniref.hxx42 T* mpElement;
64 inline UniReference< T > & operator = ( T * pElement );
122 template< class T >
130 template< class T >
141 template< class T >
142 inline UniReference< T >::UniReference( T * pElement ) in UniReference()
153 template< class T >
154 inline UniReference< T > & UniReference< T >::operator = ( T * pElement ) in operator =()
171 inline UniReference< T > & UniReference< T >::operator = ( const UniReference< T > & rRef ) in operator =()
180 inline T* UniReference< T >::operator -> () const in operator ->()
[all …]
/trunk/main/writerfilter/source/doctok/
H A DPLCF.hxx45 template <class T>
127 template <class T>
133 template <class T>
139 template <class T>
140 T * PLCF<T>::getEntryPointer(sal_uInt32 nIndex) const in getEntryPointer()
142 return new T(mSequence, nPayloadOffset + nIndex * T::getSize(), in getEntryPointer()
146 template <class T>
147 typename T::Pointer_t PLCF<T>::getEntry(sal_uInt32 nIndex) const in getEntry()
155 template <class T>
156 T * PLCF<T>::getEntryByFc(sal_uInt32 nFc) const in getEntryByFc()
[all …]
H A DXNoteHelperImpl.hxx30 template <class T>
41 template <class T>
55 template <class T>
69 template <class T>
89 template <class T>
113 template <class T>
127 template <class T>
128 T *
134 template <class T>
135 T *
[all …]
/trunk/main/sw/source/filter/ww8/
H A Dwriterhelper.hxx253 template<class T> const T & item_cast(const SfxPoolItem &rItem) in item_cast()
256 if (!rItem.IsA(STATICTYPE(T))) in item_cast()
279 template<class T> const T * item_cast(const SfxPoolItem *pItem) in item_cast()
311 template<class T> const T & ItemGet(const SwCntntNode &rNode, in ItemGet()
340 template<class T> const T & ItemGet(const SwFmt &rFmt, in ItemGet()
371 template<class T> const T & ItemGet(const SfxItemSet &rSet, in ItemGet()
406 template<class T> const T & DefaultItemGet(const SfxItemPool &rPool, in DefaultItemGet()
442 template<class T> const T & DefaultItemGet(const SwDoc &rDoc, in DefaultItemGet()
476 template<class T> const T* HasItem(const SfxItemSet &rSet, in HasItem()
509 template<class T> const T* HasItem(const SwFmt &rFmt, in HasItem()
[all …]
/trunk/main/basic/source/comp/
H A Dcodegen.cxx345 template < class T >
354 virtual void processOpCode2( SbiOpcode eOp, T nOp1, T nOp2 ) = 0;
359 template <class T> PCodeVisitor< T >::~PCodeVisitor() in ~PCodeVisitor()
362 template <class T>
366 T m_nBytes;
371 T nOp1=0; in readParam()
421 T m_nNumOp0;
422 T m_nNumSingleParams;
423 T m_nNumDoubleParams;
434 T result = 0 ; in offset()
[all …]
/trunk/main/sal/rtl/source/
H A Ddigest.c38 #define RTL_DIGEST_CREATE(T) ((T*)(rtl_allocateZeroMemory(sizeof(T)))) argument
1029 BODY_00_15 (U, 0, A, B, C, D, E, T); in __rtl_digest_updateSHA()
1030 BODY_00_15 (U, 1, T, A, B, C, D, E); in __rtl_digest_updateSHA()
1031 BODY_00_15 (U, 2, E, T, A, B, C, D); in __rtl_digest_updateSHA()
1032 BODY_00_15 (U, 3, D, E, T, A, B, C); in __rtl_digest_updateSHA()
1033 BODY_00_15 (U, 4, C, D, E, T, A, B); in __rtl_digest_updateSHA()
1034 BODY_00_15 (U, 5, B, C, D, E, T, A); in __rtl_digest_updateSHA()
1035 BODY_00_15 (U, 6, A, B, C, D, E, T); in __rtl_digest_updateSHA()
1114 ctx->m_nB += T; in __rtl_digest_updateSHA()
2093 sal_uInt8 T[DIGEST_CBLOCK_PBKDF2]; in rtl_digest_PBKDF2() local
[all …]
H A Dmath.cxx295 template< typename T, typename StringT >
322 T::createBuffer(pResult, pResultCapacity); in doubleToString()
424 typename T::Char aBuf[nBufMax]; in doubleToString()
425 typename T::Char * pBuf; in doubleToString()
437 typename T::Char * p = pBuf; in doubleToString()
439 *p++ = static_cast< typename T::Char >('-'); in doubleToString()
619 *p++ = static_cast< typename T::Char >('E'); in doubleToString()
628 *p++ = static_cast< typename T::Char >( in doubleToString()
631 *p++ = static_cast< typename T::Char >( in doubleToString()
633 *p++ = static_cast< typename T::Char >( in doubleToString()
[all …]
/trunk/main/cppu/inc/com/sun/star/uno/
H A DType.hxx93 template< class T >
193 template< class T >
207 & ::com::sun::star::uno::Array< T >::s_pType ); in getCppuArrayType1()
210 template< class T >
225 & ::com::sun::star::uno::Array< T >::s_pType ); in getCppuArrayType2()
228 template< class T >
247 template< class T >
267 template< class T >
288 template< class T >
310 template< typename T >
[all …]
/trunk/main/store/workben/
H A Dt_page.cxx41 template< class T > void swap (T & lhs, T & rhs) in swap()
199 template< class T > T * construct() in construct()
411 T * pImpl = dynamic_page_cast<T>(m_xPage.get()); in operator ->()
417 T const * pImpl = dynamic_page_cast<T>(m_xPage.get()); in operator ->()
424 T * pImpl = dynamic_page_cast<T>(m_xPage.get()); in operator *()
437 T * pImpl = dynamic_page_cast<T>(rxPage.get()); in guard()
447 T const * pImpl = dynamic_page_cast<T>(rxPage.get()); in verify()
897 T m_value;
906 void reset (T const & value = T()) in reset()
913 T release() in release()
[all …]
/trunk/main/autodoc/inc/ary/doc/
H A Dd_parametrized.hxx39 template <class T>
70 template <class T>
79 template <class T>
84 template <class T>
86 Parametrized<T>::Doc() const in Doc()
91 template <class T>
92 const T &
98 template <class T>
100 Parametrized<T>::Doc() in Doc()
105 template <class T>
[all …]
/trunk/main/comphelper/inc/comphelper/
H A Dsequence.hxx62 template <class T>
63 void implCopySequence(const T* _pSource, T*& _pDest, sal_Int32 _nSourceLen) in implCopySequence()
71 template <class T>
72 …staruno::Sequence<T> concatSequences(const staruno::Sequence<T>& _rLeft, const staruno::Sequence<T in concatSequences()
80 T* pReturn = aReturn.getArray(); in concatSequences()
90 template <class T>
91 …taruno::Sequence<T> concatSequences(const staruno::Sequence<T>& _rLeft, const staruno::Sequence<T>… in concatSequences()
100 T* pReturn = aReturn.getArray(); in concatSequences()
111 template<class T>
301 template <typename T>
[all …]

Completed in 151 milliseconds

12345678910>>...23