Home
last modified time | relevance | path

Searched refs:pChar (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/fpdfapi/font/
Dcpdf_type3font.cpp139 const CPDF_Type3Char* pChar = LoadChar(charcode); in GetCharWidthF() local
140 return pChar ? pChar->width() : 0; in GetCharWidthF()
145 const CPDF_Type3Char* pChar = LoadChar(charcode); in GetCharBBox() local
146 if (pChar) in GetCharBBox()
147 ret = pChar->bbox(); in GetCharBBox()
/external/pdfium/core/fpdfapi/render/
Dcpdf_type3cache.cpp121 const CPDF_Type3Char* pChar = m_pFont->LoadChar(charcode); in RenderGlyph() local
122 if (!pChar || !pChar->GetBitmap()) in RenderGlyph()
126 CFX_Matrix image_matrix = pChar->matrix(); in RenderGlyph()
129 RetainPtr<CFX_DIBitmap> pBitmap = pChar->GetBitmap(); in RenderGlyph()
Dcpdf_renderstatus.cpp974 bool Type3CharMissingFillColor(const CPDF_Type3Char* pChar, in Type3CharMissingFillColor() argument
976 return pChar && (!pChar->colored() || in Type3CharMissingFillColor()
977 (pChar->colored() && MissingFillColor(pColorState))); in Type3CharMissingFillColor()
980 bool Type3CharMissingStrokeColor(const CPDF_Type3Char* pChar, in Type3CharMissingStrokeColor() argument
982 return pChar && (!pChar->colored() || in Type3CharMissingStrokeColor()
983 (pChar->colored() && MissingStrokeColor(pColorState))); in Type3CharMissingStrokeColor()
/external/pdfium/fxjs/
Dcfxjse_formcalc_context.cpp3064 const char* pChar = unitTempString.c_str(); in UnitValue() local
3066 while (IsWhitespace(pChar[uVal])) in UnitValue()
3070 if (!std::isdigit(pChar[uVal]) && pChar[uVal] != '.') in UnitValue()
3074 while (IsWhitespace(pChar[uVal])) in UnitValue()
3079 if (pChar[uVal] == ' ') in UnitValue()
3082 strUnit += pChar[uVal]; in UnitValue()