Lines Matching refs:pData

1138     ImplFontData* pData;  in AddFontFace()  local
1140 for(; (pData=*ppHere) != NULL; ppHere=&pData->mpNext ) in AddFontFace()
1142 StringCompare eComp = pNewData->CompareWithSize( *pData ); in AddFontFace()
1149 if( pNewData->mnQuality < pData->mnQuality ) in AddFontFace()
1153 if( (pNewData->mnQuality == pData->mnQuality) in AddFontFace()
1154 && (pData->mbDevice || !pNewData->mbDevice) ) in AddFontFace()
1158 pNewData->mpNext = pData->mpNext; in AddFontFace()
1160 delete pData; in AddFontFace()
1165 pNewData->mpNext = pData; in AddFontFace()
1582 ImplDevFontListData* pData = (*it).second; in ImplFindByAliasName() local
1583 if( !pData->maMapNames.Len() ) in ImplFindByAliasName()
1591 aTempName = GetNextFontToken( pData->maMapNames, nIndex ); in ImplFindByAliasName()
1594 return pData; in ImplFindByAliasName()
1729 ImplDevFontListData* pData = (*it).second; in ImplFindByAttributes() local
1732 sal_uLong nMatchType = pData->mnMatchType; in ImplFindByAttributes()
1733 FontWeight eMatchWeight= pData->meMatchWeight; in ImplFindByAttributes()
1734 FontWidth eMatchWidth = pData->meMatchWidth; in ImplFindByAttributes()
1800 else if ( pData->mnTypeFaces & IMPL_DEVFONT_SYMBOL ) in ImplFindByAttributes()
1810 …else if ( (pData->mnTypeFaces & (IMPL_DEVFONT_SYMBOL | IMPL_DEVFONT_NONESYMBOL)) == IMPL_DEVFONT_S… in ImplFindByAttributes()
1816 if( rSearchFamilyName.Len() && (rSearchFamilyName == pData->maMatchFamilyName) ) in ImplFindByAttributes()
1909 if( (rSearchFamilyName.Len() >= 4) && (pData->maMatchFamilyName.Len() >= 4) in ImplFindByAttributes()
1910 && ((rSearchFamilyName.Search( pData->maMatchFamilyName ) != STRING_NOTFOUND) in ImplFindByAttributes()
1911 || (pData->maMatchFamilyName.Search( rSearchFamilyName ) != STRING_NOTFOUND)) ) in ImplFindByAttributes()
1935 if( pData->mnTypeFaces & IMPL_DEVFONT_ITALIC ) in ImplFindByAttributes()
1942 || !(pData->mnTypeFaces & IMPL_DEVFONT_NONEITALIC)) ) in ImplFindByAttributes()
1971 if( pData->mnTypeFaces & IMPL_DEVFONT_LIGHT ) in ImplFindByAttributes()
1978 if( pData->mnTypeFaces & IMPL_DEVFONT_BOLD ) in ImplFindByAttributes()
1985 || !(pData->mnTypeFaces & IMPL_DEVFONT_NORMAL) ) in ImplFindByAttributes()
1989 if( pData->mnTypeFaces & IMPL_DEVFONT_SCALABLE ) in ImplFindByAttributes()
2042 pFoundData = pData; in ImplFindByAttributes()
2051 pFoundData = pData; in ImplFindByAttributes()
2057 pFoundData = pData; in ImplFindByAttributes()
2101 ImplDevFontListData* pData = (*it).second; in FindDefaultFont() local
2102 if( pData->mnMatchType & IMPL_FONT_ATTR_SYMBOL ) in FindDefaultFont()
2104 pFoundData = pData; in FindDefaultFont()
2105 if( pData->mnMatchType & (IMPL_FONT_ATTR_DEFAULT|IMPL_FONT_ATTR_STANDARD) ) in FindDefaultFont()
6884 osl_abbreviateSystemPath( aPath.pData, &aAbbreviatedPath.pData, nIndex, NULL ); in ImplGetEllipsisString()