Lines Matching refs:rec

577             ContainerRecord rec;  in Read()  local
598 *pS >> rec.nSubStorageId; in Read()
607 rec.bVisible = ( ( nBitFlags & 0x02 ) == 0x02 ); in Read()
611 *pS >> rec.nSubStreamLen; in Read()
614 *pS >> rec.nTabPos; in Read()
617 *pS >> rec.nTypeIdent; in Read()
667 *pS >> rec.nLeft >> rec.nTop; in Read()
678 rec.controlTip = lclCreateOUString( pTipName.get(), nTipLen ); in Read()
705 rec.cName = lclCreateOUString(pName, nNameLen); in Read()
709 if( pContainerControl->createFromContainerRecord( rec, pControl ) && in Read()
714 pContainerControl->ProcessControl( pControl, pS, rec ); in Read()
3570 …nerControl::ProcessControl(OCX_Control* pControl,SvStorageStream* /* pS */, ContainerRecord& rec ) in ProcessControl() argument
3575 if ( rec.nTypeIdent == SPINBUTTON || in ProcessControl()
3576 rec.nTypeIdent == TABSTRIP) in ProcessControl()
3579 oStream->SeekRel( rec.nSubStreamLen ); in ProcessControl()
3586 if ( rec.nTypeIdent == FRAME || in ProcessControl()
3587 rec.nTypeIdent == MULTIPAGE|| in ProcessControl()
3588 rec.nTypeIdent == PAGE ) in ProcessControl()
3595 pControl->sName = rec.cName; in ProcessControl()
3596 pControl->msToolTip = rec.controlTip; in ProcessControl()
3598 pControl->mnTop = rec.nTop + mnTop; in ProcessControl()
3599 pControl->mnLeft = rec.nLeft + mnLeft; in ProcessControl()
3605 pControl->mnTabPos = rec.nTabPos; in ProcessControl()
3607 pControl->mbVisible = rec.bVisible; in ProcessControl()
3622 oStream->Seek( nStrmPos + rec.nSubStreamLen ); in ProcessControl()
3625 if ( rec.nTypeIdent == OPTIONBUTTON ) in ProcessControl()
3684 …MultiPage::ProcessControl(OCX_Control* pControl, SvStorageStream* /* pS */, ContainerRecord& rec ) in ProcessControl() argument
3689 if ( rec.nTypeIdent == PAGE ) in ProcessControl()
3708 OSL_TRACE("!!!! Unsupported Control 0x%x ", rec.nTypeIdent); in ProcessControl()