Home
last modified time | relevance | path

Searched refs:FXSYS_HexCharToInt (Results 1 – 10 of 10) sorted by relevance

/external/pdfium/core/fxcrt/
Dfx_extension_unittest.cpp21 TEST(fxcrt, FXSYS_HexCharToInt) { in TEST() argument
22 EXPECT_EQ(10, FXSYS_HexCharToInt('a')); in TEST()
23 EXPECT_EQ(10, FXSYS_HexCharToInt('A')); in TEST()
24 EXPECT_EQ(7, FXSYS_HexCharToInt('7')); in TEST()
25 EXPECT_EQ(0, FXSYS_HexCharToInt('i')); in TEST()
Dfx_extension.h60 inline int FXSYS_HexCharToInt(const char c) { in FXSYS_HexCharToInt() function
/external/pdfium/core/fpdfapi/font/
Dcpdf_cmapparser.cpp144 num = num * 16 + FXSYS_HexCharToInt(word[i]); in GetCode()
179 FXSYS_HexCharToInt(digit1) * 16 + FXSYS_HexCharToInt(digit2); in GetCodeRange()
187 FXSYS_HexCharToInt(digit1) * 16 + FXSYS_HexCharToInt(digit2); in GetCodeRange()
Dcpdf_tounicodemap.cpp63 result = result * 16 + FXSYS_HexCharToInt(str.CharAt(i)); in StringToCode()
102 ch = ch * 16 + FXSYS_HexCharToInt(str[i]); in StringToWideString()
/external/pdfium/core/fpdfapi/parser/
Dfpdf_parser_utility.cpp102 *pDest++ = FXSYS_HexCharToInt(bstr[i + 1]) * 16 + in PDF_NameDecode()
103 FXSYS_HexCharToInt(bstr[i + 2]); in PDF_NameDecode()
Dfpdf_parser_decode.cpp187 int digit = FXSYS_HexCharToInt(ch); in HexDecode()
Dcpdf_syntax_parser.cpp280 int val = FXSYS_HexCharToInt(ch); in ReadHexString()
/external/pdfium/core/fxcrt/css/
Dcfx_cssdeclaration.cpp24 return (FXSYS_HexCharToInt(hexHigh) << 4) + FXSYS_HexCharToInt(hexLow); in Hex2Dec()
/external/pdfium/core/fpdfapi/page/
Dcpdf_streamparser.cpp581 int val = FXSYS_HexCharToInt(ch); in ReadHexString()
/external/pdfium/xfa/fgas/crt/
Dcfgas_formatstring.cpp96 return iKeyValue * 16 + FXSYS_HexCharToInt(ch); in ConvertHex()