Home
last modified time | relevance | path

Searched refs:pEntry (Results 201 – 225 of 485) sorted by relevance

12345678910>>...20

/trunk/main/svtools/source/control/
H A Dtoolbarmenuacc.cxx384 ToolbarMenuEntry* pEntry = mpParent->maEntryVector[nEntry]; in getAccessibleAtPoint() local
385 if( pEntry && pEntry->maRect.IsInside( aVclPoint ) ) in getAccessibleAtPoint()
387 if( pEntry->mpControl ) in getAccessibleAtPoint()
389 awt::Point aChildPoint( aPoint.X - pEntry->maRect.Left(), aPoint.Y - pEntry->maRect.Top() ); in getAccessibleAtPoint()
390 Reference< XAccessibleComponent > xComp( pEntry->GetAccessible(true), UNO_QUERY_THROW ); in getAccessibleAtPoint()
395 xRet = Reference< XAccessible >( pEntry->GetAccessible(true), UNO_QUERY ); in getAccessibleAtPoint()
540 ToolbarMenuEntry* pEntry = mpParent->maEntryVector[ mpParent->mnHighlightedEntry ]; in getSelectedAccessibleChild() local
541 if( pEntry ) in getSelectedAccessibleChild()
543 if( pEntry->mpControl ) in getSelectedAccessibleChild()
545 Reference< XAccessibleSelection > xSel( pEntry->GetAccessible(true), UNO_QUERY_THROW ); in getSelectedAccessibleChild()
[all …]
/trunk/main/accessibility/source/extended/
H A Daccessibleiconchoicectrlentry.cxx148 SvxIconChoiceCtrlEntry* pEntry = m_pIconCtrl->GetEntry( m_nIndex ); in GetBoundingBox_Impl() local
149 if ( pEntry ) in GetBoundingBox_Impl()
150 aRect = m_pIconCtrl->GetBoundingBox( pEntry ); in GetBoundingBox_Impl()
158 SvxIconChoiceCtrlEntry* pEntry = m_pIconCtrl->GetEntry( m_nIndex ); in GetBoundingBoxOnScreen_Impl() local
159 if ( pEntry ) in GetBoundingBoxOnScreen_Impl()
161 aRect = m_pIconCtrl->GetBoundingBox( pEntry ); in GetBoundingBoxOnScreen_Impl()
217 SvxIconChoiceCtrlEntry* pEntry = m_pIconCtrl->GetEntry( m_nIndex ); in implGetText() local
218 if ( pEntry ) in implGetText()
219 sRet = pEntry->GetDisplayText(); in implGetText()
719 if ( pEntry && !pEntry->IsSelected() ) in doAccessibleAction()
[all …]
/trunk/main/sw/source/ui/cctrl/
H A Dswlbox.cxx117 SwBoxEntry* pEntry = aEntryLst[nPos]; in RemoveEntry() local
122 if(pEntry->bNew) in RemoveEntry()
126 aDelEntryLst.C40_INSERT(SwBoxEntry, pEntry, aDelEntryLst.Count()); in RemoveEntry()
177 void SwComboBox::InsertSorted(SwBoxEntry* pEntry) in InsertSorted() argument
179 ComboBox::InsertEntry(pEntry->aName); in InsertSorted()
180 sal_uInt16 nPos = ComboBox::GetEntryPos(pEntry->aName); in InsertSorted()
181 aEntryLst.C40_INSERT(SwBoxEntry, pEntry, nPos); in InsertSorted()
/trunk/main/package/source/package/zippackage/
H A DZipPackage.cxx1001 ZipEntry * pEntry = new ZipEntry; in WriteMimetypeMagicFile() local
1008 pEntry->sPath = sMime; in WriteMimetypeMagicFile()
1009 pEntry->nMethod = STORED; in WriteMimetypeMagicFile()
1010 pEntry->nSize = pEntry->nCompressedSize = nBufferLength; in WriteMimetypeMagicFile()
1015 pEntry->nCrc = aCRC32.getValue(); in WriteMimetypeMagicFile()
1019 aZipOut.putNextEntry( *pEntry, NULL ); in WriteMimetypeMagicFile()
1046 pEntry->nMethod = DEFLATED; in WriteManifest()
1047 pEntry->nCrc = pEntry->nSize = pEntry->nCompressedSize = -1; in WriteManifest()
1086 ZipEntry* pEntry = new ZipEntry; in WriteContentTypes() local
1091 pEntry->nMethod = DEFLATED; in WriteContentTypes()
[all …]
H A DZipPackageFolder.cxx203 ZipPackageEntry *pEntry; in insertByName() local
207 pEntry = static_cast < ZipPackageEntry * > ( pFolder ); in insertByName()
212 pEntry = static_cast < ZipPackageEntry * > ( pStream ); in insertByName()
217 if (pEntry->getName() != aName ) in insertByName()
218 pEntry->setName (aName); in insertByName()
219 doInsertByName ( pEntry, sal_True ); in insertByName()
816 void ZipPackageFolder::doInsertByName ( ZipPackageEntry *pEntry, sal_Bool bSetParent ) in doInsertByName() argument
821 if ( pEntry->IsFolder() ) in doInsertByName()
822 … maContents[pEntry->getName()] = new ContentInfo ( static_cast < ZipPackageFolder *> ( pEntry ) ); in doInsertByName()
824 … maContents[pEntry->getName()] = new ContentInfo ( static_cast < ZipPackageStream *> ( pEntry ) ); in doInsertByName()
[all …]
/trunk/main/svx/inc/svx/
H A Dxtable.hxx172 void Insert(XPropertyEntry* pEntry, long nIndex = LIST_APPEND);
173 XPropertyEntry* Replace(XPropertyEntry* pEntry, long nIndex);
244 XColorEntry* Replace(XColorEntry* pEntry, long nIndex );
272 XLineEndEntry* Replace(XLineEndEntry* pEntry, long nIndex);
303 XDashEntry* Replace(XDashEntry* pEntry, long nIndex);
339 XHatchEntry* Replace(XHatchEntry* pEntry, long nIndex);
365 XGradientEntry* Replace(XGradientEntry* pEntry, long nIndex);
391 XBitmapEntry* Replace(XBitmapEntry* pEntry, long nIndex );
/trunk/main/tools/inc/tools/
H A Dref.hxx162 EN pEntry = First(); \
163 while( pEntry ) \
164 { pEntry->AddRef(); pEntry = Next(); } \
174 EN pEntry = rList.First(); \
175 while( pEntry ) \
176 { pEntry->AddRef(); pEntry = rList.Next(); } \
185 EN pEntry = Last();\
186 while( NULL != pEntry )\
187 pEntry = Remove();\
/trunk/main/dbaccess/source/ui/querydesign/
H A DTableWindow.cxx213 pEntry->SetUserData( createUserData(NULL,false) ); in FillListBox()
234 SvLBoxEntry* pEntry = NULL; in FillListBox() local
240 pEntry = m_pListBox->InsertEntry(*pIter, aPrimKeyImage, aPrimKeyImage); in FillListBox()
242 pEntry = m_pListBox->InsertEntry(*pIter); in FillListBox()
246 pEntry->SetUserData( createUserData(xColumn,bPrimaryKeyColumn) ); in FillListBox()
273 SvLBoxEntry* pEntry = m_pListBox->First(); in clearListBox() local
275 while(pEntry) in clearListBox()
277 void* pUserData = pEntry->GetUserData(); in clearListBox()
279 SvLBoxEntry* pNextEntry = m_pListBox->Next(pEntry); in clearListBox()
280 m_pListBox->GetModel()->Remove(pEntry); in clearListBox()
[all …]
/trunk/main/sw/source/filter/xml/
H A Dxmltexti.cxx263 const XMLServiceMapEntry_Impl *pEntry = aServiceMap; in createAndInsertOLEObject() local
264 while( pEntry->sFilterService ) in createAndInsertOLEObject()
266 if( aObjName.equalsAsciiL( pEntry->sFilterService, in createAndInsertOLEObject()
267 pEntry->nFilterServiceLen ) ) in createAndInsertOLEObject()
269 aClassName = SvGlobalName( pEntry->n1, pEntry->n2, in createAndInsertOLEObject()
270 pEntry->n3, pEntry->n4, in createAndInsertOLEObject()
271 pEntry->n5, pEntry->n6, in createAndInsertOLEObject()
272 pEntry->n7, pEntry->n8, in createAndInsertOLEObject()
273 pEntry->n9, pEntry->n10, in createAndInsertOLEObject()
274 pEntry->n11 ); in createAndInsertOLEObject()
[all …]
H A Dxmlimpit.cxx105 SvXMLItemMapEntry* pEntry = mrMapEntries->getByName( nPrefix, aLocalName ); in importXML() local
107 if( pEntry ) in importXML()
110 if( 0 == (pEntry->nMemberId & (MID_SW_FLAG_NO_ITEM_IMPORT| in importXML()
115 SfxItemState eState = rSet.GetItemState( pEntry->nWhichId, sal_True, in importXML()
119 if(SFX_ITEM_SET != eState && SFX_WHICH_MAX > pEntry->nWhichId ) in importXML()
120 pItem = &rSet.GetPool()->GetDefaultItem(pEntry->nWhichId); in importXML()
128 if( 0 == (pEntry->nMemberId&MID_SW_FLAG_SPECIAL_ITEM_IMPORT) ) in importXML()
134 … static_cast<sal_uInt16>( pEntry->nMemberId & MID_SW_FLAG_MASK ), in importXML()
140 bPut = handleSpecialItem( *pEntry, *pNewItem, rSet, in importXML()
155 else if( 0 != (pEntry->nMemberId & MID_SW_FLAG_NO_ITEM_IMPORT) ) in importXML()
[all …]
/trunk/main/svx/source/dialog/
H A Ddocrecovery.cxx899 : SvLBoxString( pEntry, nFlags, sText ) in RecovDocListEntry()
915 TURLInfo* pInfo = (TURLInfo*)pEntry->GetUserData(); in Paint()
998 void RecovDocList::InitEntry( SvLBoxEntry* pEntry , in InitEntry() argument
1009 pEntry->ReplaceItem(p, 2); in InitEntry()
1102 pEntry->SetUserData((void*)&rInfo); in RecoveryDialog()
1361 SvLBoxEntry* pEntry = m_aFileListLB.GetEntry(i); in updateItems() local
1362 if ( !pEntry ) in updateItems()
1385 SvLBoxEntry* pEntry = m_aFileListLB.GetEntry(i); in stepNext() local
1386 if (!pEntry) in stepNext()
1393 m_aFileListLB.SetCursor(pEntry, sal_True); in stepNext()
[all …]
/trunk/main/cui/source/tabpages/
H A Dtpbitmap.cxx585 XBitmapEntry* pEntry = 0; in IMPL_LINK() local
590 pEntry = new XBitmapEntry(Graphic(aBitmapEx), aName); in IMPL_LINK()
602 DBG_ASSERT( pEntry, "SvxBitmapTabPage::ClickAddHdl_Impl(), pEntry == 0 ?" ); in IMPL_LINK()
604 if( pEntry ) in IMPL_LINK()
606 maBitmapList->Insert( pEntry ); in IMPL_LINK()
608 aLbBitmaps.Append(rStyleSettings.GetListBoxPreviewDefaultPixelSize(), *pEntry ); in IMPL_LINK()
702 XBitmapEntry* pEntry = new XBitmapEntry( aGraphic, aName ); in IMPL_LINK() local
703 maBitmapList->Insert( pEntry ); in IMPL_LINK()
772 XBitmapEntry* pEntry = new XBitmapEntry(Graphic(aBitmapEx), aName); in IMPL_LINK() local
773 delete maBitmapList->Replace(pEntry, nPos); in IMPL_LINK()
[all …]
/trunk/main/cui/source/dialogs/
H A Dhangulhanjadlg.cxx1098 if( pEntry ) in IMPL_LINK()
1191 SvLBoxEntry* pEntry = m_aDictsLB.First(); in ~HangulHanjaOptionsDialog() local
1193 while( pEntry ) in ~HangulHanjaOptionsDialog()
1195 pDel = ( String* ) pEntry->GetUserData(); in ~HangulHanjaOptionsDialog()
1198 pEntry = m_aDictsLB.Next( pEntry ); in ~HangulHanjaOptionsDialog()
1655 OUString* pEntry = aEntries.getArray(); in DeleteEntryFromDictionary() local
1660 xDict->removeEntry( aOrg, *pEntry ); in DeleteEntryFromDictionary()
1667 ++pEntry; in DeleteEntryFromDictionary()
1714 OUString* pEntry = aEntries.getArray(); in UpdateOriginalLB() local
1717 m_aOriginalLB.InsertEntry( *pEntry ); in UpdateOriginalLB()
[all …]
/trunk/main/sfx2/source/appl/
H A Dnewhelp.cxx318 while ( pEntry ) in ~ContentListBox_Impl()
321 ClearChildren( pEntry ); in ~ContentListBox_Impl()
323 pEntry = GetEntry( nPos++ ); in ~ContentListBox_Impl()
357 while ( pEntry ) in ClearChildren()
360 ClearChildren( pEntry ); in ClearChildren()
362 pEntry = NextSibling( pEntry ); in ClearChildren()
436 if ( pEntry && !( (ContentEntry_Impl*)pEntry->GetUserData() )->bIsFolder ) in GetSelectEntry()
508 if ( pEntry && pEntry->m_bSubEntry ) in UserDraw()
548 while ( nPos < nCount && ( !pEntry || pEntry->m_aURL.Len() == 0 ) ) in SelectExecutableEntry()
869 if ( pEntry ) in GetSelectEntry()
[all …]
/trunk/main/vcl/aqua/source/window/
H A Dsalmenu.cxx830 MenuBarButtonEntry* pEntry = findButtonItem( i_rNewItem.mnId ); in AddMenuBarButton() local
831 if( pEntry ) in AddMenuBarButton()
833 releaseButtonEntry( *pEntry ); in AddMenuBarButton()
834 pEntry->maButton = i_rNewItem; in AddMenuBarButton()
835 pEntry->mpNSImage = CreateNSImage( i_rNewItem.maImage ); in AddMenuBarButton()
857 MenuBarButtonEntry* pEntry = findButtonItem( i_nId ); in RemoveMenuBarButton() local
858 if( pEntry ) in RemoveMenuBarButton()
860 releaseButtonEntry( *pEntry ); in RemoveMenuBarButton()
862 maButtons.erase( maButtons.begin() + (pEntry - &maButtons[0]) ); in RemoveMenuBarButton()
877 MenuBarButtonEntry* pEntry = findButtonItem( i_nItemId ); in GetMenuBarButtonRectPixel() local
[all …]
/trunk/main/vcl/source/control/
H A Dilstbox.cxx605 ImplUpdateEntryMetrics( *pEntry ); in ImplCalcMetrics()
816 if( pEntry ) in SetEntryFlags()
817 ImplUpdateEntryMetrics( *pEntry ); in SetEntryFlags()
850 while( pEntry && rPoint.Y() > pEntry->mnHeight + nY ) in GetEntryPosForPoint()
852 nY += pEntry->mnHeight; in GetEntryPosForPoint()
855 if( pEntry == NULL ) in GetEntryPosForPoint()
1785 if( ! pEntry ) in ImplPaint()
1835 if( ! pEntry ) in DrawEntry()
1975 if( nY + pEntry->mnHeight >= rRect.Top() && in ImplDoPaint()
1980 nY += pEntry->mnHeight; in ImplDoPaint()
[all …]
/trunk/main/svx/source/sidebar/line/
H A DLinePropertyPanel.cxx110 XLineEndEntry* pEntry = aList->GetLineEnd(i); in FillLineEndListBox() local
124 pEntry->GetName(), in FillLineEndListBox()
129 pEntry->GetName(), in FillLineEndListBox()
134 rListBoxStart.InsertEntry(pEntry->GetName()); in FillLineEndListBox()
135 rListBoxEnd.InsertEntry(pEntry->GetName()); in FillLineEndListBox()
158 XDashEntry* pEntry = aList->GetDash(i); in FillLineStyleListBox() local
164 pEntry->GetName(), in FillLineStyleListBox()
170 rListBox.InsertEntry(pEntry->GetName()); in FillLineStyleListBox()
1180 XDashEntry* pEntry = maLineStyleList->GetDash(a); in SelectLineStyle() local
1181 const XDash& rEntry = pEntry->GetDash(); in SelectLineStyle()
[all …]
/trunk/main/vcl/unx/generic/app/
H A Dsaldata.cxx676 YieldEntry* pEntry = &(yieldTable[nFD]); in Yield() local
677 if ( pEntry->fd ) in Yield()
679 DBG_ASSERT( nFD == pEntry->fd, "wrong fd in Yield()" ); in Yield()
680 for( int i = 0; i < nMaxEvents && pEntry->HasPendingEvent(); i++ ) in Yield()
682 pEntry->HandleNextEvent(); in Yield()
760 YieldEntry* pEntry = &(yieldTable[nFD]); in Yield() local
761 if ( pEntry->fd ) in Yield()
771 for( int i = 0; pEntry->IsEventQueued() && i < nMaxEvents; i++ ) in Yield()
773 pEntry->HandleNextEvent(); in Yield()
/trunk/main/sw/source/ui/dbui/
H A Daddresslistdialog.cxx247 SvLBoxEntry* pEntry = m_aListLB.InsertEntry(pNames[nName]); in SwAddressListDialog() local
249 pEntry->SetUserData(pUserData); in SwAddressListDialog()
252 m_aListLB.Select(pEntry); in SwAddressListDialog()
253 m_aListLB.SetEntryText(rCurrentData.sCommand, pEntry, ITEMID_TABLE - 1); in SwAddressListDialog()
288 SvLBoxEntry* pEntry = m_aListLB.First(); in ~SwAddressListDialog() local
289 while(pEntry) in ~SwAddressListDialog()
291 AddressUserData_Impl* pUserData = static_cast<AddressUserData_Impl*>(pEntry->GetUserData()); in ~SwAddressListDialog()
293 pEntry = m_aListLB.Next( pEntry ); in ~SwAddressListDialog()
475 SvLBoxEntry* pEntry = m_aListLB.FirstSelected(); in IMPL_LINK() local
476 …AddressUserData_Impl* pUserData = pEntry ? static_cast<AddressUserData_Impl*>(pEntry->GetUserData(… in IMPL_LINK()
/trunk/main/vcl/unx/generic/gdi/
H A Dpspgraphics.cxx563 return pEntry; in CreateFontInstance()
827 if( !pEntry ) in SetFont()
830 sal_IntPtr nID = pEntry->mpFontData ? pEntry->mpFontData->GetFontId() : 0; in SetFont()
835 if( pEntry->meItalic == ITALIC_OBLIQUE || pEntry->meItalic == ITALIC_NORMAL ) in SetFont()
841 int nWeight = (int)pEntry->meWeight; in SetFont()
849 m_bFontVertical = pEntry->mbVertical; in SetFont()
850 if( pEntry->mpFontData ) in SetFont()
865 pEntry->mnHeight, in SetFont()
866 pEntry->mnWidth, in SetFont()
867 pEntry->mnOrientation, in SetFont()
[all …]
/trunk/main/vcl/unx/headless/
H A Dsvppspgraphics.cxx504 return pEntry; in CreateFontInstance()
742 if( !pEntry ) in SetFont()
745 sal_IntPtr nID = pEntry->mpFontData ? pEntry->mpFontData->GetFontId() : 0; in SetFont()
750 if( pEntry->meItalic == ITALIC_OBLIQUE || pEntry->meItalic == ITALIC_NORMAL ) in SetFont()
756 int nWeight = (int)pEntry->meWeight; in SetFont()
764 m_bFontVertical = pEntry->mbVertical; in SetFont()
765 if( pEntry->mpFontData ) in SetFont()
780 pEntry->mnHeight, in SetFont()
781 pEntry->mnWidth, in SetFont()
782 pEntry->mnOrientation, in SetFont()
[all …]
/trunk/main/registry/source/
H A Dreflwrit.cxx1200 TypeWriter* pEntry = (TypeWriter*) hEntry; in acquire() local
1202 if (pEntry != NULL) in acquire()
1203 pEntry->m_refCount++; in acquire()
1208 TypeWriter* pEntry = (TypeWriter*) hEntry; in release() local
1210 if (pEntry != NULL) in release()
1212 if (--pEntry->m_refCount == 0) in release()
1213 delete pEntry; in release()
1219 TypeWriter* pEntry = (TypeWriter*) hEntry; in setUik() local
1221 if (pEntry != NULL) in setUik()
1223 if (pEntry->m_pUik) in setUik()
[all …]
/trunk/main/sw/source/core/unocore/
H A Dunofield.cxx304 nId = pEntry ? pEntry->nWID : USHRT_MAX; in GetFieldTypeMId()
425 const sal_Char* pEntry; in supportsService() local
433 default: pEntry = 0; in supportsService()
435 if( pEntry ) in supportsService()
439 aTmp.Append( pEntry ); in supportsService()
1981 if (!pEntry) in setPropertyValue()
2041 switch (pEntry->nWID) in setPropertyValue()
2141 if(!pEntry ) in getPropertyValue()
2146 if (!pEntry) in getPropertyValue()
2149 switch( pEntry->nWID ) in getPropertyValue()
[all …]
/trunk/main/sc/source/ui/inc/
H A Dcontent.hxx104 …void GetEntryIndexes( sal_uInt16& rnRootIndex, sal_uLong& rnChildIndex, SvLBoxEntry* pEntry ) c…
109 sal_uLong GetChildIndex( SvLBoxEntry* pEntry ) const;
140 String getAltLongDescText( SvLBoxEntry* pEntry , sal_Bool isAltText) const;
141 String GetEntryAltText( SvLBoxEntry* pEntry ) const;
142 String GetEntryLongDescription( SvLBoxEntry* pEntry ) const;
144 void ObjectFresh( sal_uInt16 nType,SvLBoxEntry* pEntry = NULL);
/trunk/main/svx/source/unodraw/
H A Dunoctabl.cxx134 XColorEntry* pEntry = new XColorEntry( Color( (ColorData)nColor ), aName ); in insertByName() local
135 maTable->Insert( pEntry, maTable->Count() ); in insertByName()
160 XColorEntry* pEntry = new XColorEntry( Color( (ColorData)nColor ), aName ); in replaceByName() local
161 delete maTable->Replace( pEntry, nIndex ); in replaceByName()
172 XColorEntry* pEntry = maTable->GetColor( nIndex ); in getByName() local
173 return uno::Any( (sal_Int32) pEntry->GetColor().GetRGBColor() ); in getByName()
186 XColorEntry* pEntry = maTable->GetColor( (long)nIndex ); in getElementNames() local
187 pStrings[nIndex] = pEntry->GetName(); in getElementNames()

Completed in 236 milliseconds

12345678910>>...20