/aoo41x/main/connectivity/source/drivers/dbase/ |
H A D | dindexnode.cxx | 42 :nRecord(nRec) in ONDXKey() 48 , nRecord(nRec) in ONDXKey() 55 ,nRecord(nRec) in ONDXKey() 67 ,nRecord(nRec) in ONDXKey() 703 rStream >> aKey.nRecord; // schluessel in Read() 709 aKey = ONDXKey(aDbl,aKey.nRecord); in Read() 723 …ng(aBuf.GetBuffer(),aBuf.Len(),rIndex.m_pTable->getConnection()->getTextEncoding()) ,aKey.nRecord); in Read() 738 rStream << (sal_uInt32)aKey.nRecord; // schluessel in Write() 818 if (eResult == COMPARE_EQUAL && nRecord && rKey.nRecord) in Compare() 819 eResult = (nRecord > rKey.nRecord) ? COMPARE_GREATER : in Compare() [all …]
|
H A D | DNoException.cxx | 273 rStream >> aKey.nRecord; // schluessel in Read() 279 aKey = ONDXKey(aDbl,aKey.nRecord); in Read() 293 …ng(aBuf.GetBuffer(),aBuf.Len(),rIndex.m_pTable->getConnection()->getTextEncoding()) ,aKey.nRecord); in Read() 309 rStream << (sal_uInt32)aKey.nRecord; // schluessel in Write() 392 if (eResult == COMPARE_EQUAL && nRecord && rKey.nRecord) in Compare() 393 eResult = (nRecord > rKey.nRecord) ? COMPARE_GREATER : in Compare() 394 (nRecord == rKey.nRecord) ? COMPARE_EQUAL : COMPARE_LESS; in Compare()
|
/aoo41x/main/connectivity/source/inc/dbase/ |
H A D | dindexnode.hxx | 49 sal_uInt32 nRecord; /* Satzzeiger */ member in connectivity::dbase::ONDXKey 65 sal_uInt32 GetRecord() const { return nRecord; } in GetRecord() 66 void setRecord(sal_uInt32 _nRec) { nRecord = _nRec; } in setRecord() 67 void ResetRecord() { nRecord = 0; } in ResetRecord() 284 ,nRecord(rKey.nRecord) in ONDXKey() 295 nRecord = rKey.nRecord; in operator =()
|
/aoo41x/main/sw/source/core/inc/ |
H A D | dbg_lay.hxx | 72 static sal_uLong nRecord; member in SwProtocol 74 static sal_Bool Start() { return 0 != ( PROT_INIT & nRecord ); } in Start() 76 static sal_uLong Record() { return nRecord; } in Record() 77 static void SetRecord( sal_uLong nNew ) { nRecord = nNew; } in SetRecord() 78 static sal_Bool Record( sal_uLong nFunc ) { return 0 != (( nFunc | PROT_INIT ) & nRecord); } in Record()
|
/aoo41x/main/sw/source/core/layout/ |
H A D | dbg_lay.cxx | 132 sal_uLong SwProtocol::nRecord = 0; member in SwProtocol 242 nRecord &= ~nFunction; // Diese Funktion nicht mehr aufzeichnen in Record() 243 nRecord &= ~PROT_INIT; // PROT_INIT stets zuruecksetzen in Record() 246 nRecord |= nFunction; // Aufzeichnung dieser Funktion freischalten in Record() 247 nRecord &= ~PROT_INIT; // PROT_INIT stets zuruecksetzen in Record() 261 nRecord = 0; in Init() 283 nRecord = 0; in Stop()
|
/aoo41x/main/sw/source/ui/dbui/ |
H A D | mmconfigitem.cxx | 1135 bool SwMailMergeConfigItem::IsRecordExcluded(sal_Int32 nRecord) in IsRecordExcluded() argument 1138 if(nRecord > 0 && nRecord < m_aSelection.getLength()) in IsRecordExcluded() 1141 m_aSelection[nRecord - 1] >>= nTemp; in IsRecordExcluded() 1149 void SwMailMergeConfigItem::ExcludeRecord(sal_Int32 nRecord, bool bExclude) in ExcludeRecord() argument 1154 if(!m_aSelection.getLength() || nRecord > m_aSelection.getLength()) in ExcludeRecord() 1171 if((nRecord - 1) != nIndex) in ExcludeRecord() 1181 if(nRecord > 0 && m_aSelection.getLength() > nRecord) in ExcludeRecord() 1183 m_aSelection[nRecord - 1] <<= bExclude ? -1 : nRecord; in ExcludeRecord()
|
/aoo41x/main/svx/source/form/ |
H A D | tbxform.cxx | 93 sal_Int64 nRecord = GetValue(); in FirePosition() local 94 if (nRecord < GetMin() || nRecord > GetMax()) in FirePosition() 100 SfxInt32Item aPositionParam( FN_PARAM_1, static_cast<sal_Int32>(nRecord) ); in FirePosition()
|
H A D | fmshell.cxx | 784 sal_Int32 nRecord = -1; in Execute() local 794 nRecord = Max( pTypedItem->GetValue(), sal_Int32(0) ); in Execute() 807 nRecord = dlg->GetValue(); in Execute() 809 rReq.AppendItem( SfxInt32Item( FN_PARAM_1, nRecord ) ); in Execute() 813 if ( nRecord != -1 ) in Execute() 814 …r->execute( nSlot, ::rtl::OUString::createFromAscii( "Position" ), makeAny( (sal_Int32)nRecord ) ); in Execute()
|
/aoo41x/main/forms/source/solar/control/ |
H A D | navtoolbar.cxx | 703 sal_Int64 nRecord = GetValue(); in FirePosition() local 704 if ( nRecord < GetMin() || nRecord > GetMax() ) in FirePosition() 708 …cher->dispatchWithArgument( FormFeature::MoveAbsolute, "Position", makeAny( (sal_Int32)nRecord ) ); in FirePosition()
|
/aoo41x/main/starmath/source/ |
H A D | mathtype.cxx | 794 sal_uInt8 nTag,nRecord; in HandleRecords() local 813 nRecord = nTag&0x0F; in HandleRecords() 825 if ((nRecord == CHAR) && (!bIsSilent) && (!bOpenString)) in HandleRecords() 830 else if ((nRecord != CHAR) && (bOpenString)) in HandleRecords() 843 if (nRecord == END) in HandleRecords() 855 switch(nRecord) in HandleRecords() 1905 nLSize=nRecord-10; in HandleRecords() 1912 while (nRecord != END && !pS->IsEof()); in HandleRecords()
|
/aoo41x/main/svx/source/fmcomp/ |
H A D | gridctrl.cxx | 339 sal_Int64 nRecord = GetValue(); in KeyInput() local 340 if (nRecord < GetMin() || nRecord > GetMax()) in KeyInput() 343 ((NavigationBar*)GetParent())->PositionDataSource(static_cast<sal_Int32>(nRecord)); in KeyInput() 355 sal_Int64 nRecord = GetValue(); in LoseFocus() local 356 if (nRecord < GetMin() || nRecord > GetMax()) in LoseFocus() 360 ((NavigationBar*)GetParent())->PositionDataSource(static_cast<sal_Int32>(nRecord)); in LoseFocus() 366 void DbGridControl::NavigationBar::PositionDataSource(sal_Int32 nRecord) in PositionDataSource() argument 374 ((DbGridControl*)GetParent())->MoveToPosition(nRecord - 1); in PositionDataSource()
|
/aoo41x/main/sw/source/ui/inc/ |
H A D | mmconfigitem.hxx | 123 bool IsRecordExcluded(sal_Int32 nRecord); 124 void ExcludeRecord(sal_Int32 nRecord, bool bExclude);
|
/aoo41x/main/svx/inc/svx/ |
H A D | gridctrl.hxx | 208 void PositionDataSource(sal_Int32 nRecord);
|
/aoo41x/main/filter/source/msfilter/ |
H A D | msocximex.cxx | 573 for (sal_uInt32 nRecord = 0; nRecord < nNoRecords; ++nRecord) in Read() local
|