/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_linearized_header.cpp | 53 m_szFileSize = pDict->GetIntegerFor("L"); in CPDF_LinearizedHeader() 54 m_dwFirstPageNo = pDict->GetIntegerFor("P"); in CPDF_LinearizedHeader() 55 m_szLastXRefOffset = pDict->GetIntegerFor("T"); in CPDF_LinearizedHeader() 56 m_PageCount = pDict->GetIntegerFor("N"); in CPDF_LinearizedHeader() 57 m_szFirstPageEndOffset = pDict->GetIntegerFor("E"); in CPDF_LinearizedHeader() 58 m_FirstPageObjNum = pDict->GetIntegerFor("O"); in CPDF_LinearizedHeader()
|
D | fpdf_parser_decode.cpp | 261 K = pParams->GetIntegerFor("K"); in FPDFAPI_CreateFaxDecoder() 262 EndOfLine = !!pParams->GetIntegerFor("EndOfLine"); in FPDFAPI_CreateFaxDecoder() 263 ByteAlign = !!pParams->GetIntegerFor("EncodedByteAlign"); in FPDFAPI_CreateFaxDecoder() 264 BlackIs1 = !!pParams->GetIntegerFor("BlackIs1"); in FPDFAPI_CreateFaxDecoder() 265 Columns = pParams->GetIntegerFor("Columns", 1728); in FPDFAPI_CreateFaxDecoder() 266 Rows = pParams->GetIntegerFor("Rows"); in FPDFAPI_CreateFaxDecoder() 287 predictor = pParams->GetIntegerFor("Predictor"); in FPDFAPI_CreateFlateDecoder() 288 Colors = pParams->GetIntegerFor("Colors", 1); in FPDFAPI_CreateFlateDecoder() 289 BitsPerComponent = pParams->GetIntegerFor("BitsPerComponent", 8); in FPDFAPI_CreateFlateDecoder() 290 Columns = pParams->GetIntegerFor("Columns", 1); in FPDFAPI_CreateFlateDecoder() [all …]
|
D | cpdf_security_handler.cpp | 37 int revision = pEncrypt->GetIntegerFor("R"); in CalcEncryptKey() 47 uint32_t perm = pEncrypt->GetIntegerFor("P"); in CalcEncryptKey() 54 !pEncrypt->GetIntegerFor("EncryptMetadata", 1)) { in CalcEncryptKey() 123 int Version = pEncryptDict->GetIntegerFor("V"); in LoadCryptInfo() 140 nKeyBits = pDefFilter->GetIntegerFor("Length", 0); in LoadCryptInfo() 142 nKeyBits = pEncryptDict->GetIntegerFor("Length", 128); in LoadCryptInfo() 145 nKeyBits = pEncryptDict->GetIntegerFor("Length", 256); in LoadCryptInfo() 157 keylen = Version > 1 ? pEncryptDict->GetIntegerFor("Length", 40) / 8 : 5; in LoadCryptInfo() 167 m_Version = pEncryptDict->GetIntegerFor("V"); in LoadDict() 168 m_Revision = pEncryptDict->GetIntegerFor("R"); in LoadDict() [all …]
|
D | cpdf_document_unittest.cpp | 145 EXPECT_EQ(i, page->GetIntegerFor("PageNumbering")); in TEST_F() 170 EXPECT_EQ(i, page->GetIntegerFor("PageNumbering")); in TEST_F() 183 EXPECT_EQ(1, page->GetIntegerFor("PageNumbering")); in TEST_F() 188 EXPECT_EQ(3, page->GetIntegerFor("PageNumbering")); in TEST_F() 196 EXPECT_EQ(6, page->GetIntegerFor("PageNumbering")); in TEST_F()
|
D | cpdf_dictionary.h | 48 int GetIntegerFor(const CFX_ByteString& key) const; 49 int GetIntegerFor(const CFX_ByteString& key, int default_int) const;
|
D | cpdf_document.cpp | 249 int count = pPages->GetIntegerFor("Count"); in CountPages() 541 size_t count = pNode->GetIntegerFor("Count"); in FindPageIndex() 702 "Count", pPages->GetIntegerFor("Count") + (bInsert ? 1 : -1)); in InsertDeletePDFPage() 706 int nPages = pKid->GetIntegerFor("Count"); in InsertDeletePDFPage() 719 "Count", pPages->GetIntegerFor("Count") + (bInsert ? 1 : -1)); in InsertDeletePDFPage() 757 int nPages = pPages->GetIntegerFor("Count"); in DeletePage()
|
D | cpdf_dictionary.cpp | 108 int CPDF_Dictionary::GetIntegerFor(const CFX_ByteString& key) const { in GetIntegerFor() function in CPDF_Dictionary 113 int CPDF_Dictionary::GetIntegerFor(const CFX_ByteString& key, int def) const { in GetIntegerFor() function in CPDF_Dictionary
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_tilingpattern.cpp | 21 m_bColored = pDict->GetIntegerFor("PaintType") == 1; in CPDF_TilingPattern() 43 m_bColored = pDict->GetIntegerFor("PaintType") == 1; in Load()
|
D | cpdf_pageobjectholder.cpp | 74 if (pGroup->GetIntegerFor("I")) { in LoadTransInfo() 77 if (pGroup->GetIntegerFor("K")) { in LoadTransInfo()
|
D | cpdf_meshstream.cpp | 119 m_nCoordBits = pDict->GetIntegerFor("BitsPerCoordinate"); in Load() 120 m_nComponentBits = pDict->GetIntegerFor("BitsPerComponent"); in Load() 128 m_nFlagBits = pDict->GetIntegerFor("BitsPerFlag"); in Load()
|
D | cpdf_image.cpp | 59 !m_pDict->KeyExist("ColorSpace") || m_pDict->GetIntegerFor("ImageMask"); in FinishInitialization() 60 m_bInterpolate = !!m_pDict->GetIntegerFor("Interpolate"); in FinishInitialization() 61 m_Height = m_pDict->GetIntegerFor("Height"); in FinishInitialization() 62 m_Width = m_pDict->GetIntegerFor("Width"); in FinishInitialization()
|
D | cpdf_docpagedata.cpp | 359 int type = pDict->GetIntegerFor("PatternType"); in GetPattern() 488 int32_t org_size = pFontDict->GetIntegerFor("Length1") + in GetFontFileStreamAcc() 489 pFontDict->GetIntegerFor("Length2") + in GetFontFileStreamAcc() 490 pFontDict->GetIntegerFor("Length3"); in GetFontFileStreamAcc()
|
D | cpdf_streamparser.cpp | 90 !pParam || pParam->GetIntegerFor("ColorTransform", 1)); in PDF_DecodeInlineStream() 143 uint32_t width = pDict->GetIntegerFor("Width"); in ReadInlineStream() 144 uint32_t height = pDict->GetIntegerFor("Height"); in ReadInlineStream() 147 uint32_t bpc = pDict->GetIntegerFor("BitsPerComponent"); in ReadInlineStream()
|
D | cpdf_shadingpattern.cpp | 94 m_ShadingType = ToShadingType(pShadingDict->GetIntegerFor("ShadingType")); in Load()
|
/external/pdfium/core/fpdfapi/font/ |
D | cpdf_font.cpp | 164 m_Flags = pFontDesc->GetIntegerFor("Flags", FXFONT_NONSYMBOLIC); in LoadFontDescriptor() 168 ItalicAngle = pFontDesc->GetIntegerFor("ItalicAngle"); in LoadFontDescriptor() 177 m_StemV = pFontDesc->GetIntegerFor("StemV"); in LoadFontDescriptor() 182 m_Ascent = pFontDesc->GetIntegerFor("Ascent"); in LoadFontDescriptor() 187 m_Descent = pFontDesc->GetIntegerFor("Descent"); in LoadFontDescriptor()
|
D | cpdf_simplefont.cpp | 113 int MissingWidth = pFontDesc->GetIntegerFor("MissingWidth"); in LoadCommon() 118 size_t width_start = m_pFontDict->GetIntegerFor("FirstChar", 0); in LoadCommon() 119 size_t width_end = m_pFontDict->GetIntegerFor("LastChar", 0); in LoadCommon()
|
/external/pdfium/core/fpdfdoc/ |
D | cpdf_apsettings.cpp | 22 return m_pDict ? m_pDict->GetIntegerFor("R") : 0; in GetRotation() 119 return m_pDict ? m_pDict->GetIntegerFor("TP", TEXTPOS_CAPTION) in GetTextPosition()
|
D | cpdf_action.h | 50 uint32_t GetFlags() const { return m_pDict->GetIntegerFor("Flags"); } in GetFlags()
|
D | cpdf_viewerpreferences.cpp | 29 return pDict ? pDict->GetIntegerFor("NumCopies") : 1; in NumCopies()
|
D | doc_tagged.cpp | 30 return pMarkInfo && pMarkInfo->GetIntegerFor("Marked"); in IsTagged() 97 int parents_id = pPageDict->GetIntegerFor("StructParents", -1); in LoadPageTree() 272 pKid->m_ContentId = pKidDict->GetIntegerFor("MCID"); in LoadKid()
|
D | cpdf_bookmark.cpp | 31 return m_pDict ? m_pDict->GetIntegerFor("F") : 0; in GetFontStyle()
|
D | cpdf_formcontrol.cpp | 167 if (m_pWidgetDict->GetIntegerFor("F") & ANNOTFLAG_HIDDEN) in DrawControl() 325 return m_pWidgetDict->GetIntegerFor("Q", 0); in GetControlAlignment()
|
/external/pdfium/fpdfsdk/ |
D | cpdfsdk_baannot.cpp | 146 return m_pAnnot->GetAnnotDict()->GetIntegerFor("F"); in GetFlags() 165 return m_pAnnot->GetAnnotDict()->GetIntegerFor("StructParent"); in GetStructParent() 187 return pBSDict->GetIntegerFor("W", 1); in GetBorderWidth()
|
D | fpdfedit_embeddertest.cpp | 468 EXPECT_EQ(32, font_dict->GetIntegerFor("FirstChar")); in TEST_F() 469 EXPECT_EQ(65532, font_dict->GetIntegerFor("LastChar")); in TEST_F() 484 int font_flags = font_desc->GetIntegerFor("Flags"); in TEST_F()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_dibsource.cpp | 147 m_Width = m_pDict->GetIntegerFor("Width"); in Load() 148 m_Height = m_pDict->GetIntegerFor("Height"); in Load() 259 m_Width = m_pDict->GetIntegerFor("Width"); in StartLoadDIBSource() 260 m_Height = m_pDict->GetIntegerFor("Height"); in StartLoadDIBSource() 387 m_bpc_orig = m_pDict->GetIntegerFor("BitsPerComponent"); in LoadColorInfo() 388 if (m_pDict->GetIntegerFor("ImageMask")) in LoadColorInfo() 541 !pParams || pParams->GetIntegerFor("ColorTransform", 1)); in CreateDecoder()
|