Home
last modified time | relevance | path

Searched refs:pT (Results 1 – 25 of 38) sorted by relevance

12

/trunk/main/cppu/inc/com/sun/star/uno/
H A DType.hxx200 sal_Int32 size = sizeof( **pT ); in getCppuArrayType1()
201 sal_Int32 dim1 = sizeof( *pT ) / size; in getCppuArrayType1()
217 sal_Int32 size = sizeof( ***pT ); in getCppuArrayType2()
218 sal_Int32 dim2 = sizeof( **pT ) / size; in getCppuArrayType2()
235 sal_Int32 size = sizeof( ****pT ); in getCppuArrayType3()
236 sal_Int32 dim3 = sizeof( ***pT ) / size; in getCppuArrayType3()
254 sal_Int32 size = sizeof( *****pT ); in getCppuArrayType4()
255 sal_Int32 dim4 = sizeof( ****pT ) / size; in getCppuArrayType4()
274 sal_Int32 size = sizeof( ******pT ); in getCppuArrayType5()
275 sal_Int32 dim5 = sizeof( *****pT ) / size; in getCppuArrayType5()
[all …]
H A DType.h382 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuArrayType1( T * pT ) SAL_THROW( () );
389 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuArrayType2( T * pT ) SAL_THROW( () );
396 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuArrayType3( T * pT ) SAL_THROW( () );
403 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuArrayType4( T * pT ) SAL_THROW( () );
410 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuArrayType5( T * pT ) SAL_THROW( () );
417 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuArrayType6( T * pT ) SAL_THROW( () );
/trunk/main/sal/inc/osl/
H A Dmutex.hxx134 T * pT; member in osl::Guard
141 pT->acquire(); in Guard()
148 pT->acquire(); in Guard()
154 pT->release(); in ~Guard()
167 T * pT; member in osl::ClearableGuard
174 pT->acquire(); in ClearableGuard()
181 pT->acquire(); in ClearableGuard()
188 if (pT) in ~ClearableGuard()
189 pT->release(); in ~ClearableGuard()
196 if(pT) in clear()
[all …]
/trunk/main/connectivity/source/inc/ado/
H A DAolewrap.hxx163 T* pT = NULL; in GetItem() local
165 if(SUCCEEDED(pInterface->get_Item(OLEVariant(index), &pT))) in GetItem()
166 aRet.setWithOutAddRef(pT); in GetItem()
172 T* pT = NULL; in GetItem() local
174 if(SUCCEEDED(pInterface->get_Item(index, &pT))) in GetItem()
175 aRet.setWithOutAddRef(pT); in GetItem()
182 T* pT = NULL; in GetItem() local
183 if (FAILED(pInterface->get_Item(OLEVariant(sStr), &pT))) in GetItem()
192 aRet.setWithOutAddRef(pT); in GetItem()
/trunk/main/filter/source/graphicfilter/idxf/
H A Ddxf2mtf.cxx770 const DXFTransform * pT; in DrawEntities() local
777 pT=&rTransform; in DrawEntities()
781 pT=&aET; in DrawEntities()
785 DrawLineEntity((DXFLineEntity&)*pE,*pT); in DrawEntities()
788 DrawPointEntity((DXFPointEntity&)*pE,*pT); in DrawEntities()
791 DrawCircleEntity((DXFCircleEntity&)*pE,*pT); in DrawEntities()
794 DrawArcEntity((DXFArcEntity&)*pE,*pT); in DrawEntities()
797 DrawTraceEntity((DXFTraceEntity&)*pE,*pT); in DrawEntities()
800 DrawSolidEntity((DXFSolidEntity&)*pE,*pT); in DrawEntities()
803 DrawTextEntity((DXFTextEntity&)*pE,*pT); in DrawEntities()
[all …]
/trunk/main/ucb/source/cacher/
H A Dcontentresultsetwrapper.hxx84 osl::Mutex* pT; member in ContentResultSetWrapper::ReacquireableGuard
87 ReacquireableGuard(osl::Mutex * t) : pT(t) in ReacquireableGuard()
89 pT->acquire(); in ReacquireableGuard()
94 pT->acquire(); in ReacquireableGuard()
100 if (pT) in ~ReacquireableGuard()
101 pT->release(); in ~ReacquireableGuard()
107 if(pT) in clear()
109 pT->release(); in clear()
110 pT = NULL; in clear()
117 if(pT) in reacquire()
[all …]
/trunk/main/sw/source/core/doc/
H A Ddocsort.cxx660 const SwTableBox* pT = pTarget->GetBox(); in MoveRow() local
663 sal_Bool bMoved = rMovedList.GetPos(pT) != USHRT_MAX; in MoveRow()
666 MoveCell(pDoc, pS, pT, bMoved, pUD); in MoveRow()
670 if( pS != pT ) in MoveRow()
672 SwFrmFmt* pTFmt = (SwFrmFmt*)pT->GetFrmFmt(); in MoveRow()
680 pTFmt = ((SwTableBox*)pT)->ClaimFrmFmt(); in MoveRow()
709 const SwTableBox* pT = pTarget->GetBox(); in MoveCol() local
714 MoveCell(pDoc, pS, pT, bMoved, pUD); in MoveCol()
718 if( pS != pT ) in MoveCol()
720 SwFrmFmt* pTFmt = (SwFrmFmt*)pT->GetFrmFmt(); in MoveCol()
[all …]
/trunk/main/idl/source/objects/
H A Dslot.cxx165 SvMetaType * pT; in Load() local
166 rStm >> pT; in Load()
167 aSlotType = pT; in Load()
1444 SvMetaType * pT = GetSlotType(); in WriteSlot() local
1445 if( !pT ) in WriteSlot()
1448 pT = rBase.FindType( "SfxVoidItem" ); in WriteSlot()
1450 pT = GetType(); in WriteSlot()
1452 if( pT ) in WriteSlot()
1456 rBase.aUsedTypes.Append( pT ); in WriteSlot()
1464 if ( pT && !rBase.FindType( pT, rBase.aUsedTypes ) ) in WriteSlot()
[all …]
/trunk/main/cppu/inc/cppu/
H A DShield.hxx45 template<class T> inline T * shield(T * pT) in shield() argument
47 …return mapOut(pT, cssu::Environment(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(CPPU_STRINGIFY(CPPU_… in shield()
56 template<class T> inline T * unshield(T * pT) in unshield() argument
58 …return mapIn(pT, cssu::Environment(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(CPPU_STRINGIFY(CPPU_E… in unshield()
H A DMap.hxx45 template<class T> inline T * mapOut(T * pT, cssu::Environment const & outerEnv) in mapOut() argument
49 …return reinterpret_cast<T *>(curr2outer.mapInterface(pT, getCppuType((cssu::Reference<T> *)NULL))); in mapOut()
60 template<class T> inline T * mapIn(T * pT, cssu::Environment const & outerEnv) in mapIn() argument
64 …return reinterpret_cast<T *>(outer2curr.mapInterface(pT, getCppuType((cssu::Reference<T> *)NULL))); in mapIn()
/trunk/main/sc/source/core/tool/
H A Dreftokenhelper.cxx83 const ScToken* pT = static_cast<const ScToken*>(p); in compileRangeRepresentation() local
84 switch (pT->GetType()) in compileRangeRepresentation()
87 if (!pT->GetSingleRef().Valid()) in compileRangeRepresentation()
91 if (!pT->GetDoubleRef().Valid()) in compileRangeRepresentation()
95 if (!pT->GetSingleRef().ValidExternal()) in compileRangeRepresentation()
99 if (!pT->GetDoubleRef().ValidExternal()) in compileRangeRepresentation()
/trunk/main/sw/source/filter/ww8/
H A Dww8graf.cxx809 if( !pT ) in GetTxbxTextSttEndCp()
818 pT->SetIdx( nTxBxS-1 ); in GetTxbxTextSttEndCp()
822 if( !pT->Get( rStartCp, pT0 ) ) in GetTxbxTextSttEndCp()
833 (*pT)++; in GetTxbxTextSttEndCp()
834 if( !pT->Get( rStartCp, pT0 ) ) in GetTxbxTextSttEndCp()
842 (*pT)++; in GetTxbxTextSttEndCp()
843 if( !pT->Get( rEndCp, pT0 ) ) in GetTxbxTextSttEndCp()
859 pT = pPlcxMan->GetTxbxBkd(); in GetTxbxTextSttEndCp()
864 if( !pT->SeekPos( rStartCp ) ) in GetTxbxTextSttEndCp()
872 if( (!pT->Get( rStartCp, pT0 )) in GetTxbxTextSttEndCp()
[all …]
H A Dww8par2.cxx1221 const sal_uInt8* pT = &pS[1]; in ReadDef() local
1224 for(i=0; i<=nCols; i++, pT+=2 ) in ReadDef()
1262 WW8_TCellVer6* pTc = (WW8_TCellVer6*)pT; in ReadDef()
1294 WW8_TCellVer8* pTc = (WW8_TCellVer8*)pT; in ReadDef()
2269 WW8_TCell* pT = &pR->pTCs[k]; in CalcDefaults() local
2297 pT->rgbrc[i] = pR->aDefBrcs[j]; in CalcDefaults()
3104 WW8_TCell* pT = &pActBand->pTCs[nWwIdx]; in SetTabBorders() local
3105 if (pIo->IsBorder(pT->rgbrc)) in SetTabBorders()
3106 pIo->SetBorder(aFmtBox, pT->rgbrc); in SetTabBorders()
3227 WW8_TCell* pT = &pActBand->pTCs[nWwIdx]; in SetTabVertAlign() local
[all …]
/trunk/main/sc/workben/
H A Dresult.cxx73 IMPL_LINK_INLINE_START( ScAddInResult, TimeoutHdl, Timer*, pT ) in IMPL_LINK_INLINE_START() argument
76 pT->Start(); in IMPL_LINK_INLINE_START()
79 IMPL_LINK_INLINE_END( ScAddInResult, TimeoutHdl, Timer*, pT ) in IMPL_LINK_INLINE_END() argument
/trunk/main/svl/source/items/
H A Drngitem_inc.cxx99 SfxXRangeItem* pT = (SfxXRangeItem*)&rItem; in operator ==() local
100 if( nFrom==pT->nFrom && nTo==pT->nTo ) in operator ==()
/trunk/main/writerfilter/source/doctok/
H A DPLCF.hxx180 typename T::Pointer_t pT = getEntry(n); in dump() local
183 pT->dump(output_); in dump()
/trunk/main/fpicker/source/aqua/
H A DFilterHelper.cxx403 NSString* pT = (NSString*)pType; in filenameMatchesFilter() local
404 if( [pT isEqualToString: NSFileTypeDirectory] || in filenameMatchesFilter()
405 [pT isEqualToString: NSFileTypeSymbolicLink] ) in filenameMatchesFilter()
/trunk/main/chart2/source/inc/
H A DLifeTime.hxx234 NegativeGuard(T * pT) : m_pT(pT) in NegativeGuard() argument
/trunk/main/sc/source/filter/excel/
H A Dexcrecds.cxx572 void ExcFilterCondition::SetCondition( sal_uInt8 nTp, sal_uInt8 nOp, double fV, String* pT ) in SetCondition() argument
579 pText = pT ? new XclExpString( *pT, EXC_STR_8BITLENGTH ) : NULL; in SetCondition()
/trunk/main/idl/inc/
H A Dtypes.hxx96 void SetType( SvMetaType * pT ) { aType = pT; } in SetType() argument
/trunk/main/forms/source/xforms/
H A Dmodel.cxx83 …heck() { mpT->dbg_assertInvariant(); } public: DBG_##TYPE(const TYPE* pT) : mpT(pT) { check(); } ~…
/trunk/main/sc/source/filter/inc/
H A Dexcrecds.hxx408 void SetCondition( sal_uInt8 nTp, sal_uInt8 nOp, double fV, String* pT );
/trunk/main/sc/source/filter/html/
H A Dhtmlpars.cxx137 for ( Table* pT = (Table*) pTables->First(); pT; pT = (Table*) pTables->Next() ) in ~ScHTMLLayoutParser() local
138 delete pT; in ~ScHTMLLayoutParser()
/trunk/main/sw/source/core/unocore/
H A Dunoframe.cxx698 const ::uno::Any* pT = 0; in FillBaseProperties() local
699 GetProperty(RES_UL_SPACE, MID_UP_MARGIN|CONVERT_TWIPS, pT ); in FillBaseProperties()
702 if(pT||pB) in FillBaseProperties()
705 if(pT) in FillBaseProperties()
706 bRet &= ((SfxPoolItem&)aTB).PutValue(*pT, MID_UP_MARGIN|CONVERT_TWIPS); in FillBaseProperties()
/trunk/main/cli_ure/source/climaker/
H A Dclimaker_emit.cxx1576 ::uno::PolymorphicType * pT = dynamic_cast< ::uno::PolymorphicType * >(arTypeParameters[i]); in complete_service_type()
1577 if (pT) in complete_service_type()
1578 arParamTypes[i] = pT->OriginalType; in complete_service_type()

Completed in 161 milliseconds

12