Home
last modified time | relevance | path

Searched refs:pCodes (Results 1 – 3 of 3) sorted by last modified time

/trunk/main/vcl/win/source/gdi/
H A Dwinlayout.cxx413 const WCHAR* pCodes = reinterpret_cast<LPCWSTR>(&pBidiStr[i]); local
414 unsigned nCharCode = pCodes[0];
422 bSurrogate &= (0xDC00 <= pCodes[1]) && (pCodes[1] <= 0xDFFF);
425 nCharCode = 0x10000 + ((pCodes[0] - 0xD800) << 10) + (pCodes[1] - 0xDC00);
436 if( ::GetTextExtentPoint32W( mhDC, &pCodes[0], bSurrogate ? 2 : 1, &aExtent) )
/trunk/main/vcl/source/glyphs/
H A Dgcach_ftyp.cxx1824 sal_uInt32* pCodes = new sal_uInt32[ nCount ]; in GetFontCodeRanges() local
1826 pCodes[i] = aCodes[i]; in GetFontCodeRanges()
1827 rResult.mpRangeCodes = pCodes; in GetFontCodeRanges()
/trunk/main/vcl/os2/source/gdi/
H A Dos2layout.cxx356 const sal_Unicode* pCodes = &pBidiStr[i]; local
358 if( (pCodes[0] & 0xFC00) == 0xDC00 )
360 bool bSurrogate = ((pCodes[0] & 0xFC00) == 0xD800);
363 int nCharCode = pCodes[0];
365 nCharCode = 0x10000 + ((pCodes[0] & 0x03FF) << 10) + (pCodes[1] & 0x03FF);
369 if (!Ft2QueryStringWidthW( mhPS, (LPWSTR)&pCodes[0], 1, (LONG*)&nGlyphWidth))

Completed in 44 milliseconds