OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:iGlyphIndex
(Results
1 - 2
of
2
) sorted by null
/external/pdfium/xfa/src/fgas/src/font/
fx_gefont.cpp
494
int32_t
iGlyphIndex
= m_pFontEncoding->GlyphFromCharCode(wUnicode);
495
if (
iGlyphIndex
> 0) {
499
return
iGlyphIndex
;
512
iGlyphIndex
=
514
if (
iGlyphIndex
!= 0xFFFF) {
517
iGlyphIndex
|= ((i + 1) << 24);
521
return
iGlyphIndex
;
546
iGlyphIndex
=
548
if (
iGlyphIndex
!= 0xFFFF) {
549
iGlyphIndex
|= ((i + 1) << 24);
[
all
...]
fx_gdifont.cpp
402
int32_t
iGlyphIndex
= GetGlyphIndex(wUnicode, bCharCode);
403
if (
iGlyphIndex
== 0xFFFF) {
406
IFX_Font* pFont = GetSubstFont(
iGlyphIndex
);
411
iGlyphIndex
&= 0x00FFFFFF;
413
if (::GetGlyphOutlineW(((CFX_GdiFont*)pFont)->m_hDC,
iGlyphIndex
,
440
IFX_Font* CFX_GdiFont::GetSubstFont(int32_t
iGlyphIndex
) const {
441
int32_t iHigher = (
iGlyphIndex
& 0x7F000000) >> 24;
450
FX_DWORD CFX_GdiFont::GetGlyphDIBits(int32_t
iGlyphIndex
,
457
IFX_Font* pFont = GetSubstFont(
iGlyphIndex
);
463
->GetGlyphDIBits(
iGlyphIndex
& 0x00FFFFFF, argb, pMatrix, gm, pBuffer,
[
all
...]
Completed in 43 milliseconds