Home
last modified time | relevance | path

Searched refs:aMap (Results 26 – 50 of 95) sorted by relevance

1234

/trunk/main/reportdesign/source/ui/report/
H A DSectionView.cxx88 MapMode aMap( rWin.GetMapMode() ); in MakeVisible() local
89 const Point aOrg( aMap.GetOrigin() ); in MakeVisible()
124 aMap.SetOrigin( Point( aOrg.X() - nScrollX, aOrg.Y() - nScrollY ) ); in MakeVisible()
125 rWin.SetMapMode( aMap ); in MakeVisible()
/trunk/main/svtools/source/filter/
H A Dfilter2.cxx400 MapMode aMap; in ImpDetectJPG() local
401 aMap.SetMapUnit( nUnits == 1 ? MAP_INCH : MAP_CM ); in ImpDetectJPG()
402 aMap.SetScaleX( Fraction( 1, nHorizontalResolution ) ); in ImpDetectJPG()
403 aMap.SetScaleY( Fraction( 1, nVerticalResolution ) ); in ImpDetectJPG()
404 aLogSize = OutputDevice::LogicToLogic( aPixSize, aMap, MapMode( MAP_100TH_MM ) ); in ImpDetectJPG()
570 MapMode aMap( MAP_INCH, Point(), in ImpDetectPCX() local
572 aLogSize = OutputDevice::LogicToLogic( aPixSize, aMap, in ImpDetectPCX()
/trunk/main/sd/source/ui/dlg/
H A Ddocprev.cxx232 const MapMode aMap( pDoc->GetScaleUnit(), Point(), aFrac, aFrac ); in updateViewSettings() local
234 aVDev.SetMapMode( aMap ); in updateViewSettings()
254 MapMode aVMap( aMap ); in updateViewSettings()
271 pMtf->SetPrefMapMode( aMap ); in updateViewSettings()
/trunk/main/chart2/source/tools/
H A DCachedDataSequence.cxx388 ::comphelper::SequenceAsHashMap aMap(_aArguments); in initialize()
389 …m_aNumericalSequence = aMap.getUnpackedValueOrDefault(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(… in initialize()
394 …m_aTextualSequence = aMap.getUnpackedValueOrDefault(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("D… in initialize()
399 …m_aMixedSequence = aMap.getUnpackedValueOrDefault(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Dat… in initialize()
/trunk/main/xmloff/source/xforms/
H A Dxformsapi.cxx249 SvXMLTokenMap aMap( aTypes ); in lcl_getTypeClass() local
250 sal_uInt16 mnToken = aMap.Get( nPrefix, sLocalName ); in lcl_getTypeClass()
319 SvXMLTokenMap aMap( aTypes ); in lcl_getTypeName() local
320 sal_uInt16 mnToken = aMap.Get( nPrefix, sLocalName ); in lcl_getTypeName()
/trunk/main/basctl/source/dlged/
H A Ddlged.cxx351 MapMode aMap = pWindow->GetMapMode(); in DoScroll() local
352 Point aOrg = aMap.GetOrigin(); in DoScroll()
375 aMap.SetOrigin( Point( -aScrollPos.Width(), -aScrollPos.Height() ) ); in DoScroll()
376 pWindow->SetMapMode( aMap ); in DoScroll()
389 MapMode aMap = pWindow->GetMapMode(); in UpdateScrollBars() local
390 Point aOrg = aMap.GetOrigin(); in UpdateScrollBars()
1301 MapMode aMap( MAP_100TH_MM ); in Print() local
1302 pPrinter->SetMapMode( aMap ); in Print()
/trunk/main/sw/source/filter/html/
H A Dhtmlgrin.cxx322 String sGrfNm, sAltNm, aId, aClass, aStyle, aMap, sHTMLGrfName; in InsertImage() local
398 aMap = pOption->GetString(); in InsertImage()
651 aMap.EraseTrailingChars(); in InsertImage()
652 if( aMap.Len() ) in InsertImage()
656 xub_StrLen nPos = aMap.Search( '#' ); in InsertImage()
659 aName = aMap ; in InsertImage()
661 aName = aMap.Copy(nPos+1); in InsertImage()
/trunk/main/vcl/os2/source/gdi/
H A Dsalbmp.cxx400 PM_BYTE aMap[ 4 ] = { 0x00, 0x01, 0x10, 0x11 }; in ImplCreateDIB4FromDIB1() local
422 *pTmp4++ = aMap[ ( *pTmp >> 6 ) & 3 ]; in ImplCreateDIB4FromDIB1()
423 *pTmp4++ = aMap[ ( *pTmp >> 4 ) & 3 ]; in ImplCreateDIB4FromDIB1()
424 *pTmp4++ = aMap[ ( *pTmp >> 2 ) & 3 ]; in ImplCreateDIB4FromDIB1()
425 *pTmp4++ = aMap[ *pTmp++ & 3 ]; in ImplCreateDIB4FromDIB1()
/trunk/main/filter/source/xmlfilteradaptor/
H A DXmlFilterAdaptor.cxx378 comphelper::SequenceAsHashMap aMap(aAnySeq); in initialize() local
379 msFilterName = aMap.getUnpackedValueOrDefault( in initialize()
381 msUserData = aMap.getUnpackedValueOrDefault( in initialize()
383 msTemplateName = aMap.getUnpackedValueOrDefault( in initialize()
/trunk/main/sc/source/core/data/
H A Ddpsave.cxx1239 NameIndexMap aMap; in BuildAllDimensionMembers() local
1242 aMap.insert( NameIndexMap::value_type(pData->getDimensionName(i), i)); in BuildAllDimensionMembers()
1244 NameIndexMap::const_iterator itrEnd = aMap.end(); in BuildAllDimensionMembers()
1255 NameIndexMap::const_iterator itr = aMap.find(rDimName); in BuildAllDimensionMembers()
1296 NameIndexMap aMap; in BuildAllDimensionMembersFromSource() local
1299 aMap.insert( NameIndexMap::value_type(aDimNames[i], i) ); in BuildAllDimensionMembersFromSource()
1301 NameIndexMap::const_iterator itrEnd = aMap.end(); in BuildAllDimensionMembersFromSource()
1312 NameIndexMap::const_iterator itr = aMap.find(rDimName); in BuildAllDimensionMembersFromSource()
/trunk/main/sc/source/core/tool/
H A Dcellkeytranslator.cxx79 static void lclMatchKeyword(String& rName, const ScCellKeywordHashMap& aMap, in lclMatchKeyword() argument
82 ScCellKeywordHashMap::const_iterator itrEnd = aMap.end(); in lclMatchKeyword()
83 ScCellKeywordHashMap::const_iterator itr = aMap.find(rName); in lclMatchKeyword()
/trunk/main/comphelper/source/misc/
H A Daccessiblewrapper.cxx126 AccessibleMap aMap; in invalidateAll() local
127 m_aChildrenMap.swap( aMap ); in invalidateAll()
185 AccessibleMap aMap; in dispose() local
186 m_aChildrenMap.swap( aMap ); in dispose()
/trunk/main/vcl/source/gdi/
H A Doutdev6.cxx692 MapMode aMap(GetMapMode()); in DrawTransparent() local
694 aMap.SetOrigin(Point(-aOutPos.X(), -aOutPos.Y())); in DrawTransparent()
695 pVDev->SetMapMode(aMap); in DrawTransparent()
737 MapMode aMap( GetMapMode() ); in DrawTransparent() local
741 aMap.SetOrigin( Point( -aOutPos.X(), -aOutPos.Y() ) ); in DrawTransparent()
742 pVDev->SetMapMode( aMap ); in DrawTransparent()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/generator/html/
H A Dcode.js447 function AddValue (aMap, sKey, aTableData) argument
449 if (sKey in aMap)
452 aTableData.push(aMap[sKey]);
/trunk/main/l10ntools/source/
H A Dexport2.cxx104 ByteString Export::DumpMap( ByteString& sMapName , ByteStringHashMap& aMap ){ in DumpMap() argument
110 if( aMap.size() < 1 ) return ByteString(); in DumpMap()
111 for( idbg = aMap.begin() ; idbg != aMap.end(); ++idbg ){ in DumpMap()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/automaton/
H A DHopcroftMinimizer.java137 final Map<State,StateSet> aMap, in InitializeMap() argument
147 aMap.put(aState, aAcceptingStates); in InitializeMap()
152 aMap.put(aState, aNonAcceptingStates); in InitializeMap()
/trunk/main/editeng/source/rtf/
H A Drtfgrf.cxx557 const MapMode aMap( MAP_100TH_MM ); in ReadBmpData() local
561 aSize, aMap ); in ReadBmpData()
564 rGrf.GetPrefMapMode(), aMap ); in ReadBmpData()
/trunk/main/svl/source/misc/
H A Dinettype.cxx911 static sal_Char const * aMap[CONTENT_TYPE_LAST + 1]; in GetContentType() local
916 aMap[aStaticTypeNameMap[i].m_eTypeID] in GetContentType()
918 aMap[CONTENT_TYPE_UNKNOWN] = CONTENT_TYPE_STR_APP_OCTSTREAM; in GetContentType()
919 aMap[CONTENT_TYPE_TEXT_PLAIN] = CONTENT_TYPE_STR_TEXT_PLAIN in GetContentType()
925 UniString::CreateFromAscii(aMap[eTypeID]) : in GetContentType()
H A Durihelper.cxx494 static sal_uInt8 const aMap[128] in checkWChar() local
511 switch (aMap[c]) in checkWChar()
921 static INetURLObject::FSysStyle const aMap[][2] in queryFSysStyle() local
938 return aMap[nNotation < ucb::FileSystemNotation::UNKNOWN_NOTATION in queryFSysStyle()
/trunk/main/sw/source/core/fields/
H A Dreffld.cxx899 SvUShorts aMap; member
903 : aName( rName ), aIds( 16, 16 ), aIdsMap( 16, 16 ), aMap( 16, 16 ), in _RefIdsMap()
965 rFld.SetSeqNo( aMap[ nPos ] ); in SV_IMPL_PTRARR()
977 aMap.Insert( n, nPos ); in SV_IMPL_PTRARR()
1010 aMap.Insert( nSeqNo, nPos ); in SV_IMPL_PTRARR()
/trunk/main/slideshow/source/engine/
H A Dattributemap.cxx99 static AnimateAttributeMap aMap( lcl_attributeMap, in mapAttributeName() local
106 if( !aMap.lookup( rAttrName, in mapAttributeName()
/trunk/main/filter/source/graphicfilter/egif/
H A Degif.cxx99 const MapMode aMap( rGraphic.GetPrefMapMode() ); in WriteGIF() local
100 sal_Bool bLogSize = ( aMap.GetMapUnit() != MAP_PIXEL ); in WriteGIF()
103 …aSize100 = Application::GetDefaultDevice()->LogicToLogic( rGraphic.GetPrefSize(), aMap, MAP_100TH_… in WriteGIF()
/trunk/main/sw/source/core/text/
H A Dnoteurl.cxx66 MapMode aMap( MAP_100TH_MM ); in FillImageMap() local
73 rMap, aMap ) ); in FillImageMap()
/trunk/main/svx/source/table/
H A Dtabledesign.cxx201 static CellStyleNameMap aMap; in getCellStyleNameMap() local
202 if( aMap.empty() ) in getCellStyleNameMap()
215 aMap.swap( aNewMap ); in getCellStyleNameMap()
218 return aMap; in getCellStyleNameMap()
/trunk/main/sc/source/filter/xml/
H A Dxmlstyli.cxx493 ScXMLMapContent aMap; in CreateChildContext() local
494 aMap.sCondition = ((ScXMLMapContext*)pContext)->GetCondition(); in CreateChildContext()
495 aMap.sApplyStyle = ((ScXMLMapContext*)pContext)->GetApplyStyle(); in CreateChildContext()
496 aMap.sBaseCell = ((ScXMLMapContext*)pContext)->GetBaseCell(); in CreateChildContext()
497 aMaps.push_back(aMap); in CreateChildContext()

Completed in 149 milliseconds

1234