Home
last modified time | relevance | path

Searched refs:typename (Results 1 – 21 of 21) sorted by relevance

/aoo42x/main/stoc/source/security/
H A Dlru_cache.h42 template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
107 template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
129 template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
138 template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
145 template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
152 template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
175 template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
183 template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
209 template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
235 ::std::pair< typename t_key2element::iterator, bool > insertion( in set()
[all …]
/aoo42x/main/ucb/source/inc/
H A Dregexpmap.tpt45 template< typename Val >
64 template< typename Val >
104 template< typename Val >
112 template< typename Val >
124 template< typename Val >
139 template< typename Val >
161 template< typename Val >
171 template< typename Val >
198 template< typename Val >
211 template< typename Val >
[all …]
/aoo42x/main/stlport/systemstl/
H A Dfunctional48 template< typename T> struct identity : unary_function<T,T> { T operator()(const T& t) const { retu…
49 template< typename T, typename U> struct project2nd : public binary_function<T,U,U> { U operator()(…
50 template<typename P> struct select1st : public unary_function<P, typename P::first_type> { const ty…
51 template<typename P> struct select2nd : public unary_function<P, typename P::second_type> { const t…
54 template<typename T> inline T&& forward( typename identity<T>::type&& t) { return t; }
57 template<typename Op1, typename Op2> class unary_compose : public unary_function<typename Op2::argu…
64typename Op1::result_type operator()( const typename Op2::argument_type& x) const { return aOp1(aO…
67 template<typename Op1, typename Op2> inline unary_compose<Op1,Op2> compose1( const Op1& rOp1, const…
H A Dhash_map55 typename __K,
56 typename __T,
57 typename __H = hash<__K>,
58 typename __E = equal_to<__K> >
74 typename __K,
75 typename __T,
76 typename __H = hash<__K>,
77 typename __E = equal_to<__K> >
H A Dhash_set52 typename __K,
53 typename __H = hash<__K>,
54 typename __E = equal_to<__K> >
69 typename __K,
70 typename __H = hash<__K>,
71 typename __E = equal_to<__K> >
H A Dslist60 template< typename T >
64 typedef typename STLP4_SLIST_EMUBASE<T> _super;
65 typedef typename _super::iterator slist_mit;
66 typedef typename _super::const_iterator slist_cit;
/aoo42x/main/cppuhelper/inc/cppuhelper/
H A Dinterfacecontainer.h206 template <typename ListenerT, typename FuncT>
230 template< typename ListenerT, typename EventT >
256 template< typename ListenerT, typename EventT >
273 template <typename ListenerT, typename FuncT>
296 template< typename ListenerT, typename EventT >
404 inline typename InterfaceMap::iterator find(const key &rKey) const in find()
406 typename InterfaceMap::iterator iter = m_pMap->begin(); in find()
407 typename InterfaceMap::iterator end = m_pMap->end(); in find()
/aoo42x/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DDbTools.java476 String typename = AnyConverter.toString(columnProperties.getPropertyValue("TypeName")); in createStandardColumnPart() local
506 if (typename.isEmpty() && nType == datatype) { in createStandardColumnPart()
507 typename = typeName2Cmp; in createStandardColumnPart()
520 … if (!autoIncrementValue.isEmpty() && (index = typename.indexOf(autoIncrementValue)) != -1) { in createStandardColumnPart()
521 typename = typename.substring(0, index); in createStandardColumnPart()
525 int parenPos = typename.indexOf('('); in createStandardColumnPart()
527 sql.append(typename); in createStandardColumnPart()
530 sql.append(typename.substring(0, ++parenPos)); in createStandardColumnPart()
545 parenPos = typename.indexOf(')', parenPos); in createStandardColumnPart()
546 sql.append(typename.substring(parenPos)); in createStandardColumnPart()
[all …]
/aoo42x/main/external/mingwheaders/
H A Dmingw_atl_headers.patch505 - typename typedef _ThreadModel::AutoCriticalSection _CritSec;
506 + typedef typename _ThreadModel::AutoCriticalSection _CritSec;
508 - typename typedef _ThreadModel::AutoDeleteCriticalSection _AutoDelCritSec;
509 + typedef typename _ThreadModel::AutoDeleteCriticalSection _AutoDelCritSec;
707 + CComObjectRootEx<typename contained::_ThreadModel::ThreadModelNoCS>::FinalConstruc…
713 + CComObjectRootEx<typename contained::_ThreadModel::ThreadModelNoCS>::FinalRelease(…
767 + CComObjectRootEx<typename contained::_ThreadModel::ThreadModelNoCS>::FinalRelease(…
814 + m_pOwner = reinterpret_cast<CComObject<typename Base::_OwnerClass>*>(pv);
844 + m_contained(((typename contained::_OwnerClass*)pv)->GetControllingUnknown())
861 + CComObjectRootEx<typename contained::_ThreadModel::ThreadModelNoCS>::FinalRelease(…
[all …]
/aoo42x/main/vigra/
H A Dvigra1.6.0.patch91 typedef typename Alloc::template rebind<PIXELTYPE *>::other LineAllocator;
334 - newdata = allocator_.allocate(typename Alloc::size_type(width*height));
337 + newdata = allocator_.allocate(typename Alloc::size_type(w*h));
349 pallocator_.deallocate(lines_, typename Alloc::size_type(height_));
385 newdata = allocator_.allocate(typename Alloc::size_type(newsize));
399 pallocator_.deallocate(lines_, typename Alloc::size_type(height_));
425 - value_type ** lines = pallocator_.allocate(typename Alloc::size_type(height));
428 + value_type ** lines = pallocator_.allocate(typename Alloc::size_type(h));
1127 typedef typename NumericTraits<value_type>::RealPromote TmpType;
1322 - nextsize = SelectBiggestIntegerType<typename LIST::next>::size,
[all …]
/aoo42x/main/cppu/inc/com/sun/star/uno/
H A DAny.h75 template <typename T>
180 template <typename T>
225 template <typename T>
H A DReference.h518 template <typename T>
H A DType.h437 template< typename T > inline const ::com::sun::star::uno::Type & SAL_CALL
/aoo42x/main/tools/inc/tools/
H A Dsolar.h193 template<typename T> inline T Min(T a, T b) { return (a<b?a:b); } in Min()
194 template<typename T> inline T Max(T a, T b) { return (a>b?a:b); } in Max()
195 template<typename T> inline T Abs(T a) { return (a>=0?a:-a); } in Abs()
/aoo42x/main/solenv/doc/gbuild/solenv/gbuild/
H A Dtypes.mk64 template <typename T>
71 template <typename K, typename V>
/aoo42x/main/cli_ure/source/native/
H A Dnative_share.h54 template< typename T >
79 template< typename T >
/aoo42x/main/xmerge/workben/
H A Djstyle.pl141 $typename = '(int|char|boolean|byte|short|long|float|double)';
500 if (/\b$typename\*/o) {
/aoo42x/main/boost/
H A Dboost_1_55_0.patch132 typename parser_result<self_t, ScannerT>::type
135 - typedef typename parser_result<self_t, ScannerT>::type result_t;
136 typedef typename ScannerT::value_t value_t;
137 typedef typename ScannerT::iterator_t iterator_t;
/aoo42x/main/sal/inc/sal/
H A Dtypes.h435 template< typename T1, typename T2 > inline T1 static_int_cast(T2 n) { in static_int_cast()
/aoo42x/main/desktop/source/deployment/inc/
H A Ddp_resource.h43 template <typename Unique, sal_uInt16 id>
/aoo42x/main/codemaker/test/cppumaker/
H A Dtypes.idl260 service typename: com::sun::star::uno::XInterface {
261 typename([in] long typename); };
508 singleton typename: com::sun::star::uno::XInterface;

Completed in 105 milliseconds