Home
last modified time | relevance | path

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

12345678910>>...19

/AOO41X/main/o3tl/inc/o3tl/
H A Dheap_ptr.hxx78 template <class T>
82 typedef T element_type; /// Provided for generic programming.
83 typedef heap_ptr<T> self;
86 typedef T * (self::* safe_bool )();
91 T * pass_heapObject = 0 );
99 T * pass_heapObject );
100 const T & operator*() const;
101 T & operator*();
102 const T * operator->() const;
103 T * operator->();
[all …]
H A Drange.hxx43 template <class T>
47 typedef T element_type; /// Provided for generic programming.
48 typedef range<T> self;
52 T i_inclusiveLowerBorder,
53 T i_exclusiveUpperBorder );
56 T begin() const;
57 T end() const;
61 T i_value ) const;
71 T nBegin;
72 T nEnd;
[all …]
/AOO41X/main/sfx2/inc/sfx2/
H A Dminarray.hxx41 #define DECL_OBJARRAY( ARR, T, nI, nG ) \ argument
45 T* pData;\
56 const T& GetObject( sal_uInt16 nPos ) const; \
57 T& GetObject( sal_uInt16 nPos ); \
60 void Insert( sal_uInt16 nPos, const T& rElem );\
61 void Insert( sal_uInt16 nPos, const T& rElems, sal_uInt16 nLen );\
62 void Append( const T& rElem );\
64 sal_Bool Remove( const T& rElem );\
68 T* operator*();\
69 const T& operator[]( sal_uInt16 nPos ) const;\
[all …]
H A Dminstack.hxx29 #define DECL_OBJSTACK( ARR, T, nI, nG ) \ argument
30 DECL_OBJARRAY( ARR##arr_, T, nI, nG ); \
43 void Push( const T& rElem ) { Append( rElem ); } \
44 const T& Top( sal_uInt16 nLevel = 0 ) const \
46 const T& Bottom() const { return (*this)[0]; } \
47 T Pop(); \
49 sal_Bool Contains( const T& rItem ) const \
53 #define IMPL_OBJSTACK( ARR, T ) \ argument
54 IMPL_OBJARRAY( ARR##arr_, T ); \
56 T ARR::Pop() \
[all …]
/AOO41X/main/writerfilter/inc/resourcemodel/
H A DTableManager.hxx41 template <typename T, typename PropertiesPointer>
90 const T & rT,
99 const T & rT ) = 0;
102 template <typename T, typename PropertiesPointer>
289 T mCurHandle;
391 T getHandle() in getHandle()
397 const T & rHandle ) in setHandle()
403 typedef boost::shared_ptr<T> T_p;
420 stack<typename TableData<T, PropertiesPointer>::Pointer_t > mTableDataStack;
422 typedef typename TableDataHandler<T, PropertiesPointer>::Pointer_t TableDataHandlerPointer_t;
[all …]
H A DOutputWithDepth.hxx35 template <typename T>
38 typedef ::std::vector<T> Group_t;
44 T mOpenTag;
45 T mCloseTag;
48 virtual void output(const T & aItem) const = 0;
53 OutputWithDepth(const T & aOpenTag, const T & aCloseTag);
58 void addItem(const T & aItem);
62 template <typename T>
63 OutputWithDepth<T>::OutputWithDepth(const T & aOpenTag, const T & aEndTag) in OutputWithDepth()
68 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()
82 void setEnd(T end) { mEnd = end; mbOpen = false; } in setEnd()
107 const T & getStart() { return mStart; } in getStart()
112 const T & getEnd() { return mEnd; } in getEnd()
122 template <typename T, typename PropertiesPointer>
128 typedef typename CellData<T, PropertiesPointer>::Pointer_t
[all …]
/AOO41X/main/vos/inc/vos/
H A Dref.inl31 template <class T>
32 inline ORef<T>::ORef()
37 template <class T>
38 inline ORef<T>::ORef(T* pBody)
46 template <class T>
47 inline ORef<T>::ORef(const ORef<T>& handle)
55 template <class T>
56 inline ORef<T>::~ORef()
62 template <class T>
63 inline ORef<T>& ORef<T>::operator= (const ORef<T>& handle)
[all …]
H A Drefobj.inl25 template <class T>
26 ORefObj<T>::ORefObj(const T& Obj)
33 template <class T>
34 inline ORefObj<T>::~ORefObj()
39 template <class T>
40 inline T& ORefObj<T>::operator=(const T& Obj)
47 template <class T>
48 inline ORefObj<T>::operator T&()
53 template <class T>
54 inline ORefObj<T>::operator const T&() const
[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();
108 void SAL_CALL operator= (T* pBody);
112 T& SAL_CALL operator() () const;
116 T& SAL_CALL operator* () const;
120 T* SAL_CALL operator->() const;
[all …]
/AOO41X/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 ()()
48 template< typename T, typename M > struct MaskFunctorBase :
49 public TernaryFunctorBase<T,M,T,T> {};
59 template< typename T,
61 bool polarity > struct GenericOutputMaskFunctor : public MaskFunctorBase<T,M>
64 T operator()( T v1, M m, T v2 ) const in operator ()()
73 template< typename T,
76 template< typename T,
77 typename M > struct IntegerOutputMaskFunctor<T,M,true> : public MaskFunctorBase<T,M>
[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;
61 template <typename T> struct remove_const
63 typedef T type;
65 template <typename T> struct remove_const<const T>
67 typedef T type;
88 template< typename T > struct make_unsigned;
90 #define BASEBMP_MAKE_UNSIGNED(T,U) \ argument
[all …]
/AOO41X/main/cosv/inc/cosv/tpl/
H A Drange.hxx44 template <class T>
48 typedef T element_type; /// Provided for generic programming.
49 typedef range<T> self;
53 T i_inclusiveLowerBorder,
54 T i_exclusiveUpperBorder );
57 T begin() const;
58 T end() const;
62 T i_value ) const;
72 T nBegin;
73 T nEnd;
[all …]
/AOO41X/main/idlc/test/parser/
H A Dpolystruct.tests23 struct Struct<T> { T member; };
27 struct Struct<T,U,T,V> { long member; };
31 struct Struct<T> { long member; };
36 struct Struct<T> { long member; };
41 struct Struct<T> { long 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; };
[all …]
/AOO41X/main/xmloff/inc/xmloff/
H A Duniref.hxx39 template< class T > class UniReference
42 T* mpElement;
54 inline UniReference( const UniReference< T > & rRef );
59 inline UniReference( T * pElement );
64 inline UniReference< T > & operator = ( T * pElement );
69 inline UniReference< T > & operator = ( const UniReference< T > & rRef );
74 inline T* operator -> () const;
96 inline T* get() const;
122 template< class T >
123 inline UniReference< T >::UniReference( const UniReference< T > & rRef ) in UniReference()
[all …]
/AOO41X/main/writerfilter/source/doctok/
H A DPLCF.hxx45 template <class T>
69 typedef boost::shared_ptr< PLCF< T > > Pointer_t;
108 T * getEntryPointer(sal_uInt32 nIndex) const;
115 typename T::Pointer_t getEntry(sal_uInt32 nIndex) const;
122 T * getEntryByFc(sal_uInt32 nFc) const;
127 template <class T>
128 sal_uInt32 PLCF<T>::getEntryCount_() const in getEntryCount_()
130 return (getCount() - 4) / (T::getSize() + 4); in getEntryCount_()
133 template <class T>
134 sal_uInt32 PLCF<T>::getFc(sal_uInt32 nIndex) const in getFc()
[all …]
H A DXNoteHelperImpl.hxx30 template <class T>
31 sal_uInt32 XNoteHelper<T>::getCount() const in getCount()
41 template <class T>
42 CpAndFc XNoteHelper<T>::getCpAndFc(sal_uInt32 nPos) in getCpAndFc()
55 template <class T>
56 CpAndFc XNoteHelper<T>::getRefCpAndFc(sal_uInt32 nPos) in getRefCpAndFc()
69 template <class T>
71 XNoteHelper<T>::get(sal_uInt32 nPos) in get()
89 template <class T>
90 sal_uInt32 XNoteHelper<T>::getIndexOfCpAndFc(const CpAndFc & rCpAndFc) in getIndexOfCpAndFc()
[all …]
/AOO41X/main/sw/source/filter/ww8/
H A Dwriterhelper.hxx252 template<class T> const T & item_cast(const SfxPoolItem &rItem) in item_cast()
255 if (!rItem.IsA(STATICTYPE(T))) in item_cast()
257 return static_cast<const T &>(rItem); in item_cast()
278 template<class T> const T * item_cast(const SfxPoolItem *pItem) in item_cast()
280 if (pItem && !pItem->IsA(STATICTYPE(T))) in item_cast()
282 return static_cast<const T *>(pItem); in item_cast()
310 template<class T> const T & ItemGet(const SwCntntNode &rNode, in ItemGet()
313 return item_cast<T>(rNode.GetAttr(eType)); in ItemGet()
339 template<class T> const T & ItemGet(const SwFmt &rFmt, in ItemGet()
342 return item_cast<T>(rFmt.GetFmtAttr(eType)); in ItemGet()
[all …]
/AOO41X/main/basic/source/comp/
H A Dcodegen.cxx345 template < class T >
353 virtual void processOpCode1( SbiOpcode eOp, T nOp1 ) = 0;
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;
368 T readParam( sal_uInt8*& pCode ) in readParam()
370 short nBytes = sizeof( T ); in readParam()
371 T nOp1=0; in readParam()
377 PCodeBufferWalker( sal_uInt8* pCode, T nBytes ): m_nBytes( nBytes ), m_pCode( pCode ) in PCodeBufferWalker()
[all …]
/AOO41X/main/cppu/inc/com/sun/star/uno/
H A DType.hxx93 template< class T >
94 typelib_TypeDescriptionReference * Array< T >::s_pType = 0;
193 template< class T >
194 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuArrayType1( T * pT ) SAL_THROW( () ) in getCppuArrayType1()
196 if (! ::com::sun::star::uno::Array< T >::s_pType) in getCppuArrayType1()
203 & ::com::sun::star::uno::Array< T >::s_pType, rElementType.getTypeLibType(), in getCppuArrayType1()
207 & ::com::sun::star::uno::Array< T >::s_pType ); in getCppuArrayType1()
210 template< class T >
211 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuArrayType2( T * pT ) SAL_THROW( () ) in getCppuArrayType2()
213 if (! ::com::sun::star::uno::Array< T >::s_pType) in getCppuArrayType2()
[all …]
/AOO41X/main/sal/rtl/source/
H A Ddigest.c38 #define RTL_DIGEST_CREATE(T) ((T*)(rtl_allocateZeroMemory(sizeof(T)))) argument
1016 register sal_uInt32 A, B, C, D, E, T; in __rtl_digest_updateSHA() local
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()
1036 BODY_00_15 (U, 7, T, A, B, C, D, E); in __rtl_digest_updateSHA()
[all …]
H A Dmath.cxx295 template< typename T, typename StringT >
299 sal_Int32 nDecPlaces, typename T::Char cDecSeparator, in doubleToString()
301 typename T::Char cGroupSeparator, in doubleToString()
322 T::createBuffer(pResult, pResultCapacity); in doubleToString()
325 T::appendAscii(pResult, pResultCapacity, &nResultOffset, in doubleToString()
339 T::createBuffer(pResult, pResultCapacity); in doubleToString()
343 T::appendAscii(pResult, pResultCapacity, &nResultOffset, in doubleToString()
345 T::appendAscii(pResult, pResultCapacity, &nResultOffset, in doubleToString()
424 typename T::Char aBuf[nBufMax]; in doubleToString()
425 typename T::Char * pBuf; in doubleToString()
[all …]
/AOO41X/main/autodoc/inc/ary/doc/
H A Dd_parametrized.hxx39 template <class T>
46 T i_Parameter );
51 const T & Parameter() const;
56 const T & i_param );
63 T aParameter;
70 template <class T>
71 Parametrized<T>::Parametrized( nodetype::id i_id, in Parametrized()
72 T i_Parameter ) in Parametrized()
79 template <class T>
80 Parametrized<T>::~Parametrized() in ~Parametrized()
[all …]
/AOO41X/main/store/workben/
H A Dt_page.cxx41 template< class T > void swap (T & lhs, T & rhs) in swap()
43 T tmp = rhs; rhs = lhs; lhs = tmp; in swap()
199 template< class T > T * construct() in construct()
204 return new(page) T(size); in construct()
348 template< class T >
377 static PageHolderObject<T> construct (rtl::Reference< PageData::Allocator > const & rxAllocator) in construct()
379 PageHolderObject<T> tmp; in construct()
382 PageHolder xPage (rxAllocator->construct<T>(), rxAllocator); in construct()
392 void swap (PageHolderObject<T> & rhs) in swap()
397 PageHolderObject (PageHolderObject<T> const & rhs) in PageHolderObject()
[all …]
/AOO41X/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()
75 const T* pLeft = _rLeft.getConstArray(); in concatSequences()
76 const T* pRight = _rRight.getConstArray(); in concatSequences()
79 staruno::Sequence<T> aReturn(nReturnLen); 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()
[all …]

12345678910>>...19