├── .clang-format ├── .gitattributes ├── .gitignore ├── .gn ├── .style.yapf ├── .vpython3 ├── AUTHORS ├── BUILD.gn ├── CONTRIBUTING.md ├── DEPS ├── DIR_METADATA ├── LICENSE ├── OWNERS ├── PRESUBMIT.py ├── PRESUBMIT_test.py ├── PRESUBMIT_test_mocks.py ├── README.md ├── codereview.settings ├── constants ├── BUILD.gn ├── access_permissions.h ├── annotation_common.h ├── annotation_flags.h ├── appearance.h ├── ascii.h ├── font_encodings.h ├── form_fields.h ├── form_flags.h ├── page_object.h ├── stream_dict_common.h └── transparency.h ├── core ├── fdrm │ ├── BUILD.gn │ ├── fx_crypt.cpp │ ├── fx_crypt.h │ ├── fx_crypt_aes.cpp │ ├── fx_crypt_aes.h │ ├── fx_crypt_sha.cpp │ ├── fx_crypt_sha.h │ └── fx_crypt_unittest.cpp ├── fpdfapi │ ├── cmaps │ │ ├── BUILD.gn │ │ ├── CNS1 │ │ │ ├── Adobe-CNS1-UCS2_5.inc │ │ │ ├── B5pc-H_0.cpp │ │ │ ├── B5pc-V_0.cpp │ │ │ ├── CNS-EUC-H_0.cpp │ │ │ ├── CNS-EUC-V_0.cpp │ │ │ ├── ETen-B5-H_0.cpp │ │ │ ├── ETen-B5-V_0.cpp │ │ │ ├── ETenms-B5-H_0.cpp │ │ │ ├── ETenms-B5-V_0.cpp │ │ │ ├── HKscs-B5-H_5.cpp │ │ │ ├── HKscs-B5-V_5.cpp │ │ │ ├── UniCNS-UCS2-H_3.cpp │ │ │ ├── UniCNS-UCS2-V_3.cpp │ │ │ ├── UniCNS-UTF16-H_0.cpp │ │ │ ├── cmaps_cns1.h │ │ │ └── cmaps_cns1.inc │ │ ├── GB1 │ │ │ ├── Adobe-GB1-UCS2_5.inc │ │ │ ├── GB-EUC-H_0.cpp │ │ │ ├── GB-EUC-V_0.cpp │ │ │ ├── GBK-EUC-H_2.cpp │ │ │ ├── GBK-EUC-V_2.cpp │ │ │ ├── GBK2K-H_5.cpp │ │ │ ├── GBK2K-V_5.cpp │ │ │ ├── GBKp-EUC-H_2.cpp │ │ │ ├── GBKp-EUC-V_2.cpp │ │ │ ├── GBpc-EUC-H_0.cpp │ │ │ ├── GBpc-EUC-V_0.cpp │ │ │ ├── UniGB-UCS2-H_4.cpp │ │ │ ├── UniGB-UCS2-V_4.cpp │ │ │ ├── cmaps_gb1.h │ │ │ └── cmaps_gb1.inc │ │ ├── Japan1 │ │ │ ├── 83pv-RKSJ-H_1.cpp │ │ │ ├── 90ms-RKSJ-H_2.cpp │ │ │ ├── 90ms-RKSJ-V_2.cpp │ │ │ ├── 90msp-RKSJ-H_2.cpp │ │ │ ├── 90msp-RKSJ-V_2.cpp │ │ │ ├── 90pv-RKSJ-H_1.cpp │ │ │ ├── Add-RKSJ-H_1.cpp │ │ │ ├── Add-RKSJ-V_1.cpp │ │ │ ├── Adobe-Japan1-UCS2_4.inc │ │ │ ├── EUC-H_1.cpp │ │ │ ├── EUC-V_1.cpp │ │ │ ├── Ext-RKSJ-H_2.cpp │ │ │ ├── Ext-RKSJ-V_2.cpp │ │ │ ├── H_1.cpp │ │ │ ├── UniJIS-UCS2-HW-H_4.cpp │ │ │ ├── UniJIS-UCS2-HW-V_4.cpp │ │ │ ├── UniJIS-UCS2-H_4.cpp │ │ │ ├── UniJIS-UCS2-V_4.cpp │ │ │ ├── V_1.cpp │ │ │ ├── cmaps_japan1.h │ │ │ └── cmaps_japan1.inc │ │ ├── Korea1 │ │ │ ├── Adobe-Korea1-UCS2_2.inc │ │ │ ├── KSC-EUC-H_0.cpp │ │ │ ├── KSC-EUC-V_0.cpp │ │ │ ├── KSCms-UHC-HW-H_1.cpp │ │ │ ├── KSCms-UHC-HW-V_1.cpp │ │ │ ├── KSCms-UHC-H_1.cpp │ │ │ ├── KSCms-UHC-V_1.cpp │ │ │ ├── KSCpc-EUC-H_0.cpp │ │ │ ├── UniKS-UCS2-H_1.cpp │ │ │ ├── UniKS-UCS2-V_1.cpp │ │ │ ├── UniKS-UTF16-H_0.cpp │ │ │ ├── cmaps_korea1.h │ │ │ └── cmaps_korea1.inc │ │ ├── fpdf_cmaps.cpp │ │ └── fpdf_cmaps.h │ ├── edit │ │ ├── BUILD.gn │ │ ├── cpdf_contentstream_write_utils.cpp │ │ ├── cpdf_contentstream_write_utils.h │ │ ├── cpdf_creator.cpp │ │ ├── cpdf_creator.h │ │ ├── cpdf_creator_embeddertest.cpp │ │ ├── cpdf_npagetooneexporter.cpp │ │ ├── cpdf_npagetooneexporter.h │ │ ├── cpdf_npagetooneexporter_unittest.cpp │ │ ├── cpdf_pagecontentgenerator.cpp │ │ ├── cpdf_pagecontentgenerator.h │ │ ├── cpdf_pagecontentgenerator_unittest.cpp │ │ ├── cpdf_pagecontentmanager.cpp │ │ ├── cpdf_pagecontentmanager.h │ │ ├── cpdf_pageexporter.cpp │ │ ├── cpdf_pageexporter.h │ │ ├── cpdf_pageorganizer.cpp │ │ ├── cpdf_pageorganizer.h │ │ ├── cpdf_stringarchivestream.cpp │ │ └── cpdf_stringarchivestream.h │ ├── font │ │ ├── BUILD.gn │ │ ├── cfx_cttgsubtable.cpp │ │ ├── cfx_cttgsubtable.h │ │ ├── cfx_stockfontarray.cpp │ │ ├── cfx_stockfontarray.h │ │ ├── cpdf_cid2unicodemap.cpp │ │ ├── cpdf_cid2unicodemap.h │ │ ├── cpdf_cidfont.cpp │ │ ├── cpdf_cidfont.h │ │ ├── cpdf_cidfont_unittest.cpp │ │ ├── cpdf_cmap.cpp │ │ ├── cpdf_cmap.h │ │ ├── cpdf_cmapparser.cpp │ │ ├── cpdf_cmapparser.h │ │ ├── cpdf_cmapparser_unittest.cpp │ │ ├── cpdf_font.cpp │ │ ├── cpdf_font.h │ │ ├── cpdf_fontencoding.cpp │ │ ├── cpdf_fontencoding.h │ │ ├── cpdf_fontglobals.cpp │ │ ├── cpdf_fontglobals.h │ │ ├── cpdf_simplefont.cpp │ │ ├── cpdf_simplefont.h │ │ ├── cpdf_simplefont_unittest.cpp │ │ ├── cpdf_tounicodemap.cpp │ │ ├── cpdf_tounicodemap.h │ │ ├── cpdf_tounicodemap_unittest.cpp │ │ ├── cpdf_truetypefont.cpp │ │ ├── cpdf_truetypefont.h │ │ ├── cpdf_truetypefont_unittest.cpp │ │ ├── cpdf_type1font.cpp │ │ ├── cpdf_type1font.h │ │ ├── cpdf_type3char.cpp │ │ ├── cpdf_type3char.h │ │ ├── cpdf_type3font.cpp │ │ └── cpdf_type3font.h │ ├── page │ │ ├── BUILD.gn │ │ ├── DEPS │ │ ├── cpdf_allstates.cpp │ │ ├── cpdf_allstates.h │ │ ├── cpdf_annotcontext.cpp │ │ ├── cpdf_annotcontext.h │ │ ├── cpdf_basedcs.cpp │ │ ├── cpdf_basedcs.h │ │ ├── cpdf_clippath.cpp │ │ ├── cpdf_clippath.h │ │ ├── cpdf_color.cpp │ │ ├── cpdf_color.h │ │ ├── cpdf_colorspace.cpp │ │ ├── cpdf_colorspace.h │ │ ├── cpdf_colorspace_unittest.cpp │ │ ├── cpdf_colorstate.cpp │ │ ├── cpdf_colorstate.h │ │ ├── cpdf_contentmarkitem.cpp │ │ ├── cpdf_contentmarkitem.h │ │ ├── cpdf_contentmarks.cpp │ │ ├── cpdf_contentmarks.h │ │ ├── cpdf_contentparser.cpp │ │ ├── cpdf_contentparser.h │ │ ├── cpdf_devicecs.cpp │ │ ├── cpdf_devicecs.h │ │ ├── cpdf_devicecs_unittest.cpp │ │ ├── cpdf_dib.cpp │ │ ├── cpdf_dib.h │ │ ├── cpdf_docpagedata.cpp │ │ ├── cpdf_docpagedata.h │ │ ├── cpdf_expintfunc.cpp │ │ ├── cpdf_expintfunc.h │ │ ├── cpdf_form.cpp │ │ ├── cpdf_form.h │ │ ├── cpdf_formobject.cpp │ │ ├── cpdf_formobject.h │ │ ├── cpdf_function.cpp │ │ ├── cpdf_function.h │ │ ├── cpdf_function_unittest.cpp │ │ ├── cpdf_generalstate.cpp │ │ ├── cpdf_generalstate.h │ │ ├── cpdf_graphicstates.cpp │ │ ├── cpdf_graphicstates.h │ │ ├── cpdf_iccprofile.cpp │ │ ├── cpdf_iccprofile.h │ │ ├── cpdf_image.cpp │ │ ├── cpdf_image.h │ │ ├── cpdf_imageloader.cpp │ │ ├── cpdf_imageloader.h │ │ ├── cpdf_imageobject.cpp │ │ ├── cpdf_imageobject.h │ │ ├── cpdf_indexedcs.cpp │ │ ├── cpdf_indexedcs.h │ │ ├── cpdf_meshstream.cpp │ │ ├── cpdf_meshstream.h │ │ ├── cpdf_occontext.cpp │ │ ├── cpdf_occontext.h │ │ ├── cpdf_page.cpp │ │ ├── cpdf_page.h │ │ ├── cpdf_pageimagecache.cpp │ │ ├── cpdf_pageimagecache.h │ │ ├── cpdf_pageimagecache_unittest.cpp │ │ ├── cpdf_pagemodule.cpp │ │ ├── cpdf_pagemodule.h │ │ ├── cpdf_pageobject.cpp │ │ ├── cpdf_pageobject.h │ │ ├── cpdf_pageobjectholder.cpp │ │ ├── cpdf_pageobjectholder.h │ │ ├── cpdf_pageobjectholder_unittest.cpp │ │ ├── cpdf_path.cpp │ │ ├── cpdf_path.h │ │ ├── cpdf_pathobject.cpp │ │ ├── cpdf_pathobject.h │ │ ├── cpdf_pattern.cpp │ │ ├── cpdf_pattern.h │ │ ├── cpdf_patterncs.cpp │ │ ├── cpdf_patterncs.h │ │ ├── cpdf_psengine.cpp │ │ ├── cpdf_psengine.h │ │ ├── cpdf_psengine_unittest.cpp │ │ ├── cpdf_psfunc.cpp │ │ ├── cpdf_psfunc.h │ │ ├── cpdf_sampledfunc.cpp │ │ ├── cpdf_sampledfunc.h │ │ ├── cpdf_shadingobject.cpp │ │ ├── cpdf_shadingobject.h │ │ ├── cpdf_shadingpattern.cpp │ │ ├── cpdf_shadingpattern.h │ │ ├── cpdf_stitchfunc.cpp │ │ ├── cpdf_stitchfunc.h │ │ ├── cpdf_streamcontentparser.cpp │ │ ├── cpdf_streamcontentparser.h │ │ ├── cpdf_streamcontentparser_unittest.cpp │ │ ├── cpdf_streamparser.cpp │ │ ├── cpdf_streamparser.h │ │ ├── cpdf_streamparser_unittest.cpp │ │ ├── cpdf_textobject.cpp │ │ ├── cpdf_textobject.h │ │ ├── cpdf_textstate.cpp │ │ ├── cpdf_textstate.h │ │ ├── cpdf_tilingpattern.cpp │ │ ├── cpdf_tilingpattern.h │ │ ├── cpdf_transferfunc.cpp │ │ ├── cpdf_transferfunc.h │ │ ├── cpdf_transferfuncdib.cpp │ │ ├── cpdf_transferfuncdib.h │ │ ├── cpdf_transparency.cpp │ │ ├── cpdf_transparency.h │ │ ├── ipdf_page.h │ │ ├── jpx_decode_conversion.cpp │ │ ├── jpx_decode_conversion.h │ │ ├── test_with_page_module.cpp │ │ └── test_with_page_module.h │ ├── parser │ │ ├── BUILD.gn │ │ ├── cfdf_document.cpp │ │ ├── cfdf_document.h │ │ ├── cpdf_array.cpp │ │ ├── cpdf_array.h │ │ ├── cpdf_array_unittest.cpp │ │ ├── cpdf_boolean.cpp │ │ ├── cpdf_boolean.h │ │ ├── cpdf_cross_ref_avail.cpp │ │ ├── cpdf_cross_ref_avail.h │ │ ├── cpdf_cross_ref_avail_unittest.cpp │ │ ├── cpdf_cross_ref_table.cpp │ │ ├── cpdf_cross_ref_table.h │ │ ├── cpdf_crypto_handler.cpp │ │ ├── cpdf_crypto_handler.h │ │ ├── cpdf_data_avail.cpp │ │ ├── cpdf_data_avail.h │ │ ├── cpdf_dictionary.cpp │ │ ├── cpdf_dictionary.h │ │ ├── cpdf_dictionary_unittest.cpp │ │ ├── cpdf_document.cpp │ │ ├── cpdf_document.h │ │ ├── cpdf_document_unittest.cpp │ │ ├── cpdf_encryptor.cpp │ │ ├── cpdf_encryptor.h │ │ ├── cpdf_flateencoder.cpp │ │ ├── cpdf_flateencoder.h │ │ ├── cpdf_hint_tables.cpp │ │ ├── cpdf_hint_tables.h │ │ ├── cpdf_hint_tables_unittest.cpp │ │ ├── cpdf_indirect_object_holder.cpp │ │ ├── cpdf_indirect_object_holder.h │ │ ├── cpdf_indirect_object_holder_unittest.cpp │ │ ├── cpdf_linearized_header.cpp │ │ ├── cpdf_linearized_header.h │ │ ├── cpdf_name.cpp │ │ ├── cpdf_name.h │ │ ├── cpdf_null.cpp │ │ ├── cpdf_null.h │ │ ├── cpdf_number.cpp │ │ ├── cpdf_number.h │ │ ├── cpdf_number_unittest.cpp │ │ ├── cpdf_object.cpp │ │ ├── cpdf_object.h │ │ ├── cpdf_object_avail.cpp │ │ ├── cpdf_object_avail.h │ │ ├── cpdf_object_avail_unittest.cpp │ │ ├── cpdf_object_stream.cpp │ │ ├── cpdf_object_stream.h │ │ ├── cpdf_object_stream_unittest.cpp │ │ ├── cpdf_object_unittest.cpp │ │ ├── cpdf_object_walker.cpp │ │ ├── cpdf_object_walker.h │ │ ├── cpdf_object_walker_unittest.cpp │ │ ├── cpdf_page_object_avail.cpp │ │ ├── cpdf_page_object_avail.h │ │ ├── cpdf_page_object_avail_unittest.cpp │ │ ├── cpdf_parser.cpp │ │ ├── cpdf_parser.h │ │ ├── cpdf_parser_embeddertest.cpp │ │ ├── cpdf_parser_unittest.cpp │ │ ├── cpdf_read_validator.cpp │ │ ├── cpdf_read_validator.h │ │ ├── cpdf_read_validator_unittest.cpp │ │ ├── cpdf_reference.cpp │ │ ├── cpdf_reference.h │ │ ├── cpdf_security_handler.cpp │ │ ├── cpdf_security_handler.h │ │ ├── cpdf_security_handler_embeddertest.cpp │ │ ├── cpdf_seekablemultistream.cpp │ │ ├── cpdf_seekablemultistream.h │ │ ├── cpdf_seekablemultistream_unittest.cpp │ │ ├── cpdf_simple_parser.cpp │ │ ├── cpdf_simple_parser.h │ │ ├── cpdf_simple_parser_unittest.cpp │ │ ├── cpdf_stream.cpp │ │ ├── cpdf_stream.h │ │ ├── cpdf_stream_acc.cpp │ │ ├── cpdf_stream_acc.h │ │ ├── cpdf_stream_acc_unittest.cpp │ │ ├── cpdf_string.cpp │ │ ├── cpdf_string.h │ │ ├── cpdf_syntax_parser.cpp │ │ ├── cpdf_syntax_parser.h │ │ ├── cpdf_syntax_parser_unittest.cpp │ │ ├── cpdf_test_document.cpp │ │ ├── cpdf_test_document.h │ │ ├── fpdf_parser_decode.cpp │ │ ├── fpdf_parser_decode.h │ │ ├── fpdf_parser_decode_embeddertest.cpp │ │ ├── fpdf_parser_decode_unittest.cpp │ │ ├── fpdf_parser_utility.cpp │ │ ├── fpdf_parser_utility.h │ │ ├── fpdf_parser_utility_unittest.cpp │ │ ├── object_tree_traversal_util.cpp │ │ ├── object_tree_traversal_util.h │ │ └── object_tree_traversal_util_embeddertest.cpp │ └── render │ │ ├── BUILD.gn │ │ ├── charposlist.cpp │ │ ├── charposlist.h │ │ ├── cpdf_devicebuffer.cpp │ │ ├── cpdf_devicebuffer.h │ │ ├── cpdf_docrenderdata.cpp │ │ ├── cpdf_docrenderdata.h │ │ ├── cpdf_docrenderdata_unittest.cpp │ │ ├── cpdf_imagerenderer.cpp │ │ ├── cpdf_imagerenderer.h │ │ ├── cpdf_pagerendercontext.cpp │ │ ├── cpdf_pagerendercontext.h │ │ ├── cpdf_progressiverenderer.cpp │ │ ├── cpdf_progressiverenderer.h │ │ ├── cpdf_rendercontext.cpp │ │ ├── cpdf_rendercontext.h │ │ ├── cpdf_renderoptions.cpp │ │ ├── cpdf_renderoptions.h │ │ ├── cpdf_rendershading.cpp │ │ ├── cpdf_rendershading.h │ │ ├── cpdf_renderstatus.cpp │ │ ├── cpdf_renderstatus.h │ │ ├── cpdf_rendertiling.cpp │ │ ├── cpdf_rendertiling.h │ │ ├── cpdf_scaledrenderbuffer.cpp │ │ ├── cpdf_scaledrenderbuffer.h │ │ ├── cpdf_textrenderer.cpp │ │ ├── cpdf_textrenderer.h │ │ ├── cpdf_type3cache.cpp │ │ ├── cpdf_type3cache.h │ │ ├── cpdf_type3glyphmap.cpp │ │ ├── cpdf_type3glyphmap.h │ │ ├── cpdf_windowsrenderdevice.cpp │ │ ├── cpdf_windowsrenderdevice.h │ │ ├── fpdf_progressive_render_embeddertest.cpp │ │ └── fpdf_render_pattern_embeddertest.cpp ├── fpdfdoc │ ├── BUILD.gn │ ├── cpdf_aaction.cpp │ ├── cpdf_aaction.h │ ├── cpdf_action.cpp │ ├── cpdf_action.h │ ├── cpdf_action_unittest.cpp │ ├── cpdf_annot.cpp │ ├── cpdf_annot.h │ ├── cpdf_annot_unittest.cpp │ ├── cpdf_annotlist.cpp │ ├── cpdf_annotlist.h │ ├── cpdf_annotlist_unittest.cpp │ ├── cpdf_apsettings.cpp │ ├── cpdf_apsettings.h │ ├── cpdf_bafontmap.cpp │ ├── cpdf_bafontmap.h │ ├── cpdf_bafontmap_unittest.cpp │ ├── cpdf_bookmark.cpp │ ├── cpdf_bookmark.h │ ├── cpdf_bookmarktree.cpp │ ├── cpdf_bookmarktree.h │ ├── cpdf_color_utils.cpp │ ├── cpdf_color_utils.h │ ├── cpdf_defaultappearance.cpp │ ├── cpdf_defaultappearance.h │ ├── cpdf_defaultappearance_unittest.cpp │ ├── cpdf_dest.cpp │ ├── cpdf_dest.h │ ├── cpdf_dest_unittest.cpp │ ├── cpdf_filespec.cpp │ ├── cpdf_filespec.h │ ├── cpdf_filespec_unittest.cpp │ ├── cpdf_formcontrol.cpp │ ├── cpdf_formcontrol.h │ ├── cpdf_formfield.cpp │ ├── cpdf_formfield.h │ ├── cpdf_formfield_unittest.cpp │ ├── cpdf_generateap.cpp │ ├── cpdf_generateap.h │ ├── cpdf_icon.cpp │ ├── cpdf_icon.h │ ├── cpdf_iconfit.cpp │ ├── cpdf_iconfit.h │ ├── cpdf_interactiveform.cpp │ ├── cpdf_interactiveform.h │ ├── cpdf_interactiveform_unittest.cpp │ ├── cpdf_link.cpp │ ├── cpdf_link.h │ ├── cpdf_linklist.cpp │ ├── cpdf_linklist.h │ ├── cpdf_metadata.cpp │ ├── cpdf_metadata.h │ ├── cpdf_metadata_unittest.cpp │ ├── cpdf_nametree.cpp │ ├── cpdf_nametree.h │ ├── cpdf_nametree_unittest.cpp │ ├── cpdf_numbertree.cpp │ ├── cpdf_numbertree.h │ ├── cpdf_pagelabel.cpp │ ├── cpdf_pagelabel.h │ ├── cpdf_pagelabel_unittest.cpp │ ├── cpdf_structelement.cpp │ ├── cpdf_structelement.h │ ├── cpdf_structtree.cpp │ ├── cpdf_structtree.h │ ├── cpdf_viewerpreferences.cpp │ ├── cpdf_viewerpreferences.h │ ├── cpvt_floatrect.h │ ├── cpvt_fontmap.cpp │ ├── cpvt_fontmap.h │ ├── cpvt_line.h │ ├── cpvt_lineinfo.h │ ├── cpvt_section.cpp │ ├── cpvt_section.h │ ├── cpvt_variabletext.cpp │ ├── cpvt_variabletext.h │ ├── cpvt_word.h │ ├── cpvt_wordinfo.cpp │ ├── cpvt_wordinfo.h │ ├── cpvt_wordplace.h │ ├── cpvt_wordrange.h │ └── ipvt_fontmap.h ├── fpdftext │ ├── BUILD.gn │ ├── cpdf_linkextract.cpp │ ├── cpdf_linkextract.h │ ├── cpdf_linkextract_unittest.cpp │ ├── cpdf_textpage.cpp │ ├── cpdf_textpage.h │ ├── cpdf_textpagefind.cpp │ ├── cpdf_textpagefind.h │ ├── unicodenormalizationdata.cpp │ └── unicodenormalizationdata.h ├── fxcodec │ ├── BUILD.gn │ ├── basic │ │ ├── a85_unittest.cpp │ │ ├── basicmodule.cpp │ │ ├── basicmodule.h │ │ └── rle_unittest.cpp │ ├── bmp │ │ ├── bmp_decoder.cpp │ │ ├── bmp_decoder.h │ │ ├── cfx_bmpcontext.cpp │ │ ├── cfx_bmpcontext.h │ │ ├── cfx_bmpdecompressor.cpp │ │ ├── cfx_bmpdecompressor.h │ │ └── fx_bmp.h │ ├── cfx_codec_memory.cpp │ ├── cfx_codec_memory.h │ ├── data_and_bytes_consumed.cpp │ ├── data_and_bytes_consumed.h │ ├── fax │ │ ├── faxmodule.cpp │ │ └── faxmodule.h │ ├── flate │ │ ├── DEPS │ │ ├── flatemodule.cpp │ │ ├── flatemodule.h │ │ └── flatemodule_unittest.cpp │ ├── fx_codec.cpp │ ├── fx_codec.h │ ├── fx_codec_def.h │ ├── gif │ │ ├── cfx_gif.cpp │ │ ├── cfx_gif.h │ │ ├── cfx_gifcontext.cpp │ │ ├── cfx_gifcontext.h │ │ ├── cfx_gifcontext_unittest.cpp │ │ ├── gif_decoder.cpp │ │ ├── gif_decoder.h │ │ ├── lzw_decompressor.cpp │ │ ├── lzw_decompressor.h │ │ └── lzw_decompressor_unittest.cpp │ ├── icc │ │ ├── DEPS │ │ ├── icc_transform.cpp │ │ └── icc_transform.h │ ├── jbig2 │ │ ├── JBig2_ArithDecoder.cpp │ │ ├── JBig2_ArithDecoder.h │ │ ├── JBig2_ArithIntDecoder.cpp │ │ ├── JBig2_ArithIntDecoder.h │ │ ├── JBig2_BitStream.cpp │ │ ├── JBig2_BitStream.h │ │ ├── JBig2_BitStream_unittest.cpp │ │ ├── JBig2_Context.cpp │ │ ├── JBig2_Context.h │ │ ├── JBig2_Define.h │ │ ├── JBig2_DocumentContext.cpp │ │ ├── JBig2_DocumentContext.h │ │ ├── JBig2_GrdProc.cpp │ │ ├── JBig2_GrdProc.h │ │ ├── JBig2_GrrdProc.cpp │ │ ├── JBig2_GrrdProc.h │ │ ├── JBig2_HtrdProc.cpp │ │ ├── JBig2_HtrdProc.h │ │ ├── JBig2_HuffmanDecoder.cpp │ │ ├── JBig2_HuffmanDecoder.h │ │ ├── JBig2_HuffmanTable.cpp │ │ ├── JBig2_HuffmanTable.h │ │ ├── JBig2_Image.cpp │ │ ├── JBig2_Image.h │ │ ├── JBig2_Image_unittest.cpp │ │ ├── JBig2_Page.h │ │ ├── JBig2_PatternDict.cpp │ │ ├── JBig2_PatternDict.h │ │ ├── JBig2_PddProc.cpp │ │ ├── JBig2_PddProc.h │ │ ├── JBig2_SddProc.cpp │ │ ├── JBig2_SddProc.h │ │ ├── JBig2_Segment.cpp │ │ ├── JBig2_Segment.h │ │ ├── JBig2_SymbolDict.cpp │ │ ├── JBig2_SymbolDict.h │ │ ├── JBig2_TrdProc.cpp │ │ ├── JBig2_TrdProc.h │ │ ├── jbig2_decoder.cpp │ │ ├── jbig2_decoder.h │ │ └── jbig2_embeddertest.cpp │ ├── jpeg │ │ ├── DEPS │ │ ├── jpeg_common.c │ │ ├── jpeg_common.h │ │ ├── jpeg_progressive_decoder.cpp │ │ ├── jpeg_progressive_decoder.h │ │ ├── jpegmodule.cpp │ │ └── jpegmodule.h │ ├── jpx │ │ ├── DEPS │ │ ├── cjpx_decoder.cpp │ │ ├── cjpx_decoder.h │ │ ├── jpx_decode_utils.cpp │ │ ├── jpx_decode_utils.h │ │ └── jpx_unittest.cpp │ ├── png │ │ ├── DEPS │ │ ├── libpng_png_decoder.cpp │ │ ├── libpng_png_decoder.h │ │ ├── png_decoder_delegate.h │ │ ├── skia_png_decoder.cpp │ │ └── skia_png_decoder.h │ ├── progressive_decoder.cpp │ ├── progressive_decoder.h │ ├── progressive_decoder_context.h │ ├── progressive_decoder_unittest.cpp │ ├── scanlinedecoder.cpp │ ├── scanlinedecoder.h │ └── tiff │ │ ├── DEPS │ │ ├── tiff_decoder.cpp │ │ └── tiff_decoder.h ├── fxcrt │ ├── BUILD.gn │ ├── DEPS │ ├── autonuller.h │ ├── autonuller_unittest.cpp │ ├── autorestorer.h │ ├── autorestorer_unittest.cpp │ ├── binary_buffer.cpp │ ├── binary_buffer.h │ ├── binary_buffer_unittest.cpp │ ├── byteorder.h │ ├── byteorder_unittest.cpp │ ├── bytestring.cpp │ ├── bytestring.h │ ├── bytestring_unittest.cpp │ ├── cfx_bitstream.cpp │ ├── cfx_bitstream.h │ ├── cfx_bitstream_unittest.cpp │ ├── cfx_datetime.cpp │ ├── cfx_datetime.h │ ├── cfx_datetime_unittest.cpp │ ├── cfx_fileaccess_posix.cpp │ ├── cfx_fileaccess_posix.h │ ├── cfx_fileaccess_windows.cpp │ ├── cfx_fileaccess_windows.h │ ├── cfx_memorystream.cpp │ ├── cfx_memorystream.h │ ├── cfx_memorystream_unittest.cpp │ ├── cfx_read_only_span_stream.cpp │ ├── cfx_read_only_span_stream.h │ ├── cfx_read_only_string_stream.cpp │ ├── cfx_read_only_string_stream.h │ ├── cfx_read_only_vector_stream.cpp │ ├── cfx_read_only_vector_stream.h │ ├── cfx_seekablestreamproxy.cpp │ ├── cfx_seekablestreamproxy.h │ ├── cfx_seekablestreamproxy_unittest.cpp │ ├── cfx_timer.cpp │ ├── cfx_timer.h │ ├── cfx_timer_unittest.cpp │ ├── check.h │ ├── check_op.h │ ├── code_point_view.cpp │ ├── code_point_view.h │ ├── code_point_view_unittest.cpp │ ├── compiler_specific.h │ ├── component_export.h │ ├── containers │ │ ├── adapters.h │ │ ├── contains.h │ │ └── unique_ptr_adapters.h │ ├── css │ │ ├── BUILD.gn │ │ ├── cfx_css.h │ │ ├── cfx_csscolorvalue.cpp │ │ ├── cfx_csscolorvalue.h │ │ ├── cfx_csscomputedstyle.cpp │ │ ├── cfx_csscomputedstyle.h │ │ ├── cfx_csscustomproperty.cpp │ │ ├── cfx_csscustomproperty.h │ │ ├── cfx_cssdata.cpp │ │ ├── cfx_cssdata.h │ │ ├── cfx_cssdata_unittest.cpp │ │ ├── cfx_cssdeclaration.cpp │ │ ├── cfx_cssdeclaration.h │ │ ├── cfx_cssdeclaration_unittest.cpp │ │ ├── cfx_cssenumvalue.cpp │ │ ├── cfx_cssenumvalue.h │ │ ├── cfx_cssinputtextbuf.cpp │ │ ├── cfx_cssinputtextbuf.h │ │ ├── cfx_cssnumbervalue.cpp │ │ ├── cfx_cssnumbervalue.h │ │ ├── cfx_cssoutputtextbuf.cpp │ │ ├── cfx_cssoutputtextbuf.h │ │ ├── cfx_csspropertyholder.cpp │ │ ├── cfx_csspropertyholder.h │ │ ├── cfx_cssrulecollection.cpp │ │ ├── cfx_cssrulecollection.h │ │ ├── cfx_cssselector.cpp │ │ ├── cfx_cssselector.h │ │ ├── cfx_cssstringvalue.cpp │ │ ├── cfx_cssstringvalue.h │ │ ├── cfx_cssstylerule.cpp │ │ ├── cfx_cssstylerule.h │ │ ├── cfx_cssstyleselector.cpp │ │ ├── cfx_cssstyleselector.h │ │ ├── cfx_cssstylesheet.cpp │ │ ├── cfx_cssstylesheet.h │ │ ├── cfx_cssstylesheet_unittest.cpp │ │ ├── cfx_csssyntaxparser.cpp │ │ ├── cfx_csssyntaxparser.h │ │ ├── cfx_csssyntaxparser_unittest.cpp │ │ ├── cfx_cssvalue.cpp │ │ ├── cfx_cssvalue.h │ │ ├── cfx_cssvaluelist.cpp │ │ ├── cfx_cssvaluelist.h │ │ ├── cfx_cssvaluelistparser.cpp │ │ ├── cfx_cssvaluelistparser.h │ │ ├── cfx_cssvaluelistparser_unittest.cpp │ │ ├── properties.inc │ │ └── property_values.inc │ ├── data_vector.h │ ├── debug │ │ ├── alias.cc │ │ └── alias.h │ ├── fake_time_test.cpp │ ├── fake_time_test.h │ ├── fileaccess_iface.h │ ├── fixed_size_data_vector.h │ ├── fixed_size_data_vector_unittest.cpp │ ├── fx_2d_size.h │ ├── fx_bidi.cpp │ ├── fx_bidi.h │ ├── fx_bidi_unittest.cpp │ ├── fx_codepage.cpp │ ├── fx_codepage.h │ ├── fx_codepage_forward.h │ ├── fx_coordinates.cpp │ ├── fx_coordinates.h │ ├── fx_coordinates_test_support.cpp │ ├── fx_coordinates_test_support.h │ ├── fx_coordinates_unittest.cpp │ ├── fx_extension.cpp │ ├── fx_extension.h │ ├── fx_extension_unittest.cpp │ ├── fx_folder.h │ ├── fx_folder_posix.cpp │ ├── fx_folder_windows.cpp │ ├── fx_memcpy_wrappers.h │ ├── fx_memcpy_wrappers_unittest.cpp │ ├── fx_memory.cpp │ ├── fx_memory.h │ ├── fx_memory_malloc.cpp │ ├── fx_memory_pa.cpp │ ├── fx_memory_unittest.cpp │ ├── fx_memory_wrappers.h │ ├── fx_memory_wrappers_unittest.cpp │ ├── fx_number.cpp │ ├── fx_number.h │ ├── fx_number_unittest.cpp │ ├── fx_random.cpp │ ├── fx_random.h │ ├── fx_random_unittest.cpp │ ├── fx_safe_types.h │ ├── fx_safe_types_unittest.cpp │ ├── fx_stream.cpp │ ├── fx_stream.h │ ├── fx_string.cpp │ ├── fx_string.h │ ├── fx_string_unittest.cpp │ ├── fx_string_wrappers.h │ ├── fx_string_wrappers_unittest.cpp │ ├── fx_system.cpp │ ├── fx_system.h │ ├── fx_system_unittest.cpp │ ├── fx_types.h │ ├── fx_ucddata.inc │ ├── fx_unicode.cpp │ ├── fx_unicode.h │ ├── immediate_crash.h │ ├── mask.h │ ├── mask_unittest.cpp │ ├── maybe_owned.h │ ├── maybe_owned_unittest.cpp │ ├── notreached.h │ ├── numerics │ │ ├── OWNERS │ │ ├── checked_math.h │ │ ├── checked_math_impl.h │ │ ├── clamped_math.h │ │ ├── clamped_math_impl.h │ │ ├── integral_constant_like.h │ │ ├── safe_conversions.h │ │ ├── safe_conversions_arm_impl.h │ │ ├── safe_conversions_impl.h │ │ ├── safe_math.h │ │ ├── safe_math_arm_impl.h │ │ ├── safe_math_clang_gcc_impl.h │ │ └── safe_math_shared_impl.h │ ├── observed_ptr.cpp │ ├── observed_ptr.h │ ├── observed_ptr_unittest.cpp │ ├── pauseindicator_iface.h │ ├── pdfium_span_unittest.cpp │ ├── ptr_util.h │ ├── raw_span.h │ ├── retain_ptr.h │ ├── retain_ptr_unittest.cpp │ ├── scoped_set_insertion.h │ ├── scoped_set_insertion_unittest.cpp │ ├── shared_copy_on_write.h │ ├── shared_copy_on_write_unittest.cpp │ ├── span.h │ ├── span_util.h │ ├── span_util_unittest.cpp │ ├── stl_util.h │ ├── stl_util_unittest.cpp │ ├── string_data_template.cpp │ ├── string_data_template.h │ ├── string_pool_template.h │ ├── string_pool_template_unittest.cpp │ ├── string_template.cpp │ ├── string_template.h │ ├── string_test_support.cpp │ ├── string_view_template.h │ ├── tree_node.h │ ├── tree_node_unittest.cpp │ ├── unowned_ptr.h │ ├── unowned_ptr_exclusion.h │ ├── unowned_ptr_unittest.cpp │ ├── utf16.h │ ├── utf16_unittest.cpp │ ├── weak_ptr.h │ ├── weak_ptr_unittest.cpp │ ├── widestring.cpp │ ├── widestring.h │ ├── widestring_unittest.cpp │ ├── widetext_buffer.cpp │ ├── widetext_buffer.h │ ├── widetext_buffer_unittest.cpp │ ├── win │ │ ├── scoped_select_object.h │ │ ├── win_util.cc │ │ └── win_util.h │ ├── xml │ │ ├── cfx_xmlchardata.cpp │ │ ├── cfx_xmlchardata.h │ │ ├── cfx_xmlchardata_unittest.cpp │ │ ├── cfx_xmldocument.cpp │ │ ├── cfx_xmldocument.h │ │ ├── cfx_xmldocument_unittest.cpp │ │ ├── cfx_xmlelement.cpp │ │ ├── cfx_xmlelement.h │ │ ├── cfx_xmlelement_unittest.cpp │ │ ├── cfx_xmlinstruction.cpp │ │ ├── cfx_xmlinstruction.h │ │ ├── cfx_xmlinstruction_unittest.cpp │ │ ├── cfx_xmlnode.cpp │ │ ├── cfx_xmlnode.h │ │ ├── cfx_xmlnode_unittest.cpp │ │ ├── cfx_xmlparser.cpp │ │ ├── cfx_xmlparser.h │ │ ├── cfx_xmlparser_unittest.cpp │ │ ├── cfx_xmltext.cpp │ │ ├── cfx_xmltext.h │ │ └── cfx_xmltext_unittest.cpp │ ├── zip.h │ └── zip_unittest.cpp └── fxge │ ├── BUILD.gn │ ├── DEPS │ ├── agg │ ├── DEPS │ ├── cfx_agg_bitmapcomposer.cpp │ ├── cfx_agg_bitmapcomposer.h │ ├── cfx_agg_cliprgn.cpp │ ├── cfx_agg_cliprgn.h │ ├── cfx_agg_devicedriver.cpp │ ├── cfx_agg_devicedriver.h │ ├── cfx_agg_imagerenderer.cpp │ └── cfx_agg_imagerenderer.h │ ├── android │ ├── cfpf_skiadevicemodule.cpp │ ├── cfpf_skiadevicemodule.h │ ├── cfpf_skiafont.cpp │ ├── cfpf_skiafont.h │ ├── cfpf_skiafontmgr.cpp │ ├── cfpf_skiafontmgr.h │ ├── cfpf_skiapathfont.cpp │ ├── cfpf_skiapathfont.h │ ├── cfx_androidfontinfo.cpp │ ├── cfx_androidfontinfo.h │ └── fx_android_impl.cpp │ ├── apple │ ├── fx_apple_impl.cpp │ ├── fx_apple_platform.cpp │ ├── fx_apple_platform.h │ ├── fx_quartz_device.cpp │ └── fx_quartz_device.h │ ├── calculate_pitch.cpp │ ├── calculate_pitch.h │ ├── cfx_color.cpp │ ├── cfx_color.h │ ├── cfx_defaultrenderdevice.cpp │ ├── cfx_defaultrenderdevice.h │ ├── cfx_defaultrenderdevice_unittest.cpp │ ├── cfx_drawutils.cpp │ ├── cfx_drawutils.h │ ├── cfx_face.cpp │ ├── cfx_face.h │ ├── cfx_fillrenderoptions.h │ ├── cfx_folderfontinfo.cpp │ ├── cfx_folderfontinfo.h │ ├── cfx_folderfontinfo_unittest.cpp │ ├── cfx_font.cpp │ ├── cfx_font.h │ ├── cfx_fontcache.cpp │ ├── cfx_fontcache.h │ ├── cfx_fontmapper.cpp │ ├── cfx_fontmapper.h │ ├── cfx_fontmapper_unittest.cpp │ ├── cfx_fontmgr.cpp │ ├── cfx_fontmgr.h │ ├── cfx_gemodule.cpp │ ├── cfx_gemodule.h │ ├── cfx_glyphbitmap.cpp │ ├── cfx_glyphbitmap.h │ ├── cfx_glyphcache.cpp │ ├── cfx_glyphcache.h │ ├── cfx_graphstate.cpp │ ├── cfx_graphstate.h │ ├── cfx_graphstatedata.cpp │ ├── cfx_graphstatedata.h │ ├── cfx_path.cpp │ ├── cfx_path.h │ ├── cfx_path_unittest.cpp │ ├── cfx_renderdevice.cpp │ ├── cfx_renderdevice.h │ ├── cfx_substfont.cpp │ ├── cfx_substfont.h │ ├── cfx_textrenderoptions.h │ ├── cfx_unicodeencoding.cpp │ ├── cfx_unicodeencoding.h │ ├── cfx_unicodeencodingex.cpp │ ├── cfx_unicodeencodingex.h │ ├── cfx_windowsrenderdevice.cpp │ ├── cfx_windowsrenderdevice.h │ ├── cfx_windowsrenderdevice_embeddertest.cpp │ ├── dib │ ├── README.md │ ├── blend.cpp │ ├── blend.h │ ├── blend_unittest.cpp │ ├── cfx_bitmapstorer.cpp │ ├── cfx_bitmapstorer.h │ ├── cfx_cmyk_to_srgb.cpp │ ├── cfx_cmyk_to_srgb.h │ ├── cfx_cmyk_to_srgb_unittest.cpp │ ├── cfx_dibbase.cpp │ ├── cfx_dibbase.h │ ├── cfx_dibbase_unittest.cpp │ ├── cfx_dibitmap.cpp │ ├── cfx_dibitmap.h │ ├── cfx_dibitmap_unittest.cpp │ ├── cfx_imagestretcher.cpp │ ├── cfx_imagestretcher.h │ ├── cfx_imagetransformer.cpp │ ├── cfx_imagetransformer.h │ ├── cfx_scanlinecompositor.cpp │ ├── cfx_scanlinecompositor.h │ ├── cfx_scanlinecompositor_unittest.cpp │ ├── cstretchengine.cpp │ ├── cstretchengine.h │ ├── cstretchengine_unittest.cpp │ ├── fx_dib.cpp │ ├── fx_dib.h │ ├── fx_dib_unittest.cpp │ └── scanlinecomposer_iface.h │ ├── fontdata │ └── chromefontdata │ │ ├── FoxitDingbats.cpp │ │ ├── FoxitFixed.cpp │ │ ├── FoxitFixedBold.cpp │ │ ├── FoxitFixedBoldItalic.cpp │ │ ├── FoxitFixedItalic.cpp │ │ ├── FoxitSans.cpp │ │ ├── FoxitSansBold.cpp │ │ ├── FoxitSansBoldItalic.cpp │ │ ├── FoxitSansItalic.cpp │ │ ├── FoxitSansMM.cpp │ │ ├── FoxitSerif.cpp │ │ ├── FoxitSerifBold.cpp │ │ ├── FoxitSerifBoldItalic.cpp │ │ ├── FoxitSerifItalic.cpp │ │ ├── FoxitSerifMM.cpp │ │ ├── FoxitSymbol.cpp │ │ └── chromefontdata.h │ ├── freetype │ ├── DEPS │ ├── fx_freetype.cpp │ └── fx_freetype.h │ ├── fx_font.cpp │ ├── fx_font.h │ ├── fx_font_unittest.cpp │ ├── fx_fontencoding.h │ ├── fx_ge_text_embeddertest.cpp │ ├── linux │ └── fx_linux_impl.cpp │ ├── render_defines.h │ ├── renderdevicedriver_iface.cpp │ ├── renderdevicedriver_iface.h │ ├── scoped_font_transform.cpp │ ├── scoped_font_transform.h │ ├── skia │ ├── DEPS │ ├── cfx_dibbase_skia.cpp │ ├── fx_skia_device.cpp │ ├── fx_skia_device.h │ └── fx_skia_device_embeddertest.cpp │ ├── systemfontinfo_iface.h │ ├── text_char_pos.cpp │ ├── text_char_pos.h │ ├── text_glyph_pos.cpp │ ├── text_glyph_pos.h │ └── win32 │ ├── DEPS │ ├── cfx_psfonttracker.cpp │ ├── cfx_psfonttracker.h │ ├── cfx_psrenderer.cpp │ ├── cfx_psrenderer.h │ ├── cfx_psrenderer_unittest.cpp │ ├── cgdi_device_driver.cpp │ ├── cgdi_device_driver.h │ ├── cgdi_display_driver.cpp │ ├── cgdi_display_driver.h │ ├── cgdi_plus_ext.cpp │ ├── cgdi_plus_ext.h │ ├── cgdi_printer_driver.cpp │ ├── cgdi_printer_driver.h │ ├── cps_printer_driver.cpp │ ├── cps_printer_driver.h │ ├── cpsoutput.cpp │ ├── cpsoutput.h │ ├── ctext_only_printer_driver.cpp │ ├── ctext_only_printer_driver.h │ ├── cwin32_platform.cpp │ └── cwin32_platform.h ├── docs ├── code-coverage.md ├── getting-started.md ├── pdfium-edit-guide.md ├── safetynet.md └── v8-getting-started.md ├── fpdfsdk ├── BUILD.gn ├── DEPS ├── PRESUBMIT.py ├── cpdfsdk_annot.cpp ├── cpdfsdk_annot.h ├── cpdfsdk_annotiteration.cpp ├── cpdfsdk_annotiteration.h ├── cpdfsdk_annotiterator.cpp ├── cpdfsdk_annotiterator.h ├── cpdfsdk_annotiterator_embeddertest.cpp ├── cpdfsdk_appstream.cpp ├── cpdfsdk_appstream.h ├── cpdfsdk_baannot.cpp ├── cpdfsdk_baannot.h ├── cpdfsdk_baannot_embeddertest.cpp ├── cpdfsdk_customaccess.cpp ├── cpdfsdk_customaccess.h ├── cpdfsdk_filewriteadapter.cpp ├── cpdfsdk_filewriteadapter.h ├── cpdfsdk_formfillenvironment.cpp ├── cpdfsdk_formfillenvironment.h ├── cpdfsdk_helpers.cpp ├── cpdfsdk_helpers.h ├── cpdfsdk_helpers_unittest.cpp ├── cpdfsdk_interactiveform.cpp ├── cpdfsdk_interactiveform.h ├── cpdfsdk_pageview.cpp ├── cpdfsdk_pageview.h ├── cpdfsdk_pauseadapter.cpp ├── cpdfsdk_pauseadapter.h ├── cpdfsdk_renderpage.cpp ├── cpdfsdk_renderpage.h ├── cpdfsdk_widget.cpp ├── cpdfsdk_widget.h ├── formfiller │ ├── BUILD.gn │ ├── cffl_button.cpp │ ├── cffl_button.h │ ├── cffl_checkbox.cpp │ ├── cffl_checkbox.h │ ├── cffl_combobox.cpp │ ├── cffl_combobox.h │ ├── cffl_combobox_embeddertest.cpp │ ├── cffl_fieldaction.cpp │ ├── cffl_fieldaction.h │ ├── cffl_formfield.cpp │ ├── cffl_formfield.h │ ├── cffl_interactiveformfiller.cpp │ ├── cffl_interactiveformfiller.h │ ├── cffl_listbox.cpp │ ├── cffl_listbox.h │ ├── cffl_perwindowdata.cpp │ ├── cffl_perwindowdata.h │ ├── cffl_pushbutton.cpp │ ├── cffl_pushbutton.h │ ├── cffl_radiobutton.cpp │ ├── cffl_radiobutton.h │ ├── cffl_textfield.cpp │ ├── cffl_textfield.h │ ├── cffl_textobject.cpp │ └── cffl_textobject.h ├── fpdf_annot.cpp ├── fpdf_annot_embeddertest.cpp ├── fpdf_attachment.cpp ├── fpdf_attachment_embeddertest.cpp ├── fpdf_catalog.cpp ├── fpdf_catalog_embeddertest.cpp ├── fpdf_catalog_unittest.cpp ├── fpdf_dataavail.cpp ├── fpdf_dataavail_embeddertest.cpp ├── fpdf_doc.cpp ├── fpdf_doc_embeddertest.cpp ├── fpdf_doc_unittest.cpp ├── fpdf_edit_embeddertest.cpp ├── fpdf_edit_unittest.cpp ├── fpdf_editimg.cpp ├── fpdf_editimg_embeddertest.cpp ├── fpdf_editpage.cpp ├── fpdf_editpage_embeddertest.cpp ├── fpdf_editpath.cpp ├── fpdf_editpath_embeddertest.cpp ├── fpdf_edittext.cpp ├── fpdf_ext.cpp ├── fpdf_ext_embeddertest.cpp ├── fpdf_flatten.cpp ├── fpdf_flatten_embeddertest.cpp ├── fpdf_formfill.cpp ├── fpdf_formfill_embeddertest.cpp ├── fpdf_javascript.cpp ├── fpdf_javascript_embeddertest.cpp ├── fpdf_ppo.cpp ├── fpdf_ppo_embeddertest.cpp ├── fpdf_progressive.cpp ├── fpdf_save.cpp ├── fpdf_save_embeddertest.cpp ├── fpdf_searchex.cpp ├── fpdf_searchex_embeddertest.cpp ├── fpdf_signature.cpp ├── fpdf_signature_embeddertest.cpp ├── fpdf_structtree.cpp ├── fpdf_structtree_embeddertest.cpp ├── fpdf_sysfontinfo.cpp ├── fpdf_sysfontinfo_embeddertest.cpp ├── fpdf_text.cpp ├── fpdf_text_embeddertest.cpp ├── fpdf_thumbnail.cpp ├── fpdf_thumbnail_embeddertest.cpp ├── fpdf_transformpage.cpp ├── fpdf_transformpage_embeddertest.cpp ├── fpdf_view.cpp ├── fpdf_view_c_api_test.c ├── fpdf_view_c_api_test.h ├── fpdf_view_embeddertest.cpp ├── fpdf_view_unittest.cpp ├── fpdfxfa │ ├── BUILD.gn │ ├── DEPS │ ├── cpdfxfa_context.cpp │ ├── cpdfxfa_context.h │ ├── cpdfxfa_context_embeddertest.cpp │ ├── cpdfxfa_docenvironment.cpp │ ├── cpdfxfa_docenvironment.h │ ├── cpdfxfa_docenvironment_embeddertest.cpp │ ├── cpdfxfa_page.cpp │ ├── cpdfxfa_page.h │ ├── cpdfxfa_widget.cpp │ └── cpdfxfa_widget.h └── pwl │ ├── BUILD.gn │ ├── README.md │ ├── cpwl_button.cpp │ ├── cpwl_button.h │ ├── cpwl_caret.cpp │ ├── cpwl_caret.h │ ├── cpwl_cbbutton.cpp │ ├── cpwl_cbbutton.h │ ├── cpwl_cblistbox.cpp │ ├── cpwl_cblistbox.h │ ├── cpwl_combo_box.cpp │ ├── cpwl_combo_box.h │ ├── cpwl_combo_box_edit_embeddertest.cpp │ ├── cpwl_combo_box_embeddertest.cpp │ ├── cpwl_combo_box_embeddertest.h │ ├── cpwl_edit.cpp │ ├── cpwl_edit.h │ ├── cpwl_edit_embeddertest.cpp │ ├── cpwl_edit_impl.cpp │ ├── cpwl_edit_impl.h │ ├── cpwl_list_box.cpp │ ├── cpwl_list_box.h │ ├── cpwl_list_ctrl.cpp │ ├── cpwl_list_ctrl.h │ ├── cpwl_sbbutton.cpp │ ├── cpwl_sbbutton.h │ ├── cpwl_scroll_bar.cpp │ ├── cpwl_scroll_bar.h │ ├── cpwl_special_button.cpp │ ├── cpwl_special_button.h │ ├── cpwl_special_button_embeddertest.cpp │ ├── cpwl_wnd.cpp │ ├── cpwl_wnd.h │ └── ipwl_fillernotify.h ├── fxbarcode ├── BC_Library.cpp ├── BC_Library.h ├── BC_TwoDimWriter.cpp ├── BC_TwoDimWriter.h ├── BC_Writer.cpp ├── BC_Writer.h ├── BUILD.gn ├── DEPS ├── cbc_codabar.cpp ├── cbc_codabar.h ├── cbc_code128.cpp ├── cbc_code128.h ├── cbc_code39.cpp ├── cbc_code39.h ├── cbc_codebase.cpp ├── cbc_codebase.h ├── cbc_datamatrix.cpp ├── cbc_datamatrix.h ├── cbc_ean13.cpp ├── cbc_ean13.h ├── cbc_ean8.cpp ├── cbc_ean8.h ├── cbc_eancode.cpp ├── cbc_eancode.h ├── cbc_onecode.cpp ├── cbc_onecode.h ├── cbc_pdf417i.cpp ├── cbc_pdf417i.h ├── cbc_pdf417i_unittest.cpp ├── cbc_qrcode.cpp ├── cbc_qrcode.h ├── cbc_upca.cpp ├── cbc_upca.h ├── cfx_barcode.cpp ├── cfx_barcode.h ├── cfx_barcode_unittest.cpp ├── common │ ├── BC_CommonBitMatrix.cpp │ ├── BC_CommonBitMatrix.h │ ├── BC_CommonByteMatrix.cpp │ ├── BC_CommonByteMatrix.h │ └── reedsolomon │ │ ├── BC_ReedSolomon.cpp │ │ ├── BC_ReedSolomon.h │ │ ├── BC_ReedSolomonGF256.cpp │ │ ├── BC_ReedSolomonGF256.h │ │ ├── BC_ReedSolomonGF256Poly.cpp │ │ └── BC_ReedSolomonGF256Poly.h ├── datamatrix │ ├── BC_ASCIIEncoder.cpp │ ├── BC_ASCIIEncoder.h │ ├── BC_Base256Encoder.cpp │ ├── BC_Base256Encoder.h │ ├── BC_C40Encoder.cpp │ ├── BC_C40Encoder.h │ ├── BC_DataMatrixSymbolInfo144.cpp │ ├── BC_DataMatrixSymbolInfo144.h │ ├── BC_DataMatrixWriter.cpp │ ├── BC_DataMatrixWriter.h │ ├── BC_DataMatrixWriter_unittest.cpp │ ├── BC_DefaultPlacement.cpp │ ├── BC_DefaultPlacement.h │ ├── BC_EdifactEncoder.cpp │ ├── BC_EdifactEncoder.h │ ├── BC_Encoder.cpp │ ├── BC_Encoder.h │ ├── BC_EncoderContext.cpp │ ├── BC_EncoderContext.h │ ├── BC_ErrorCorrection.cpp │ ├── BC_ErrorCorrection.h │ ├── BC_HighLevelEncoder.cpp │ ├── BC_HighLevelEncoder.h │ ├── BC_SymbolInfo.cpp │ ├── BC_SymbolInfo.h │ ├── BC_TextEncoder.cpp │ ├── BC_TextEncoder.h │ ├── BC_X12Encoder.cpp │ └── BC_X12Encoder.h ├── oned │ ├── BC_OneDimWriter.cpp │ ├── BC_OneDimWriter.h │ ├── BC_OnedCodaBarWriter.cpp │ ├── BC_OnedCodaBarWriter.h │ ├── BC_OnedCodaBarWriter_unittest.cpp │ ├── BC_OnedCode128Writer.cpp │ ├── BC_OnedCode128Writer.h │ ├── BC_OnedCode128Writer_unittest.cpp │ ├── BC_OnedCode39Writer.cpp │ ├── BC_OnedCode39Writer.h │ ├── BC_OnedCode39Writer_unittest.cpp │ ├── BC_OnedEAN13Writer.cpp │ ├── BC_OnedEAN13Writer.h │ ├── BC_OnedEAN13Writer_unittest.cpp │ ├── BC_OnedEAN8Writer.cpp │ ├── BC_OnedEAN8Writer.h │ ├── BC_OnedEAN8Writer_unittest.cpp │ ├── BC_OnedEANChecksum.cpp │ ├── BC_OnedEANChecksum.h │ ├── BC_OnedEANWriter.cpp │ ├── BC_OnedEANWriter.h │ ├── BC_OnedUPCAWriter.cpp │ ├── BC_OnedUPCAWriter.h │ └── BC_OnedUPCAWriter_unittest.cpp ├── pdf417 │ ├── BC_PDF417.cpp │ ├── BC_PDF417.h │ ├── BC_PDF417BarcodeMatrix.cpp │ ├── BC_PDF417BarcodeMatrix.h │ ├── BC_PDF417BarcodeRow.cpp │ ├── BC_PDF417BarcodeRow.h │ ├── BC_PDF417ErrorCorrection.cpp │ ├── BC_PDF417ErrorCorrection.h │ ├── BC_PDF417HighLevelEncoder.cpp │ ├── BC_PDF417HighLevelEncoder.h │ ├── BC_PDF417HighLevelEncoder_unittest.cpp │ ├── BC_PDF417Writer.cpp │ ├── BC_PDF417Writer.h │ └── BC_PDF417Writer_unittest.cpp └── qrcode │ ├── BC_QRCodeWriter.cpp │ ├── BC_QRCodeWriter.h │ ├── BC_QRCodeWriter_unittest.cpp │ ├── BC_QRCoder.cpp │ ├── BC_QRCoder.h │ ├── BC_QRCoderBitVector.cpp │ ├── BC_QRCoderBitVector.h │ ├── BC_QRCoderECBlockData.cpp │ ├── BC_QRCoderECBlockData.h │ ├── BC_QRCoderEncoder.cpp │ ├── BC_QRCoderEncoder.h │ ├── BC_QRCoderErrorCorrectionLevel.cpp │ ├── BC_QRCoderErrorCorrectionLevel.h │ ├── BC_QRCoderMaskUtil.cpp │ ├── BC_QRCoderMaskUtil.h │ ├── BC_QRCoderMatrixUtil.cpp │ ├── BC_QRCoderMatrixUtil.h │ ├── BC_QRCoderMode.cpp │ ├── BC_QRCoderMode.h │ ├── BC_QRCoderVersion.cpp │ └── BC_QRCoderVersion.h ├── fxjs ├── BUILD.gn ├── DEPS ├── README ├── cfx_globaldata.cpp ├── cfx_globaldata.h ├── cfx_globaldata_unittest.cpp ├── cfx_keyvalue.cpp ├── cfx_keyvalue.h ├── cfx_v8.cpp ├── cfx_v8.h ├── cfx_v8_array_buffer_allocator.cpp ├── cfx_v8_array_buffer_allocator.h ├── cfx_v8_unittest.cpp ├── cfxjs_engine.cpp ├── cfxjs_engine.h ├── cfxjs_engine_embeddertest.cpp ├── cfxjs_engine_unittest.cpp ├── cjs_annot.cpp ├── cjs_annot.h ├── cjs_app.cpp ├── cjs_app.h ├── cjs_border.cpp ├── cjs_border.h ├── cjs_color.cpp ├── cjs_color.h ├── cjs_console.cpp ├── cjs_console.h ├── cjs_delaydata.cpp ├── cjs_delaydata.h ├── cjs_display.cpp ├── cjs_display.h ├── cjs_document.cpp ├── cjs_document.h ├── cjs_event.cpp ├── cjs_event.h ├── cjs_event_context.cpp ├── cjs_event_context.h ├── cjs_event_context_stub.cpp ├── cjs_event_context_stub.h ├── cjs_field.cpp ├── cjs_field.h ├── cjs_font.cpp ├── cjs_font.h ├── cjs_global.cpp ├── cjs_global.h ├── cjs_globalarrays.cpp ├── cjs_globalarrays.h ├── cjs_globalconsts.cpp ├── cjs_globalconsts.h ├── cjs_highlight.cpp ├── cjs_highlight.h ├── cjs_icon.cpp ├── cjs_icon.h ├── cjs_object.cpp ├── cjs_object.h ├── cjs_position.cpp ├── cjs_position.h ├── cjs_publicmethods.cpp ├── cjs_publicmethods.h ├── cjs_publicmethods_embeddertest.cpp ├── cjs_publicmethods_unittest.cpp ├── cjs_result.cpp ├── cjs_result.h ├── cjs_runtime.cpp ├── cjs_runtime.h ├── cjs_runtimestub.cpp ├── cjs_runtimestub.h ├── cjs_scalehow.cpp ├── cjs_scalehow.h ├── cjs_scalewhen.cpp ├── cjs_scalewhen.h ├── cjs_style.cpp ├── cjs_style.h ├── cjs_timerobj.cpp ├── cjs_timerobj.h ├── cjs_util.cpp ├── cjs_util.h ├── cjs_util_unittest.cpp ├── cjs_zoomtype.cpp ├── cjs_zoomtype.h ├── fx_date_helpers.cpp ├── fx_date_helpers.h ├── fx_date_helpers_unittest.cpp ├── fxv8.cpp ├── fxv8.h ├── gc │ ├── container_trace.h │ ├── container_trace_unittest.cpp │ ├── gced_tree_node.h │ ├── gced_tree_node_mixin.h │ ├── gced_tree_node_mixin_unittest.cpp │ ├── gced_tree_node_unittest.cpp │ ├── heap.cpp │ ├── heap.h │ ├── heap_unittest.cpp │ └── move_unittest.cpp ├── global_timer.cpp ├── global_timer.h ├── ijs_event_context.h ├── ijs_runtime.cpp ├── ijs_runtime.h ├── js_define.cpp ├── js_define.h ├── js_resources.cpp ├── js_resources.h └── xfa │ ├── DEPS │ ├── cfxjse_app_embeddertest.cpp │ ├── cfxjse_class.cpp │ ├── cfxjse_class.h │ ├── cfxjse_context.cpp │ ├── cfxjse_context.h │ ├── cfxjse_engine.cpp │ ├── cfxjse_engine.h │ ├── cfxjse_formcalc_context.cpp │ ├── cfxjse_formcalc_context.h │ ├── cfxjse_formcalc_context_embeddertest.cpp │ ├── cfxjse_formcalc_context_unittest.cpp │ ├── cfxjse_isolatetracker.cpp │ ├── cfxjse_isolatetracker.h │ ├── cfxjse_mapmodule.cpp │ ├── cfxjse_mapmodule.h │ ├── cfxjse_mapmodule_unittest.cpp │ ├── cfxjse_nodehelper.cpp │ ├── cfxjse_nodehelper.h │ ├── cfxjse_resolveprocessor.cpp │ ├── cfxjse_resolveprocessor.h │ ├── cfxjse_runtimedata.cpp │ ├── cfxjse_runtimedata.h │ ├── cfxjse_value.cpp │ ├── cfxjse_value.h │ ├── cfxjse_value_embeddertest.cpp │ ├── cjx_boolean.cpp │ ├── cjx_boolean.h │ ├── cjx_container.cpp │ ├── cjx_container.h │ ├── cjx_datawindow.cpp │ ├── cjx_datawindow.h │ ├── cjx_delta.cpp │ ├── cjx_delta.h │ ├── cjx_desc.cpp │ ├── cjx_desc.h │ ├── cjx_draw.cpp │ ├── cjx_draw.h │ ├── cjx_encrypt.cpp │ ├── cjx_encrypt.h │ ├── cjx_eventpseudomodel.cpp │ ├── cjx_eventpseudomodel.h │ ├── cjx_exclgroup.cpp │ ├── cjx_exclgroup.h │ ├── cjx_extras.cpp │ ├── cjx_extras.h │ ├── cjx_field.cpp │ ├── cjx_field.h │ ├── cjx_form.cpp │ ├── cjx_form.h │ ├── cjx_handler.cpp │ ├── cjx_handler.h │ ├── cjx_hostpseudomodel.cpp │ ├── cjx_hostpseudomodel.h │ ├── cjx_hostpseudomodel_embeddertest.cpp │ ├── cjx_instancemanager.cpp │ ├── cjx_instancemanager.h │ ├── cjx_layoutpseudomodel.cpp │ ├── cjx_layoutpseudomodel.h │ ├── cjx_list.cpp │ ├── cjx_list.h │ ├── cjx_list_embeddertest.cpp │ ├── cjx_logpseudomodel.cpp │ ├── cjx_logpseudomodel.h │ ├── cjx_manifest.cpp │ ├── cjx_manifest.h │ ├── cjx_model.cpp │ ├── cjx_model.h │ ├── cjx_node.cpp │ ├── cjx_node.h │ ├── cjx_object.cpp │ ├── cjx_object.h │ ├── cjx_object_embeddertest.cpp │ ├── cjx_occur.cpp │ ├── cjx_occur.h │ ├── cjx_packet.cpp │ ├── cjx_packet.h │ ├── cjx_script.cpp │ ├── cjx_script.h │ ├── cjx_signaturepseudomodel.cpp │ ├── cjx_signaturepseudomodel.h │ ├── cjx_source.cpp │ ├── cjx_source.h │ ├── cjx_subform.cpp │ ├── cjx_subform.h │ ├── cjx_template.cpp │ ├── cjx_template.h │ ├── cjx_textnode.cpp │ ├── cjx_textnode.h │ ├── cjx_tree.cpp │ ├── cjx_tree.h │ ├── cjx_treelist.cpp │ ├── cjx_treelist.h │ ├── cjx_wsdlconnection.cpp │ ├── cjx_wsdlconnection.h │ ├── cjx_xfa.cpp │ ├── cjx_xfa.h │ ├── fxjse.cpp │ ├── fxjse.h │ └── jse_define.h ├── infra └── inclusive_language_presubmit_exempt_dirs.txt ├── navbar.md ├── pdfium.gni ├── public ├── DEPS ├── PRESUBMIT.py ├── README ├── cpp │ ├── fpdf_deleters.h │ └── fpdf_scopers.h ├── fpdf_annot.h ├── fpdf_attachment.h ├── fpdf_catalog.h ├── fpdf_dataavail.h ├── fpdf_doc.h ├── fpdf_edit.h ├── fpdf_ext.h ├── fpdf_flatten.h ├── fpdf_formfill.h ├── fpdf_fwlevent.h ├── fpdf_javascript.h ├── fpdf_ppo.h ├── fpdf_progressive.h ├── fpdf_save.h ├── fpdf_searchex.h ├── fpdf_signature.h ├── fpdf_structtree.h ├── fpdf_sysfontinfo.h ├── fpdf_text.h ├── fpdf_thumbnail.h ├── fpdf_transformpage.h └── fpdfview.h ├── samples ├── DEPS ├── simple_no_v8.c └── simple_with_v8.cc ├── skia ├── BUILD.gn ├── OWNERS ├── config │ ├── DEPS │ └── SkPdfiumUserConfig.h ├── ext │ ├── DEPS │ └── google_logging.cc └── features.gni ├── testing ├── BUILD.gn ├── DEPS ├── SUPPRESSIONS ├── SUPPRESSIONS_EXACT_MATCHING ├── SUPPRESSIONS_IMAGE_DIFF ├── __init__.py ├── allocator_shim_config.cpp ├── allocator_shim_config.h ├── chromium_support │ ├── DEPS │ ├── discardable_memory_allocator.cc │ └── discardable_memory_allocator.h ├── command_line_helpers.cpp ├── command_line_helpers.h ├── embedder_test.cpp ├── embedder_test.h ├── embedder_test_constants.cpp ├── embedder_test_constants.h ├── embedder_test_environment.cpp ├── embedder_test_environment.h ├── embedder_test_main.cpp ├── embedder_test_mock_delegate.h ├── embedder_test_timer_handling_delegate.h ├── external_engine_embedder_test.cpp ├── external_engine_embedder_test.h ├── fake_file_access.cpp ├── fake_file_access.h ├── font_renamer.cpp ├── font_renamer.h ├── free_deleter.h ├── fuzzers │ ├── BUILD.gn │ ├── DEPS │ ├── component_fuzzer_template.cc │ ├── pdf_bidi_fuzzer.cc │ ├── pdf_cfgas_stringformatter_fuzzer.cc │ ├── pdf_cfx_barcode_fuzzer.cc │ ├── pdf_cjs_util_fuzzer.cc │ ├── pdf_cmap_fuzzer.cc │ ├── pdf_codec_a85_fuzzer.cc │ ├── pdf_codec_bmp_fuzzer.cc │ ├── pdf_codec_fax_fuzzer.cc │ ├── pdf_codec_gif_fuzzer.cc │ ├── pdf_codec_icc_fuzzer.cc │ ├── pdf_codec_jbig2_fuzzer.cc │ ├── pdf_codec_jpeg_fuzzer.cc │ ├── pdf_codec_png_fuzzer.cc │ ├── pdf_codec_rle_fuzzer.cc │ ├── pdf_codec_tiff_fuzzer.cc │ ├── pdf_cpdf_tounicodemap_fuzzer.cc │ ├── pdf_css_fuzzer.cc │ ├── pdf_font_fuzzer.cc │ ├── pdf_formcalc_context_fuzzer.cc │ ├── pdf_formcalc_fuzzer.cc │ ├── pdf_formcalc_translate_fuzzer.cc │ ├── pdf_fuzzer_init.cc │ ├── pdf_fuzzer_init_public.cc │ ├── pdf_fuzzer_init_public.h │ ├── pdf_fuzzer_templates.h │ ├── pdf_fx_date_helpers_fuzzer.cc │ ├── pdf_hint_table_fuzzer.cc │ ├── pdf_jpx_fuzzer.cc │ ├── pdf_lzw_fuzzer.cc │ ├── pdf_nametree_fuzzer.cc │ ├── pdf_psengine_fuzzer.cc │ ├── pdf_scanlinecompositor_fuzzer.cc │ ├── pdf_streamparser_fuzzer.cc │ ├── pdf_xfa_fdp_fuzzer.cc │ ├── pdf_xfa_raw_fuzzer.cc │ ├── pdf_xfa_xdp_fdp_fuzzer.cc │ ├── pdf_xml_fuzzer.cc │ ├── pdfium_fuzzer.cc │ ├── pdfium_fuzzer_helper.cc │ ├── pdfium_fuzzer_helper.h │ ├── pdfium_fuzzer_util.cc │ ├── pdfium_fuzzer_util.h │ ├── pdfium_xfa_fuzzer.cc │ ├── pdfium_xfa_lpm_fuzz_stub.cc │ ├── pdfium_xfa_lpm_fuzz_stub.h │ ├── xfa_codec_fuzzer.h │ ├── xfa_process_state.cc │ └── xfa_process_state.h ├── fx_string_testhelpers.cpp ├── fx_string_testhelpers.h ├── fxgc_unittest.cpp ├── fxgc_unittest.h ├── fxv8_unittest.cpp ├── fxv8_unittest.h ├── gmock │ ├── BUILD.gn │ └── include │ │ └── gmock │ │ ├── DEPS │ │ ├── gmock-actions.h │ │ ├── gmock-generated-function-mockers.h │ │ ├── gmock-matchers.h │ │ └── gmock.h ├── gtest │ ├── BUILD.gn │ ├── empty.cc │ └── include │ │ └── gtest │ │ ├── DEPS │ │ ├── gtest-death-test.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-spi.h │ │ ├── gtest.h │ │ └── gtest_prod.h ├── gtest_mac.h ├── gtest_mac.mm ├── helpers │ ├── dump.cc │ ├── dump.h │ ├── event.cc │ ├── event.h │ ├── page_renderer.cc │ ├── page_renderer.h │ ├── win32 │ │ ├── com_factory.cc │ │ └── com_factory.h │ ├── write.cc │ └── write.h ├── image_diff │ ├── BUILD.gn │ ├── DEPS │ ├── image_diff.cpp │ ├── image_diff_png.h │ ├── image_diff_png_libpng.cpp │ └── image_diff_png_skia.cpp ├── invalid_seekable_read_stream.cpp ├── invalid_seekable_read_stream.h ├── js_embedder_test.cpp ├── js_embedder_test.h ├── pdf_test_environment.cpp ├── pdf_test_environment.h ├── pdfium_test.cc ├── pseudo_retainable.h ├── range_set.cpp ├── range_set.h ├── resources │ ├── 344775293.in │ ├── 344775293.pdf │ ├── 363015187.in │ ├── 363015187.pdf │ ├── CMYK-alpha.jpf │ ├── CMYK.jpf │ ├── RGB-alpha.jp2 │ ├── RGB.jp2 │ ├── about_blank.pdf │ ├── annot_javascript.in │ ├── annot_javascript.pdf │ ├── annotation_fileattachment.pdf │ ├── annotation_highlight_long_content.pdf │ ├── annotation_highlight_rollover_ap.in │ ├── annotation_highlight_rollover_ap.pdf │ ├── annotation_highlight_square_with_ap.pdf │ ├── annotation_ink_multiple.pdf │ ├── annotation_markup_multiline_no_ap.in │ ├── annotation_markup_multiline_no_ap.pdf │ ├── annotation_stamp_with_ap.pdf │ ├── annotiter.in │ ├── annotiter.pdf │ ├── annots.in │ ├── annots.pdf │ ├── annots_action_handling.in │ ├── annots_action_handling.pdf │ ├── bad_annots_entry.in │ ├── bad_annots_entry.pdf │ ├── bad_dict_keys.in │ ├── bad_dict_keys.pdf │ ├── bad_page_type.in │ ├── bad_page_type.pdf │ ├── bigtable_mini.in │ ├── bigtable_mini.pdf │ ├── black.pdf │ ├── bookmarks.in │ ├── bookmarks.pdf │ ├── bookmarks_circular.in │ ├── bookmarks_circular.pdf │ ├── bug_1029.pdf │ ├── bug_1055869.in │ ├── bug_1055869.pdf │ ├── bug_1058653.in │ ├── bug_1058653.pdf │ ├── bug_1124998.pdf │ ├── bug_113.in │ ├── bug_113.pdf │ ├── bug_1139.in │ ├── bug_1139.pdf │ ├── bug_1206.in │ ├── bug_1206.pdf │ ├── bug_1229106.in │ ├── bug_1229106.pdf │ ├── bug_1265.in │ ├── bug_1265.pdf │ ├── bug_1296920.in │ ├── bug_1296920.pdf │ ├── bug_1301.in │ ├── bug_1301.pdf │ ├── bug_1302355.in │ ├── bug_1302355.pdf │ ├── bug_1302455.in │ ├── bug_1302455.pdf │ ├── bug_1324189.in │ ├── bug_1324189.pdf │ ├── bug_1324503.in │ ├── bug_1324503.pdf │ ├── bug_1327884.pdf │ ├── bug_1328389.in │ ├── bug_1328389.pdf │ ├── bug_1333298.in │ ├── bug_1333298.pdf │ ├── bug_1388_2.pdf │ ├── bug_1388_cmap.fragment │ ├── bug_1388_truetype_font.fragment │ ├── bug_1396264.in │ ├── bug_1396264.pdf │ ├── bug_1399.pdf │ ├── bug_1469.jp2 │ ├── bug_1477093.in │ ├── bug_1477093.pdf │ ├── bug_1506.in │ ├── bug_1506.pdf │ ├── bug_1549.in │ ├── bug_1549.pdf │ ├── bug_1558.in │ ├── bug_1558.pdf │ ├── bug_1574.in │ ├── bug_1574.pdf │ ├── bug_1591.in │ ├── bug_1591.pdf │ ├── bug_1646.pdf │ ├── bug_1658.in │ ├── bug_1658.pdf │ ├── bug_1752_truetype_font.fragment │ ├── bug_1768.in │ ├── bug_1768.pdf │ ├── bug_1769.in │ ├── bug_1769.pdf │ ├── bug_182.pdf │ ├── bug_1893.in │ ├── bug_1893.pdf │ ├── bug_1919.pdf │ ├── bug_2034.idat │ ├── bug_2034.in │ ├── bug_2034.pdf │ ├── bug_213.pdf │ ├── bug_2132.in │ ├── bug_2132.pdf │ ├── bug_216.in │ ├── bug_216.pdf │ ├── bug_298.in │ ├── bug_298.pdf │ ├── bug_306123.in │ ├── bug_306123.pdf │ ├── bug_325_a.pdf │ ├── bug_325_b.pdf │ ├── bug_343.pdf │ ├── bug_343075986.in │ ├── bug_343075986.pdf │ ├── bug_344.pdf │ ├── bug_355.pdf │ ├── bug_360.pdf │ ├── bug_378120423.in │ ├── bug_378120423.pdf │ ├── bug_384770169.in │ ├── bug_384770169.pdf │ ├── bug_399689604.in │ ├── bug_399689604.pdf │ ├── bug_402562387.in │ ├── bug_402562387.pdf │ ├── bug_420508260.in │ ├── bug_420508260.pdf │ ├── bug_42270471.in │ ├── bug_42270471.pdf │ ├── bug_42271133.in │ ├── bug_42271133.pdf │ ├── bug_424613308.pdf │ ├── bug_425244539.in │ ├── bug_425244539.pdf │ ├── bug_431824298.in │ ├── bug_431824298.pdf │ ├── bug_451265.in │ ├── bug_451265.pdf │ ├── bug_451830.pdf │ ├── bug_452455.in │ ├── bug_452455.pdf │ ├── bug_454695.in │ ├── bug_454695.pdf │ ├── bug_455199.pdf │ ├── bug_459580.in │ ├── bug_459580.pdf │ ├── bug_481363.in │ ├── bug_481363.pdf │ ├── bug_487928.in │ ├── bug_487928.pdf │ ├── bug_507316.in │ ├── bug_507316.pdf │ ├── bug_544880.in │ ├── bug_544880.pdf │ ├── bug_547706.in │ ├── bug_547706.pdf │ ├── bug_551248.in │ ├── bug_551248.pdf │ ├── bug_551460.pdf │ ├── bug_552046.in │ ├── bug_552046.pdf │ ├── bug_555784.in │ ├── bug_555784.pdf │ ├── bug_57.in │ ├── bug_57.pdf │ ├── bug_572871.in │ ├── bug_572871.pdf │ ├── bug_583.pdf │ ├── bug_601362.pdf │ ├── bug_602650.pdf │ ├── bug_620428.in │ ├── bug_620428.pdf │ ├── bug_631912.pdf │ ├── bug_634394.in │ ├── bug_634394.pdf │ ├── bug_634716.in │ ├── bug_634716.pdf │ ├── bug_642.in │ ├── bug_642.pdf │ ├── bug_644.in │ ├── bug_644.pdf │ ├── bug_650.pdf │ ├── bug_664284.in │ ├── bug_664284.pdf │ ├── bug_674771.in │ ├── bug_674771.pdf │ ├── bug_679649.in │ ├── bug_679649.pdf │ ├── bug_680376.in │ ├── bug_680376.pdf │ ├── bug_707673.pdf │ ├── bug_709793.in │ ├── bug_709793.pdf │ ├── bug_713197.in │ ├── bug_713197.pdf │ ├── bug_717.pdf │ ├── bug_750568.in │ ├── bug_750568.pdf │ ├── bug_757705.pdf │ ├── bug_765384.in │ ├── bug_765384.pdf │ ├── bug_773229.pdf │ ├── bug_779.in │ ├── bug_779.pdf │ ├── bug_781804.pdf │ ├── bug_782596.pdf │ ├── bug_821454.in │ ├── bug_821454.pdf │ ├── bug_828049.pdf │ ├── bug_861842.in │ ├── bug_861842.pdf │ ├── bug_889099.in │ ├── bug_889099.pdf │ ├── bug_890322.in │ ├── bug_890322.pdf │ ├── bug_896366.in │ ├── bug_896366.pdf │ ├── bug_900552.in │ ├── bug_900552.pdf │ ├── bug_901654.in │ ├── bug_901654.pdf │ ├── bug_901654_2.in │ ├── bug_901654_2.pdf │ ├── bug_905142.in │ ├── bug_905142.pdf │ ├── bug_921.in │ ├── bug_921.pdf │ ├── bug_925981.in │ ├── bug_925981.pdf │ ├── bug_972518.in │ ├── bug_972518.pdf │ ├── bug_xrefv4_loop.pdf │ ├── calculate.in │ ├── calculate.pdf │ ├── circular_viewer_ref.in │ ├── circular_viewer_ref.pdf │ ├── click_form.in │ ├── click_form.pdf │ ├── clip_path.in │ ├── clip_path.pdf │ ├── combobox_form.in │ ├── combobox_form.pdf │ ├── control_characters.in │ ├── control_characters.pdf │ ├── cropped_no_overlap.in │ ├── cropped_no_overlap.pdf │ ├── cropped_text.in │ ├── cropped_text.pdf │ ├── dashed_lines.in │ ├── dashed_lines.pdf │ ├── docmdp.in │ ├── docmdp.pdf │ ├── document_aactions.in │ ├── document_aactions.pdf │ ├── embedded_attachments.pdf │ ├── embedded_attachments_invalid_data.in │ ├── embedded_attachments_invalid_data.pdf │ ├── embedded_attachments_invalid_types.in │ ├── embedded_attachments_invalid_types.pdf │ ├── embedded_images.pdf │ ├── empty_xref.pdf │ ├── encrypted.pdf │ ├── encrypted_hello_world_r2.pdf │ ├── encrypted_hello_world_r2_bad_okey.pdf │ ├── encrypted_hello_world_r3.pdf │ ├── encrypted_hello_world_r3_bad_okey.pdf │ ├── encrypted_hello_world_r5.pdf │ ├── encrypted_hello_world_r6.pdf │ ├── feature_linearized_loading.pdf │ ├── find_text_consecutive.in │ ├── find_text_consecutive.pdf │ ├── font_matrix.in │ ├── font_matrix.pdf │ ├── font_tests │ │ └── name_windows.ttf │ ├── font_weight.in │ ├── font_weight.pdf │ ├── fonts │ │ ├── ahem │ │ │ └── Ahem.ttf │ │ ├── bug_2094.ttf │ │ ├── bug_377948405.ttf │ │ └── symbolneu │ │ │ └── SymbolNeu.ttf │ ├── form_object.in │ ├── form_object.pdf │ ├── form_object_with_image.in │ ├── form_object_with_image.pdf │ ├── form_object_with_path.in │ ├── form_object_with_path.pdf │ ├── form_object_with_text.in │ ├── form_object_with_text.pdf │ ├── freetext_annotation_without_da.pdf │ ├── get_page_aaction.in │ ├── get_page_aaction.pdf │ ├── goto_action.in │ ├── goto_action.pdf │ ├── gotoe_action.in │ ├── gotoe_action.pdf │ ├── gray-alpha.jp2 │ ├── gray.jp2 │ ├── hebrew_mirrored.in │ ├── hebrew_mirrored.pdf │ ├── hello_world.in │ ├── hello_world.pdf │ ├── hello_world_2_pages.in │ ├── hello_world_2_pages.pdf │ ├── hello_world_2_pages_custom_object.in │ ├── hello_world_2_pages_custom_object.pdf │ ├── hello_world_2_pages_shared_resources_dict.in │ ├── hello_world_2_pages_shared_resources_dict.pdf │ ├── hello_world_2_pages_split_streams.in │ ├── hello_world_2_pages_split_streams.pdf │ ├── hello_world_compressed_stream.pdf │ ├── hello_world_split_streams.in │ ├── hello_world_split_streams.pdf │ ├── hint_table_102p.bin │ ├── ink_annot.in │ ├── ink_annot.pdf │ ├── javascript │ │ ├── annot_properties.in │ │ ├── annot_properties_expected.txt │ │ ├── app_methods.in │ │ ├── app_methods_expected.txt │ │ ├── app_properties.in │ │ ├── app_properties_expected.txt │ │ ├── apply.in │ │ ├── apply_expected.txt │ │ ├── array_buffer.in │ │ ├── array_buffer_expected.txt │ │ ├── bug_1098213.in │ │ ├── bug_1098213_expected.txt │ │ ├── bug_1142688.in │ │ ├── bug_1142688_expected.txt │ │ ├── bug_1314658.in │ │ ├── bug_1314658_expected.txt │ │ ├── bug_1335681.in │ │ ├── bug_1335681_expected.txt │ │ ├── bug_1358075.in │ │ ├── bug_1358075_expected.txt │ │ ├── bug_1445426.evt │ │ ├── bug_1445426.in │ │ ├── bug_1447268.evt │ │ ├── bug_1447268.in │ │ ├── bug_1447268_expected.txt │ │ ├── bug_361.in │ │ ├── bug_361_expected.txt │ │ ├── bug_421304870.in │ │ ├── bug_421304870_expected.txt │ │ ├── bug_492_1.in │ │ ├── bug_492_1_expected.txt │ │ ├── bug_494057.in │ │ ├── bug_494057_expected.txt │ │ ├── bug_679642.in │ │ ├── bug_679642_expected.txt │ │ ├── bug_695826.in │ │ ├── bug_695826_expected.txt │ │ ├── bug_735912.in │ │ ├── bug_735912_expected.txt │ │ ├── bug_740166.in │ │ ├── bug_740166_expected.txt │ │ ├── bug_895152.in │ │ ├── bug_895152_expected.txt │ │ ├── bug_959274_1.in │ │ ├── bug_959274_1_expected.txt │ │ ├── bug_983867.in │ │ ├── bug_983867_expected.txt │ │ ├── color_methods.in │ │ ├── color_methods_expected.txt │ │ ├── color_properties.in │ │ ├── color_properties_expected.txt │ │ ├── console_methods.in │ │ ├── console_methods_expected.txt │ │ ├── constructor.in │ │ ├── constructor.js │ │ ├── constructor_expected.txt │ │ ├── consts.in │ │ ├── consts_expected.txt │ │ ├── document_methods.in │ │ ├── document_methods_expected.txt │ │ ├── document_properties.in │ │ ├── document_properties_expected.txt │ │ ├── event_properties.in │ │ ├── event_properties_expected.txt │ │ ├── expect.js │ │ ├── field.fragment │ │ ├── field_methods.in │ │ ├── field_methods_expected.txt │ │ ├── field_properties.in │ │ ├── field_properties_expected.txt │ │ ├── foreground_task.in │ │ ├── foreground_task_expected.txt │ │ ├── globals.in │ │ ├── globals_expected.txt │ │ ├── icons.in │ │ ├── icons_expected.txt │ │ ├── immutable_proto.in │ │ ├── immutable_proto_expected.txt │ │ ├── listbox_methods.in │ │ ├── listbox_methods_expected.txt │ │ ├── mouse_events.evt │ │ ├── mouse_events.in │ │ ├── mouse_events_expected.txt │ │ ├── named_action.in │ │ ├── named_action_expected.txt │ │ ├── property_test_helpers.js │ │ ├── public_methods.evt │ │ ├── public_methods.in │ │ ├── public_methods_expected.txt │ │ ├── unsupported.in │ │ ├── unsupported_expected.txt │ │ ├── util_bytetochar.in │ │ ├── util_bytetochar_expected.txt │ │ ├── util_printd.in │ │ ├── util_printd_expected.txt │ │ ├── util_printx.in │ │ ├── util_printx_expected.txt │ │ ├── util_scand.in │ │ ├── util_scand_expected.txt │ │ ├── v8_features.in │ │ ├── v8_features_expected.txt │ │ └── xfa_specific │ │ │ ├── bug_1004106.in │ │ │ ├── bug_1017494.evt │ │ │ ├── bug_1017494.in │ │ │ ├── bug_1026991.evt │ │ │ ├── bug_1026991.in │ │ │ ├── bug_1039629.evt │ │ │ ├── bug_1039629.in │ │ │ ├── bug_1040329.in │ │ │ ├── bug_1042915.evt │ │ │ ├── bug_1042915.pdf │ │ │ ├── bug_1042915_expected.txt │ │ │ ├── bug_1042956.pdf │ │ │ ├── bug_1043508.in │ │ │ ├── bug_1043510.evt │ │ │ ├── bug_1043510.pdf │ │ │ ├── bug_1047914.evt │ │ │ ├── bug_1047914.in │ │ │ ├── bug_1052651.evt │ │ │ ├── bug_1052651.in │ │ │ ├── bug_1052786.in │ │ │ ├── bug_1053617.in │ │ │ ├── bug_1054429.evt │ │ │ ├── bug_1054429.in │ │ │ ├── bug_1060549.evt │ │ │ ├── bug_1060549.in │ │ │ ├── bug_1069700.evt │ │ │ ├── bug_1069700.in │ │ │ ├── bug_1069789.evt │ │ │ ├── bug_1069789.in │ │ │ ├── bug_1082597.in │ │ │ ├── bug_1082597_expected.txt │ │ │ ├── bug_1109108.evt │ │ │ ├── bug_1109108.in │ │ │ ├── bug_1109108_expected.txt │ │ │ ├── bug_1137668.evt │ │ │ ├── bug_1137668.in │ │ │ ├── bug_1164158.in │ │ │ ├── bug_1238_2.pdf │ │ │ ├── bug_1238_2_expected.txt │ │ │ ├── bug_1248901.in │ │ │ ├── bug_1248901_expected.txt │ │ │ ├── bug_1312736.in │ │ │ ├── bug_1312736_expected.txt │ │ │ ├── bug_1444238.evt │ │ │ ├── bug_1444238.in │ │ │ ├── bug_976753.evt │ │ │ ├── bug_976753.in │ │ │ ├── bug_980116.evt │ │ │ ├── bug_980116.in │ │ │ ├── bug_980161.evt │ │ │ ├── bug_980161.in │ │ │ ├── bug_985781.in │ │ │ ├── bug_985781_expected.txt │ │ │ ├── bug_991899.in │ │ │ ├── bug_991899_expected.txt │ │ │ ├── bug_993771.in │ │ │ ├── bug_993771_expected.txt │ │ │ ├── bug_995712.evt │ │ │ ├── bug_995712.in │ │ │ ├── bug_995712_expected.txt │ │ │ ├── bug_996123.in │ │ │ ├── bug_997021.in │ │ │ ├── bug_997021_expected.txt │ │ │ ├── cross_engine_apply.in │ │ │ ├── cross_engine_apply_expected.txt │ │ │ ├── dump_tree.js │ │ │ ├── instance_manager.in │ │ │ ├── instance_manager_expected.txt │ │ │ ├── list_methods.in │ │ │ ├── list_methods_expected.txt │ │ │ ├── mixed_widgets.evt │ │ │ ├── mixed_widgets.in │ │ │ ├── popup_menu.evt │ │ │ ├── popup_menu.in │ │ │ ├── popup_menu_expected.txt │ │ │ ├── resolve_nodes_1.evt │ │ │ ├── resolve_nodes_1.pdf │ │ │ ├── resolve_nodes_1_expected.txt │ │ │ ├── resolve_nodes_2.evt │ │ │ ├── resolve_nodes_2.pdf │ │ │ ├── resolve_nodes_2_expected.txt │ │ │ ├── xfa_container.in │ │ │ ├── xfa_container_expected.txt │ │ │ ├── xfa_datawindow_pseudomodel.in │ │ │ ├── xfa_datawindow_pseudomodel_expected.txt │ │ │ ├── xfa_event_pseudomodel.in │ │ │ ├── xfa_event_pseudomodel_expected.txt │ │ │ ├── xfa_exclgroup.in │ │ │ ├── xfa_exclgroup_expected.txt │ │ │ ├── xfa_field.in │ │ │ ├── xfa_field_expected.txt │ │ │ ├── xfa_form.in │ │ │ ├── xfa_form_expected.txt │ │ │ ├── xfa_globalobject.in │ │ │ ├── xfa_globalobject_expected.txt │ │ │ ├── xfa_host_pseudomodel.in │ │ │ ├── xfa_host_pseudomodel_expected.txt │ │ │ ├── xfa_items.in │ │ │ ├── xfa_items_expected.txt │ │ │ ├── xfa_layout_pseudomodel.in │ │ │ ├── xfa_layout_pseudomodel_expected.txt │ │ │ ├── xfa_log_pseudomodel.in │ │ │ ├── xfa_log_pseudomodel_expected.txt │ │ │ ├── xfa_model.in │ │ │ ├── xfa_model_expected.txt │ │ │ ├── xfa_node.in │ │ │ ├── xfa_node_expected.txt │ │ │ ├── xfa_signature_pseudomodel.in │ │ │ ├── xfa_signature_pseudomodel_expected.txt │ │ │ ├── xfa_subform.in │ │ │ ├── xfa_subform_expected.txt │ │ │ ├── xfa_template.in │ │ │ ├── xfa_template_expected.txt │ │ │ ├── xfa_tree.in │ │ │ ├── xfa_tree_expected.txt │ │ │ ├── xfa_variables.in │ │ │ └── xfa_variables_expected.txt │ ├── jpx_lzw.in │ ├── jpx_lzw.pdf │ ├── js.in │ ├── js.pdf │ ├── latin_extended.pdf │ ├── launch_action.in │ ├── launch_action.pdf │ ├── line_annot.in │ ├── line_annot.pdf │ ├── linearized.pdf │ ├── linearized_bug_1055.pdf │ ├── links_highlights_annots.in │ ├── links_highlights_annots.pdf │ ├── listbox_form.in │ ├── listbox_form.pdf │ ├── many_rectangles.in │ ├── many_rectangles.pdf │ ├── marked_content_id.in │ ├── marked_content_id.pdf │ ├── matte.in │ ├── matte.pdf │ ├── mona_lisa.fragment │ ├── mona_lisa.jpg │ ├── multiple_form_types.in │ ├── multiple_form_types.pdf │ ├── multiple_graphics_states.in │ ├── multiple_graphics_states.pdf │ ├── named_dests.in │ ├── named_dests.pdf │ ├── named_dests_old_style.in │ ├── named_dests_old_style.pdf │ ├── no_page_count.in │ ├── no_page_count.pdf │ ├── non_hex_file_id.in │ ├── non_hex_file_id.pdf │ ├── nonesuch_action.in │ ├── nonesuch_action.pdf │ ├── page_labels.pdf │ ├── page_tree_empty_node.in │ ├── page_tree_empty_node.pdf │ ├── parser_rebuildxref_correct.pdf │ ├── parser_rebuildxref_error_notrailer.pdf │ ├── pixel │ │ ├── axial_shading_point_at_border_no_extend.in │ │ ├── axial_shading_point_at_border_no_extend_expected.pdf.0.png │ │ ├── axial_shading_point_at_border_no_extend_expected_skia.pdf.0.png │ │ ├── bug_1012369.in │ │ ├── bug_1012369_expected.pdf.0.png │ │ ├── bug_1015233.in │ │ ├── bug_1015233_expected.pdf.0.png │ │ ├── bug_1015233_expected_skia.pdf.0.png │ │ ├── bug_1021762.in │ │ ├── bug_1021762_expected.pdf.0.png │ │ ├── bug_1021762_expected_skia_linux.pdf.0.png │ │ ├── bug_1021762_expected_skia_win.pdf.0.png │ │ ├── bug_1072440.in │ │ ├── bug_1072440_expected.pdf.0.png │ │ ├── bug_1072440_expected_mac.pdf.0.png │ │ ├── bug_1072440_expected_skia.pdf.0.png │ │ ├── bug_1072440_expected_skia_mac.pdf.0.png │ │ ├── bug_1072440_expected_skia_win.pdf.0.png │ │ ├── bug_1087.pdf │ │ ├── bug_1087_expected.pdf.0.png │ │ ├── bug_1099446.in │ │ ├── bug_1099446_expected.pdf.0.png │ │ ├── bug_1116869.in │ │ ├── bug_1116869_expected.pdf.0.png │ │ ├── bug_1128284.in │ │ ├── bug_1128284_expected.pdf.0.png │ │ ├── bug_113910.evt │ │ ├── bug_113910.in │ │ ├── bug_113910_expected.pdf.0.png │ │ ├── bug_113910_expected_mac.pdf.0.png │ │ ├── bug_113910_expected_skia.pdf.0.png │ │ ├── bug_113910_expected_skia_mac.pdf.0.png │ │ ├── bug_113910_expected_skia_win.pdf.0.png │ │ ├── bug_1161.in │ │ ├── bug_1161_expected.pdf.0.png │ │ ├── bug_1161_expected_skia.pdf.0.png │ │ ├── bug_1236.in │ │ ├── bug_1236805.in │ │ ├── bug_1236805_expected.pdf.0.png │ │ ├── bug_1236_expected.pdf.0.png │ │ ├── bug_1236_expected_skia.pdf.0.png │ │ ├── bug_1237898.in │ │ ├── bug_1237898_expected.pdf.0.png │ │ ├── bug_1241587.in │ │ ├── bug_1241587_expected.pdf.0.png │ │ ├── bug_1258634.in │ │ ├── bug_1258634_expected.pdf.0.png │ │ ├── bug_1258968.in │ │ ├── bug_1258968_expected.pdf.0.png │ │ ├── bug_1258968_expected_skia.pdf.0.png │ │ ├── bug_1271578.in │ │ ├── bug_1271578_expected.pdf.0.png │ │ ├── bug_1271578_expected_agg_mac.pdf.0.png │ │ ├── bug_1271578_expected_skia.pdf.0.png │ │ ├── bug_1271578_expected_skia_mac.pdf.0.png │ │ ├── bug_1271578_expected_skia_win.pdf.0.png │ │ ├── bug_1283.in │ │ ├── bug_1283_expected.pdf.0.png │ │ ├── bug_1286.in │ │ ├── bug_1286_expected.pdf.0.png │ │ ├── bug_1286_expected_gdi.pdf.0.png │ │ ├── bug_1286_expected_skia.pdf.0.png │ │ ├── bug_1287409.pdf │ │ ├── bug_1287409_expected.pdf.0.png │ │ ├── bug_1287409_expected_gdi.pdf.0.png │ │ ├── bug_1287409_expected_skia.pdf.0.png │ │ ├── bug_1288_1.in │ │ ├── bug_1288_1_expected.pdf.0.png │ │ ├── bug_1288_1_expected_skia.pdf.0.png │ │ ├── bug_1288_2.in │ │ ├── bug_1288_2_expected.pdf.0.png │ │ ├── bug_1288_2_expected_gdi.pdf.0.png │ │ ├── bug_1288_2_expected_skia.pdf.0.png │ │ ├── bug_1294.in │ │ ├── bug_1294_expected.pdf.0.png │ │ ├── bug_1296.in │ │ ├── bug_1296_expected.pdf.0.png │ │ ├── bug_1296_expected_gdi.pdf.0.png │ │ ├── bug_1296_expected_skia.pdf.0.png │ │ ├── bug_1304714.in │ │ ├── bug_1304714_expected.pdf.0.png │ │ ├── bug_1308.pdf │ │ ├── bug_1308_1.in │ │ ├── bug_1308_1_expected.pdf.0.png │ │ ├── bug_1308_1_expected_skia_linux.pdf.0.png │ │ ├── bug_1308_1_expected_skia_win.pdf.0.png │ │ ├── bug_1308_expected.pdf.0.png │ │ ├── bug_1308_expected_skia_linux.pdf.0.png │ │ ├── bug_1308_expected_skia_win.pdf.0.png │ │ ├── bug_1314.in │ │ ├── bug_1314_expected.pdf.0.png │ │ ├── bug_1314_expected.pdf.1.png │ │ ├── bug_1314_expected.pdf.2.png │ │ ├── bug_1321.in │ │ ├── bug_1321_expected.pdf.0.png │ │ ├── bug_1330.in │ │ ├── bug_1330_expected.pdf.0.png │ │ ├── bug_1330_expected_skia.pdf.0.png │ │ ├── bug_1338.in │ │ ├── bug_1338_expected.pdf.0.png │ │ ├── bug_1338_expected_gdi.pdf.0.png │ │ ├── bug_1338_expected_skia.pdf.0.png │ │ ├── bug_1355.in │ │ ├── bug_1355_expected.pdf.0.png │ │ ├── bug_1355_expected_skia.pdf.0.png │ │ ├── bug_1355_expected_skia_mac.pdf.0.png │ │ ├── bug_1355_expected_skia_win.pdf.0.png │ │ ├── bug_1372651.evt │ │ ├── bug_1372651.in │ │ ├── bug_1372651_expected.pdf.0.png │ │ ├── bug_1372651_expected_mac.pdf.0.png │ │ ├── bug_1372651_expected_skia.pdf.0.png │ │ ├── bug_1372651_expected_skia_mac.pdf.0.png │ │ ├── bug_1372651_expected_skia_win.pdf.0.png │ │ ├── bug_1374.in │ │ ├── bug_1374_expected.pdf.0.png │ │ ├── bug_1383708.in │ │ ├── bug_1383708_expected.pdf.0.png │ │ ├── bug_1383708_expected_skia.pdf.0.png │ │ ├── bug_1388.in │ │ ├── bug_1388_2.in │ │ ├── bug_1388_2_expected.pdf.0.png │ │ ├── bug_1388_2_expected_agg_mac.pdf.0.png │ │ ├── bug_1388_2_expected_skia.pdf.0.png │ │ ├── bug_1388_2_expected_skia_mac.pdf.0.png │ │ ├── bug_1388_2_expected_skia_win.pdf.0.png │ │ ├── bug_1388_3.in │ │ ├── bug_1388_3_expected.pdf.0.png │ │ ├── bug_1388_3_expected_agg_mac.pdf.0.png │ │ ├── bug_1388_3_expected_skia.pdf.0.png │ │ ├── bug_1388_3_expected_skia_mac.pdf.0.png │ │ ├── bug_1388_3_expected_skia_win.pdf.0.png │ │ ├── bug_1388_expected.pdf.0.png │ │ ├── bug_1388_expected_gdi.pdf.0.png │ │ ├── bug_1388_expected_skia.pdf.0.png │ │ ├── bug_1395648.in │ │ ├── bug_1395648_expected.pdf.0.png │ │ ├── bug_1395648_expected_skia.pdf.0.png │ │ ├── bug_1396266.in │ │ ├── bug_1396266_expected.pdf.0.png │ │ ├── bug_1396266_expected_skia.pdf.0.png │ │ ├── bug_1402.in │ │ ├── bug_1402_expected.pdf.0.png │ │ ├── bug_1402_expected_skia.pdf.0.png │ │ ├── bug_1402_expected_skia_mac.pdf.0.png │ │ ├── bug_1402_expected_skia_win.pdf.0.png │ │ ├── bug_1430333.in │ │ ├── bug_1430333_expected.pdf.0.png │ │ ├── bug_1430333_expected_skia.pdf.0.png │ │ ├── bug_1442723.in │ │ ├── bug_1442723_expected.pdf.0.png │ │ ├── bug_1442723_expected_agg_mac.pdf.0.png │ │ ├── bug_1442723_expected_skia.pdf.0.png │ │ ├── bug_1442723_expected_skia_mac.pdf.0.png │ │ ├── bug_1469.in │ │ ├── bug_1469_expected.pdf.0.png │ │ ├── bug_1478366.in │ │ ├── bug_1478366_expected.pdf.0.png │ │ ├── bug_1478366_expected_skia.pdf.0.png │ │ ├── bug_1479436.in │ │ ├── bug_1479436_expected.pdf.0.png │ │ ├── bug_1484283.pdf │ │ ├── bug_1484283_expected.pdf.0.png │ │ ├── bug_1484283_expected_gdi.pdf.0.png │ │ ├── bug_1484283_expected_skia.pdf.0.png │ │ ├── bug_1491.in │ │ ├── bug_1491_expected.pdf.0.png │ │ ├── bug_1491_expected_gdi.pdf.0.png │ │ ├── bug_1491_expected_skia.pdf.0.png │ │ ├── bug_1546.in │ │ ├── bug_1546_expected.pdf.0.png │ │ ├── bug_1638.in │ │ ├── bug_1638_expected.pdf.0.png │ │ ├── bug_1638_expected_gdi.pdf.0.png │ │ ├── bug_1638_expected_skia.pdf.0.png │ │ ├── bug_1639_1.in │ │ ├── bug_1639_1_expected.pdf.0.png │ │ ├── bug_1639_1_expected_gdi.pdf.0.png │ │ ├── bug_1639_1_expected_skia.pdf.0.png │ │ ├── bug_1693.in │ │ ├── bug_1693_expected.pdf.0.png │ │ ├── bug_1733.in │ │ ├── bug_1733_expected.pdf.0.png │ │ ├── bug_1733_expected.pdf.1.png │ │ ├── bug_1746.in │ │ ├── bug_1746_expected.pdf.0.png │ │ ├── bug_1746_expected_skia.pdf.0.png │ │ ├── bug_1746_expected_skia_mac.pdf.0.png │ │ ├── bug_1750.in │ │ ├── bug_1750_expected.pdf.0.png │ │ ├── bug_1752.in │ │ ├── bug_1752_expected.pdf.0.png │ │ ├── bug_1752_expected_gdi.pdf.0.png │ │ ├── bug_1752_expected_mac.pdf.0.png │ │ ├── bug_1752_expected_skia.pdf.0.png │ │ ├── bug_1752_expected_skia_mac.pdf.0.png │ │ ├── bug_1752_expected_skia_win.pdf.0.png │ │ ├── bug_1772.in │ │ ├── bug_1772_expected.pdf.0.png │ │ ├── bug_1772_expected_gdi.pdf.0.png │ │ ├── bug_1772_expected_skia.pdf.0.png │ │ ├── bug_1774.in │ │ ├── bug_1774_expected.pdf.0.png │ │ ├── bug_1774_expected_gdi.pdf.0.png │ │ ├── bug_1774_expected_skia.pdf.0.png │ │ ├── bug_1822.in │ │ ├── bug_1822_expected.pdf.0.png │ │ ├── bug_1822_expected_skia.pdf.0.png │ │ ├── bug_1845.in │ │ ├── bug_1845_expected.pdf.0.png │ │ ├── bug_1847.in │ │ ├── bug_1847_expected.pdf.0.png │ │ ├── bug_1847_expected_skia.pdf.0.png │ │ ├── bug_1883.in │ │ ├── bug_1883_expected.pdf.0.png │ │ ├── bug_1883_expected.pdf.1.png │ │ ├── bug_1883_expected.pdf.2.png │ │ ├── bug_1883_expected.pdf.3.png │ │ ├── bug_1883_expected_gdi.pdf.0.png │ │ ├── bug_1883_expected_gdi.pdf.1.png │ │ ├── bug_1883_expected_gdi.pdf.2.png │ │ ├── bug_1883_expected_gdi.pdf.3.png │ │ ├── bug_1883_expected_skia.pdf.0.png │ │ ├── bug_1883_expected_skia.pdf.1.png │ │ ├── bug_1883_expected_skia.pdf.2.png │ │ ├── bug_1883_expected_skia.pdf.3.png │ │ ├── bug_1922.in │ │ ├── bug_1922_expected.pdf.0.png │ │ ├── bug_1922_expected_agg_mac.pdf.0.png │ │ ├── bug_1922_expected_skia.pdf.0.png │ │ ├── bug_1922_expected_skia_mac.pdf.0.png │ │ ├── bug_1922_expected_skia_win.pdf.0.png │ │ ├── bug_1949.in │ │ ├── bug_1949_expected.pdf.0.png │ │ ├── bug_1949_expected_skia.pdf.0.png │ │ ├── bug_1963.in │ │ ├── bug_1963_expected.pdf.0.png │ │ ├── bug_1963_expected_gdi.pdf.0.png │ │ ├── bug_1963_expected_skia.pdf.0.png │ │ ├── bug_1966.in │ │ ├── bug_1966_expected.pdf.0.png │ │ ├── bug_1966_expected_gdi_skia.pdf.0.png │ │ ├── bug_1966_expected_skia.pdf.0.png │ │ ├── bug_1976.in │ │ ├── bug_1976_expected.pdf.0.png │ │ ├── bug_1983.in │ │ ├── bug_1983_expected.pdf.0.png │ │ ├── bug_1983_expected_gdi.pdf.0.png │ │ ├── bug_1983_expected_skia.pdf.0.png │ │ ├── bug_1986.in │ │ ├── bug_1986_expected.pdf.0.png │ │ ├── bug_1995.in │ │ ├── bug_1995_expected.pdf.0.png │ │ ├── bug_1995_expected_skia.pdf.0.png │ │ ├── bug_2106.in │ │ ├── bug_2106_expected.pdf.0.png │ │ ├── bug_2106_expected_gdi_skia.pdf.0.png │ │ ├── bug_2106_expected_skia.pdf.0.png │ │ ├── bug_2122.pdf │ │ ├── bug_2122_expected.pdf.0.png │ │ ├── bug_2122_expected_gdi.pdf.0.png │ │ ├── bug_2122_expected_skia.pdf.0.png │ │ ├── bug_2123.pdf │ │ ├── bug_2123_expected.pdf.0.png │ │ ├── bug_2123_expected_gdi.pdf.0.png │ │ ├── bug_2123_expected_skia.pdf.0.png │ │ ├── bug_2152.pdf │ │ ├── bug_2152_expected.pdf.0.png │ │ ├── bug_2152_expected_gdi.pdf.0.png │ │ ├── bug_2152_expected_skia.pdf.0.png │ │ ├── bug_304.pdf │ │ ├── bug_304_expected.pdf.0.png │ │ ├── bug_332462378.pdf │ │ ├── bug_332462378_expected.pdf.0.png │ │ ├── bug_332462378_expected_gdi.pdf.0.png │ │ ├── bug_332462378_expected_skia.pdf.0.png │ │ ├── bug_335309995.pdf │ │ ├── bug_335309995_expected.pdf.0.png │ │ ├── bug_335309995_expected_gdi.pdf.0.png │ │ ├── bug_335309995_expected_skia.pdf.0.png │ │ ├── bug_345274934.pdf │ │ ├── bug_345274934_expected.pdf.0.png │ │ ├── bug_345274934_expected_gdi.pdf.0.png │ │ ├── bug_345274934_expected_skia.pdf.0.png │ │ ├── bug_346598551.in │ │ ├── bug_346598551_expected.pdf.0.png │ │ ├── bug_346598551_expected_gdi_skia.pdf.0.png │ │ ├── bug_346598551_expected_skia.pdf.0.png │ │ ├── bug_346766787.in │ │ ├── bug_346766787_expected.pdf.0.png │ │ ├── bug_349972030.pdf │ │ ├── bug_349972030_expected.pdf.0.png │ │ ├── bug_349972030_expected_gdi.pdf.0.png │ │ ├── bug_349972030_expected_skia.pdf.0.png │ │ ├── bug_358039783.in │ │ ├── bug_358039783_expected.pdf.0.png │ │ ├── bug_358039783_expected_agg_mac.pdf.0.png │ │ ├── bug_358039783_expected_skia.pdf.0.png │ │ ├── bug_358039783_expected_skia_mac.pdf.0.png │ │ ├── bug_358039783_expected_skia_win.pdf.0.png │ │ ├── bug_372749732.in │ │ ├── bug_372749732_expected.pdf.0.png │ │ ├── bug_394767650.in │ │ ├── bug_394767650_expected.pdf.0.png │ │ ├── bug_40040570.in │ │ ├── bug_40040570_expected.pdf.0.png │ │ ├── bug_40040570_expected_gdi.pdf.0.png │ │ ├── bug_40643646.evt │ │ ├── bug_40643646.in │ │ ├── bug_40643646_expected.pdf.0.png │ │ ├── bug_40643646_expected_mac.pdf.0.png │ │ ├── bug_40643646_expected_skia.pdf.0.png │ │ ├── bug_40643646_expected_skia_mac.pdf.0.png │ │ ├── bug_40721524.in │ │ ├── bug_40721524_expected.pdf.0.png │ │ ├── bug_40860237.in │ │ ├── bug_40860237_expected.pdf.0.png │ │ ├── bug_40860237_expected_skia.pdf.0.png │ │ ├── bug_40860237_expected_skia_mac.pdf.0.png │ │ ├── bug_41010502_1.in │ │ ├── bug_41010502_1_expected.pdf.0.png │ │ ├── bug_41010502_1_expected_skia.pdf.0.png │ │ ├── bug_41010502_2.in │ │ ├── bug_41010502_2_expected.pdf.0.png │ │ ├── bug_41153500.in │ │ ├── bug_41153500_expected.pdf.0.png │ │ ├── bug_41153500_expected_skia.pdf.0.png │ │ ├── bug_412524377.in │ │ ├── bug_412524377_expected.pdf.0.png │ │ ├── bug_412524377_expected.pdf.1.png │ │ ├── bug_41470360.in │ │ ├── bug_41470360_expected.pdf.0.png │ │ ├── bug_41470360_expected_gdi.pdf.0.png │ │ ├── bug_42270333.in │ │ ├── bug_42270333_expected.pdf.0.png │ │ ├── bug_42270459.in │ │ ├── bug_42270459_expected.pdf.0.png │ │ ├── bug_42270524.in │ │ ├── bug_42270524_expected.pdf.0.png │ │ ├── bug_42270577.in │ │ ├── bug_42270577_expected.pdf.0.png │ │ ├── bug_42270732.in │ │ ├── bug_42270732_expected.pdf.0.png │ │ ├── bug_42270979_1.in │ │ ├── bug_42270979_1_expected.pdf.0.png │ │ ├── bug_42270979_2.in │ │ ├── bug_42270979_2_expected.pdf.0.png │ │ ├── bug_42270979_2_expected_gdi.pdf.0.png │ │ ├── bug_42270979_3.in │ │ ├── bug_42270979_3_expected.pdf.0.png │ │ ├── bug_42270980.in │ │ ├── bug_42270980_expected.pdf.0.png │ │ ├── bug_42271010.pdf │ │ ├── bug_42271010_expected.pdf.0.png │ │ ├── bug_42271472.in │ │ ├── bug_42271472_expected.pdf.0.png │ │ ├── bug_432208037.in │ │ ├── bug_432208037_expected.pdf.0.png │ │ ├── bug_432208037_expected_mac.pdf.0.png │ │ ├── bug_432208037_expected_skia.pdf.0.png │ │ ├── bug_432208037_expected_skia_mac.pdf.0.png │ │ ├── bug_432208037_expected_skia_win.pdf.0.png │ │ ├── bug_440028542.pdf │ │ ├── bug_440028542_expected.pdf.0.png │ │ ├── bug_440028542_expected_gdi_skia.pdf.0.png │ │ ├── bug_440028542_expected_skia.pdf.0.png │ │ ├── bug_453723.in │ │ ├── bug_453723_expected.pdf.0.png │ │ ├── bug_491_invisible.in │ │ ├── bug_491_invisible_expected.pdf.0.png │ │ ├── bug_491_invisible_expected_gdi.pdf.0.png │ │ ├── bug_491_invisible_expected_skia.pdf.0.png │ │ ├── bug_491_unspecified.in │ │ ├── bug_491_unspecified_expected.pdf.0.png │ │ ├── bug_491_unspecified_expected_gdi.pdf.0.png │ │ ├── bug_491_unspecified_expected_skia.pdf.0.png │ │ ├── bug_491_visible.in │ │ ├── bug_491_visible_expected.pdf.0.png │ │ ├── bug_491_visible_expected_gdi.pdf.0.png │ │ ├── bug_491_visible_expected_skia.pdf.0.png │ │ ├── bug_512557.pdf │ │ ├── bug_512557_expected.pdf.0.png │ │ ├── bug_524043_1.in │ │ ├── bug_524043_1_expected.pdf.0.png │ │ ├── bug_524043_1_expected_agg_mac.pdf.0.png │ │ ├── bug_524043_1_expected_skia.pdf.0.png │ │ ├── bug_524043_1_expected_skia_mac.pdf.0.png │ │ ├── bug_524043_1_expected_skia_win.pdf.0.png │ │ ├── bug_524043_2.in │ │ ├── bug_524043_2_expected.pdf.0.png │ │ ├── bug_524043_2_expected_agg_mac.pdf.0.png │ │ ├── bug_524043_2_expected_skia.pdf.0.png │ │ ├── bug_524043_2_expected_skia_mac.pdf.0.png │ │ ├── bug_524043_2_expected_skia_win.pdf.0.png │ │ ├── bug_524043_3.in │ │ ├── bug_524043_3_expected.pdf.0.png │ │ ├── bug_524043_3_expected_agg_mac.pdf.0.png │ │ ├── bug_524043_3_expected_skia.pdf.0.png │ │ ├── bug_524043_3_expected_skia_mac.pdf.0.png │ │ ├── bug_524043_3_expected_skia_win.pdf.0.png │ │ ├── bug_524043_4.in │ │ ├── bug_524043_4_expected.pdf.0.png │ │ ├── bug_524043_4_expected_agg_mac.pdf.0.png │ │ ├── bug_524043_4_expected_skia.pdf.0.png │ │ ├── bug_524043_4_expected_skia_mac.pdf.0.png │ │ ├── bug_524043_4_expected_skia_win.pdf.0.png │ │ ├── bug_524043_5.in │ │ ├── bug_524043_5_expected.pdf.0.png │ │ ├── bug_524043_5_expected_agg_mac.pdf.0.png │ │ ├── bug_524043_5_expected_skia.pdf.0.png │ │ ├── bug_524043_5_expected_skia_mac.pdf.0.png │ │ ├── bug_524043_5_expected_skia_win.pdf.0.png │ │ ├── bug_524043_6.in │ │ ├── bug_524043_6_expected.pdf.0.png │ │ ├── bug_524043_7.in │ │ ├── bug_524043_7_expected.pdf.0.png │ │ ├── bug_524043_7_expected_agg_mac.pdf.0.png │ │ ├── bug_524043_7_expected_skia.pdf.0.png │ │ ├── bug_524043_7_expected_skia_mac.pdf.0.png │ │ ├── bug_524043_7_expected_skia_win.pdf.0.png │ │ ├── bug_527174.in │ │ ├── bug_527174_expected.pdf.0.png │ │ ├── bug_528103.in │ │ ├── bug_528103_expected.pdf.0.png │ │ ├── bug_528103_expected_agg_mac.pdf.0.png │ │ ├── bug_528103_expected_skia.pdf.0.png │ │ ├── bug_528103_expected_skia_mac.pdf.0.png │ │ ├── bug_528103_expected_skia_win.pdf.0.png │ │ ├── bug_543018_1.in │ │ ├── bug_543018_1_expected.pdf.0.png │ │ ├── bug_543018_1_expected_agg_mac.pdf.0.png │ │ ├── bug_543018_1_expected_skia.pdf.0.png │ │ ├── bug_543018_1_expected_skia_mac.pdf.0.png │ │ ├── bug_543018_1_expected_skia_win.pdf.0.png │ │ ├── bug_543018_2.in │ │ ├── bug_543018_2_expected.pdf.0.png │ │ ├── bug_543018_2_expected_agg_mac.pdf.0.png │ │ ├── bug_543018_2_expected_skia.pdf.0.png │ │ ├── bug_543018_2_expected_skia_mac.pdf.0.png │ │ ├── bug_543018_2_expected_skia_win.pdf.0.png │ │ ├── bug_551258_1.in │ │ ├── bug_551258_1_expected.pdf.0.png │ │ ├── bug_551258_1_expected_agg_mac.pdf.0.png │ │ ├── bug_551258_1_expected_skia.pdf.0.png │ │ ├── bug_551258_1_expected_skia_mac.pdf.0.png │ │ ├── bug_551258_1_expected_skia_win.pdf.0.png │ │ ├── bug_551460.in │ │ ├── bug_551460_expected.pdf.0.png │ │ ├── bug_554151.in │ │ ├── bug_554151_expected.pdf.0.png │ │ ├── bug_557223.in │ │ ├── bug_557223_expected.pdf.0.png │ │ ├── bug_585.in │ │ ├── bug_585_expected.pdf.0.png │ │ ├── bug_585_expected_gdi.pdf.0.png │ │ ├── bug_585_expected_skia.pdf.0.png │ │ ├── bug_591137.in │ │ ├── bug_591137_expected.pdf.0.png │ │ ├── bug_601362.in │ │ ├── bug_601362_expected.pdf.0.png │ │ ├── bug_601362_expected_gdi.pdf.0.png │ │ ├── bug_601362_expected_skia.pdf.0.png │ │ ├── bug_603518.pdf │ │ ├── bug_603518_expected.pdf.0.png │ │ ├── bug_632.in │ │ ├── bug_632_expected.pdf.0.png │ │ ├── bug_632_expected.pdf.1.png │ │ ├── bug_632_expected_skia.pdf.1.png │ │ ├── bug_660850.in │ │ ├── bug_660850_expected.pdf.0.png │ │ ├── bug_665467.in │ │ ├── bug_665467_expected.pdf.0.png │ │ ├── bug_665467_expected_mac.pdf.0.png │ │ ├── bug_665467_expected_skia.pdf.0.png │ │ ├── bug_665467_expected_skia_mac.pdf.0.png │ │ ├── bug_665467_expected_skia_win.pdf.0.png │ │ ├── bug_71.in │ │ ├── bug_714187.in │ │ ├── bug_714187_expected.pdf.0.png │ │ ├── bug_714187_expected_gdi.pdf.0.png │ │ ├── bug_714187_expected_skia.pdf.0.png │ │ ├── bug_718762.in │ │ ├── bug_718762_expected.pdf.0.png │ │ ├── bug_71_expected.pdf.0.png │ │ ├── bug_725389.in │ │ ├── bug_725389_expected.pdf.0.png │ │ ├── bug_725389_expected_mac.pdf.0.png │ │ ├── bug_725389_expected_skia.pdf.0.png │ │ ├── bug_725389_expected_skia_mac.pdf.0.png │ │ ├── bug_725389_expected_skia_win.pdf.0.png │ │ ├── bug_733528.in │ │ ├── bug_733528_expected.pdf.0.png │ │ ├── bug_733528_expected_mac.pdf.0.png │ │ ├── bug_733528_expected_skia.pdf.0.png │ │ ├── bug_733528_expected_skia_mac.pdf.0.png │ │ ├── bug_733528_expected_skia_win.pdf.0.png │ │ ├── bug_736695_1.in │ │ ├── bug_736695_1_expected.pdf.0.png │ │ ├── bug_736695_1_expected_skia.pdf.0.png │ │ ├── bug_736695_2.evt │ │ ├── bug_736695_2.in │ │ ├── bug_736695_2_expected.pdf.0.png │ │ ├── bug_736695_2_expected_mac.pdf.0.png │ │ ├── bug_736695_2_expected_skia.pdf.0.png │ │ ├── bug_736695_2_expected_skia_mac.pdf.0.png │ │ ├── bug_736695_2_expected_skia_win.pdf.0.png │ │ ├── bug_736695_3.evt │ │ ├── bug_736695_3.in │ │ ├── bug_736695_3_expected.pdf.0.png │ │ ├── bug_736695_3_expected_mac.pdf.0.png │ │ ├── bug_736695_3_expected_skia.pdf.0.png │ │ ├── bug_736695_3_expected_skia_mac.pdf.0.png │ │ ├── bug_736695_3_expected_skia_win.pdf.0.png │ │ ├── bug_736695_4.evt │ │ ├── bug_736695_4.in │ │ ├── bug_736695_4_expected.pdf.0.png │ │ ├── bug_736695_4_expected_skia.pdf.0.png │ │ ├── bug_736703.in │ │ ├── bug_736703_expected.pdf.0.png │ │ ├── bug_736703_expected_skia.pdf.0.png │ │ ├── bug_820345.in │ │ ├── bug_820345_expected.pdf.0.png │ │ ├── bug_820345_expected_agg_mac.pdf.0.png │ │ ├── bug_820345_expected_skia.pdf.0.png │ │ ├── bug_820345_expected_skia_mac.pdf.0.png │ │ ├── bug_820345_expected_skia_win.pdf.0.png │ │ ├── bug_828206.pdf │ │ ├── bug_828206_expected.pdf.0.png │ │ ├── bug_830221.pdf │ │ ├── bug_830221_expected.pdf.0.png │ │ ├── bug_842.in │ │ ├── bug_842_expected.pdf.0.png │ │ ├── bug_842_expected_skia.pdf.0.png │ │ ├── bug_843.in │ │ ├── bug_843_expected.pdf.0.png │ │ ├── bug_843_expected_gdi.pdf.0.png │ │ ├── bug_843_expected_skia.pdf.0.png │ │ ├── bug_845697.in │ │ ├── bug_845697_expected.pdf.0.png │ │ ├── bug_845697_expected_skia.pdf.0.png │ │ ├── bug_845697_expected_skia_mac.pdf.0.png │ │ ├── bug_845697_expected_skia_win.pdf.0.png │ │ ├── bug_846.in │ │ ├── bug_846_expected.pdf.0.png │ │ ├── bug_846_expected_mac.pdf.0.png │ │ ├── bug_846_expected_skia.pdf.0.png │ │ ├── bug_846_expected_skia_mac.pdf.0.png │ │ ├── bug_846_expected_skia_win.pdf.0.png │ │ ├── bug_867501.pdf │ │ ├── bug_867501_expected.pdf.0.png │ │ ├── bug_909762.in │ │ ├── bug_909762_expected.pdf.0.png │ │ ├── bug_909762_expected_skia_linux.pdf.0.png │ │ ├── bug_909762_expected_skia_win.pdf.0.png │ │ ├── bug_925736.pdf │ │ ├── bug_925736_expected.pdf.0.png │ │ ├── bug_925736_expected_agg_mac.pdf.0.png │ │ ├── bug_925736_expected_skia.pdf.0.png │ │ ├── bug_925736_expected_skia_mac.pdf.0.png │ │ ├── bug_925736_expected_skia_win.pdf.0.png │ │ ├── bug_963885.in │ │ ├── bug_963885_expected.pdf.0.png │ │ ├── bug_966263.in │ │ ├── bug_966263_expected.pdf.0.png │ │ ├── bug_972999.in │ │ ├── bug_972999_expected.pdf.0.png │ │ ├── bug_972999_expected_gdi.pdf.0.png │ │ ├── bug_972999_expected_skia.pdf.0.png │ │ ├── bug_981288.in │ │ ├── bug_981288_expected.pdf.0.png │ │ ├── bug_981347.in │ │ ├── bug_981347_expected.pdf.0.png │ │ ├── bug_984811.in │ │ ├── bug_984811_expected.pdf.0.png │ │ ├── bug_984811_expected_agg_mac.pdf.0.png │ │ ├── bug_984811_expected_skia.pdf.0.png │ │ ├── bug_984811_expected_skia_mac.pdf.0.png │ │ ├── bug_984811_expected_skia_win.pdf.0.png │ │ ├── bug_986108.in │ │ ├── bug_986108_expected.pdf.0.png │ │ ├── checkbox_radiobutton.evt │ │ ├── checkbox_radiobutton.fragment │ │ ├── checkbox_radiobutton.in │ │ ├── checkbox_radiobutton_expected.pdf.0.png │ │ ├── checkbox_radiobutton_expected_skia.pdf.0.png │ │ ├── checkbox_radiobutton_hide.in │ │ ├── checkbox_radiobutton_hide_expected.pdf.0.png │ │ ├── checkbox_radiobutton_hide_expected_skia.pdf.0.png │ │ ├── checkbox_radiobutton_reset.in │ │ ├── checkbox_radiobutton_reset_expected.pdf.0.png │ │ ├── checkbox_radiobutton_reset_expected_skia.pdf.0.png │ │ ├── checkboxes.in │ │ ├── checkboxes_expected.pdf.0.png │ │ ├── checkboxes_expected_gdi.pdf.0.png │ │ ├── checkboxes_expected_skia.pdf.0.png │ │ ├── combobox_form.evt │ │ ├── combobox_form.in │ │ ├── combobox_form_expected.pdf.0.png │ │ ├── combobox_form_expected_skia.pdf.0.png │ │ ├── composite-and-xnor.in │ │ ├── composite-and-xnor_expected.pdf.0.png │ │ ├── composite-or-xor-replace.in │ │ ├── composite-or-xor-replace_expected.pdf.0.png │ │ ├── dashed_line_negative_scale.in │ │ ├── dashed_line_negative_scale_expected.pdf.0.png │ │ ├── dashed_line_negative_scale_expected_gdi.pdf.0.png │ │ ├── dashed_lines.in │ │ ├── dashed_lines_expected.pdf.0.png │ │ ├── dashed_lines_expected_gdi.pdf.0.png │ │ ├── dashed_lines_expected_skia.pdf.0.png │ │ ├── direct_content_stream.pdf │ │ ├── direct_content_stream_expected.pdf.0.png │ │ ├── font_size.in │ │ ├── font_size_expected.pdf.0.png │ │ ├── font_size_expected_agg_mac.pdf.0.png │ │ ├── font_size_expected_skia.pdf.0.png │ │ ├── font_size_expected_skia_mac.pdf.0.png │ │ ├── font_size_expected_skia_win.pdf.0.png │ │ ├── freetext_annotation_with_ap.in │ │ ├── freetext_annotation_with_ap_expected.pdf.0.png │ │ ├── freetext_annotation_with_da.in │ │ ├── freetext_annotation_with_da_expected.pdf.0.png │ │ ├── freetext_annotation_with_da_expected_mac.pdf.0.png │ │ ├── freetext_annotation_with_da_expected_skia.pdf.0.png │ │ ├── freetext_annotation_with_da_expected_skia_mac.pdf.0.png │ │ ├── freetext_annotation_with_da_expected_skia_win.pdf.0.png │ │ ├── freetext_annotation_without_da.pdf │ │ ├── freetext_annotation_without_da_expected.pdf.0.png │ │ ├── freetext_annotation_without_da_expected_mac.pdf.0.png │ │ ├── freetext_annotation_without_da_expected_skia.pdf.0.png │ │ ├── freetext_annotation_without_da_expected_skia_mac.pdf.0.png │ │ ├── freetext_annotation_without_da_expected_skia_win.pdf.0.png │ │ ├── generation_numbers1.pdf │ │ ├── generation_numbers1_expected.pdf.0.png │ │ ├── generation_numbers1_expected_agg_mac.pdf.0.png │ │ ├── generation_numbers1_expected_skia.pdf.0.png │ │ ├── generation_numbers1_expected_skia_mac.pdf.0.png │ │ ├── generation_numbers1_expected_skia_win.pdf.0.png │ │ ├── generation_numbers2.pdf │ │ ├── generation_numbers2_expected.pdf.0.png │ │ ├── generation_numbers2_expected_agg_mac.pdf.0.png │ │ ├── generation_numbers2_expected_skia.pdf.0.png │ │ ├── generation_numbers2_expected_skia_mac.pdf.0.png │ │ ├── generation_numbers2_expected_skia_win.pdf.0.png │ │ ├── icc_profile_bad_component.in │ │ ├── icc_profile_bad_component_expected.pdf.0.png │ │ ├── icc_profile_bad_value.in │ │ ├── icc_profile_bad_value_expected.pdf.0.png │ │ ├── image_transformer_other.in │ │ ├── image_transformer_other_expected.pdf.0.png │ │ ├── image_transformer_other_expected_skia.pdf.0.png │ │ ├── jpxdecode.in │ │ ├── jpxdecode_expected.pdf.0.png │ │ ├── jpxdecode_indexed.in │ │ ├── jpxdecode_indexed2.in │ │ ├── jpxdecode_indexed2_expected.pdf.0.png │ │ ├── jpxdecode_indexed_expected.pdf.0.png │ │ ├── jpxdecode_with_mismatch_colorspace.in │ │ ├── jpxdecode_with_mismatch_colorspace_expected.pdf.0.png │ │ ├── jpxdecode_without_bitspercomponent.in │ │ ├── jpxdecode_without_bitspercomponent_expected.pdf.0.png │ │ ├── jpxdecode_without_colorspace.in │ │ ├── jpxdecode_without_colorspace_expected.pdf.0.png │ │ ├── jpxdecode_without_smaskindata.in │ │ ├── jpxdecode_without_smaskindata_expected.pdf.0.png │ │ ├── long_dashed_line.in │ │ ├── long_dashed_line_expected.pdf.0.png │ │ ├── long_dashed_line_expected_skia.pdf.0.png │ │ ├── lzw1.in │ │ ├── lzw1_expected.pdf.0.png │ │ ├── matte.in │ │ ├── matte_expected.pdf.0.png │ │ ├── matte_expected_skia.pdf.0.png │ │ ├── password.evt │ │ ├── password.in │ │ ├── password_expected.pdf.0.png │ │ ├── password_expected_mac.pdf.0.png │ │ ├── password_expected_skia.pdf.0.png │ │ ├── password_expected_skia_mac.pdf.0.png │ │ ├── password_expected_skia_win.pdf.0.png │ │ ├── radial_shading_point_at_border.in │ │ ├── radial_shading_point_at_border_expected.pdf.0.png │ │ ├── radial_shading_point_at_border_expected_skia.pdf.0.png │ │ ├── radial_shading_point_at_border_no_extend.in │ │ ├── radial_shading_point_at_border_no_extend_expected.pdf.0.png │ │ ├── radial_shading_point_at_border_no_extend_expected_skia.pdf.0.png │ │ ├── radial_shading_point_at_center.in │ │ ├── radial_shading_point_at_center_expected.pdf.0.png │ │ ├── radial_shading_point_at_center_expected_skia.pdf.0.png │ │ ├── rectangles_clipped.in │ │ ├── rectangles_clipped_expected.pdf.0.png │ │ ├── rectangles_wrong_xref_size.in │ │ ├── rectangles_wrong_xref_size_expected.pdf.0.png │ │ ├── rectangles_wrong_xref_size_expected_gdi.pdf.0.png │ │ ├── rectangles_wrong_xref_size_expected_skia.pdf.0.png │ │ ├── reset_button.evt │ │ ├── reset_button.in │ │ ├── reset_button_expected.pdf.0.png │ │ ├── scrollable_widgets1.evt │ │ ├── scrollable_widgets1.in │ │ ├── scrollable_widgets1_expected.pdf.0.png │ │ ├── scrollable_widgets1_expected_mac.pdf.0.png │ │ ├── scrollable_widgets1_expected_skia.pdf.0.png │ │ ├── scrollable_widgets1_expected_skia_mac.pdf.0.png │ │ ├── scrollable_widgets1_expected_skia_win.pdf.0.png │ │ ├── scrollable_widgets2.evt │ │ ├── scrollable_widgets2.in │ │ ├── scrollable_widgets2_expected.pdf.0.png │ │ ├── scrollable_widgets2_expected_mac.pdf.0.png │ │ ├── scrollable_widgets2_expected_skia.pdf.0.png │ │ ├── scrollable_widgets2_expected_skia_mac.pdf.0.png │ │ ├── scrollable_widgets2_expected_skia_win.pdf.0.png │ │ ├── shade-tensor.in │ │ ├── shade-tensor_expected.pdf.0.png │ │ ├── shade-tensor_expected_gdi_skia.pdf.0.png │ │ ├── shade-tensor_expected_skia.pdf.0.png │ │ ├── shade.in │ │ ├── shade_expected.pdf.0.png │ │ ├── shade_expected_gdi_skia.pdf.0.png │ │ ├── shade_expected_skia.pdf.0.png │ │ ├── smask_blend.in │ │ ├── smask_blend_expected.pdf.0.png │ │ ├── static_password_field_rotate_expected_skia_win.pdf.0.png │ │ ├── static_password_field_rotate_expected_skia_win.pdf.1.png │ │ ├── stream_with_indirect_dict.in │ │ ├── stream_with_indirect_dict_expected.pdf.0.png │ │ ├── text_form_custom_font.in │ │ ├── text_form_custom_font_expected.pdf.0.png │ │ ├── text_form_custom_font_expected_mac.pdf.0.png │ │ ├── text_form_custom_font_expected_skia.pdf.0.png │ │ ├── text_form_custom_font_expected_skia_mac.pdf.0.png │ │ ├── text_form_custom_font_expected_skia_win.pdf.0.png │ │ ├── transfer_function.in │ │ ├── transfer_function_expected.pdf.0.png │ │ ├── transfer_function_expected.pdf.1.png │ │ ├── transfer_function_expected_gdi_skia.pdf.0.png │ │ ├── transfer_function_expected_gdi_skia.pdf.1.png │ │ ├── transfer_function_expected_skia.pdf.0.png │ │ ├── transfer_function_expected_skia.pdf.1.png │ │ ├── type3.in │ │ ├── type3_expected.pdf.0.png │ │ ├── type3_xobject.in │ │ ├── type3_xobject_expected.pdf.0.png │ │ ├── use_symbolneu │ │ │ ├── bug_1449.in │ │ │ └── bug_1449_expected.pdf.0.png │ │ └── xfa_specific │ │ │ ├── barcode_test.evt │ │ │ ├── barcode_test.pdf │ │ │ ├── barcode_test_expected.pdf.0.png │ │ │ ├── barcode_test_expected_skia.pdf.0.png │ │ │ ├── barcode_test_expected_skia_mac.pdf.0.png │ │ │ ├── barcode_test_expected_skia_win.pdf.0.png │ │ │ ├── bug_1026918.evt │ │ │ ├── bug_1026918.in │ │ │ ├── bug_1026918_expected.pdf.0.png │ │ │ ├── bug_1258_1.in │ │ │ ├── bug_1258_1_expected.pdf.0.png │ │ │ ├── bug_1258_2.in │ │ │ ├── bug_1258_2_expected.pdf.0.png │ │ │ ├── bug_1258_3.in │ │ │ ├── bug_1258_3_expected.pdf.0.png │ │ │ ├── bug_1269_1.in │ │ │ ├── bug_1269_1_expected.pdf.0.png │ │ │ ├── bug_1269_2.in │ │ │ ├── bug_1269_2_expected.pdf.0.png │ │ │ ├── bug_1269_3.in │ │ │ ├── bug_1269_3_expected.pdf.0.png │ │ │ ├── bug_1270.in │ │ │ ├── bug_1270_expected.pdf.0.png │ │ │ ├── bug_1272.in │ │ │ ├── bug_1272_expected.pdf.0.png │ │ │ ├── bug_1273.in │ │ │ ├── bug_1273_expected.pdf.0.png │ │ │ ├── bug_1282.in │ │ │ ├── bug_1282_expected.pdf.0.png │ │ │ ├── bug_1282_expected_skia.pdf.0.png │ │ │ ├── bug_1286970.in │ │ │ ├── bug_1286970_expected.pdf.0.png │ │ │ ├── bug_1337.in │ │ │ ├── bug_1337_expected.pdf.0.png │ │ │ ├── bug_983137.in │ │ │ ├── bug_983137_expected.pdf.0.png │ │ │ ├── bug_983137_expected_skia.pdf.0.png │ │ │ ├── dynamic_list_box_allow_multiple_selection.evt │ │ │ ├── dynamic_list_box_allow_multiple_selection.pdf │ │ │ ├── dynamic_list_box_allow_multiple_selection_expected.pdf.0.png │ │ │ ├── dynamic_list_box_allow_multiple_selection_expected_mac.pdf.0.png │ │ │ ├── dynamic_list_box_allow_multiple_selection_expected_skia.pdf.0.png │ │ │ ├── dynamic_list_box_allow_multiple_selection_expected_skia_mac.pdf.0.png │ │ │ ├── dynamic_list_box_allow_multiple_selection_expected_skia_win.pdf.0.png │ │ │ ├── dynamic_password_field_background_fill.evt │ │ │ ├── dynamic_password_field_background_fill.pdf │ │ │ ├── dynamic_password_field_background_fill_expected.pdf.0.png │ │ │ ├── dynamic_password_field_background_fill_expected_skia.pdf.0.png │ │ │ ├── dynamic_password_field_background_fill_expected_skia_mac.pdf.0.png │ │ │ ├── dynamic_password_field_background_fill_expected_skia_win.pdf.0.png │ │ │ ├── dynamic_table_color_and_width.pdf │ │ │ ├── dynamic_table_color_and_width_expected.pdf.0.png │ │ │ ├── dynamic_table_color_and_width_expected_skia.pdf.0.png │ │ │ ├── dynamic_table_color_and_width_expected_skia_mac.pdf.0.png │ │ │ ├── dynamic_table_color_and_width_expected_skia_win.pdf.0.png │ │ │ ├── resolve_nodes_0.evt │ │ │ ├── resolve_nodes_0.pdf │ │ │ ├── resolve_nodes_0_expected.pdf.0.png │ │ │ ├── resolve_nodes_0_expected_skia.pdf.0.png │ │ │ ├── resolve_nodes_0_expected_skia_mac.pdf.0.png │ │ │ ├── resolve_nodes_0_expected_skia_win.pdf.0.png │ │ │ ├── standard_symbols.pdf │ │ │ ├── standard_symbols_expected.pdf.0.png │ │ │ ├── standard_symbols_expected.pdf.1.png │ │ │ ├── static_list_box_caption.pdf │ │ │ ├── static_list_box_caption_expected.pdf.0.png │ │ │ ├── static_list_box_caption_expected_mac.pdf.0.png │ │ │ ├── static_list_box_caption_expected_skia.pdf.0.png │ │ │ ├── static_list_box_caption_expected_skia_mac.pdf.0.png │ │ │ ├── static_password_field_rotate.pdf │ │ │ ├── static_password_field_rotate_expected.pdf.0.png │ │ │ ├── static_password_field_rotate_expected.pdf.1.png │ │ │ ├── static_password_field_rotate_expected_mac.pdf.0.png │ │ │ ├── static_password_field_rotate_expected_mac.pdf.1.png │ │ │ ├── static_password_field_rotate_expected_skia.pdf.0.png │ │ │ ├── static_password_field_rotate_expected_skia.pdf.1.png │ │ │ ├── static_password_field_rotate_expected_skia_mac.pdf.0.png │ │ │ ├── static_password_field_rotate_expected_skia_mac.pdf.1.png │ │ │ ├── use_ahem │ │ │ ├── README.md │ │ │ ├── bug_997412.in │ │ │ ├── bug_997412_expected.pdf.0.png │ │ │ ├── bug_997412_expected.pdf.1.png │ │ │ ├── bug_997412_expected_skia.pdf.1.png │ │ │ ├── xfa_example.in │ │ │ ├── xfa_example_expected.pdf.0.png │ │ │ ├── xfa_example_expected_skia.pdf.0.png │ │ │ ├── xfa_textfield.evt │ │ │ ├── xfa_textfield.in │ │ │ ├── xfa_textfield_expected.pdf.0.png │ │ │ └── xfa_textfield_expected_skia.pdf.0.png │ │ │ ├── xfa_bmp_image.in │ │ │ ├── xfa_bmp_image_expected.pdf.0.png │ │ │ ├── xfa_bmp_image_expected_skia.pdf.0.png │ │ │ ├── xfa_gif_image.in │ │ │ ├── xfa_gif_image_expected.pdf.0.png │ │ │ ├── xfa_gif_image_expected_skia.pdf.0.png │ │ │ ├── xfa_jpg_image.in │ │ │ ├── xfa_jpg_image_expected.pdf.0.png │ │ │ ├── xfa_jpg_image_expected_skia.pdf.0.png │ │ │ ├── xfa_node_caption.pdf │ │ │ ├── xfa_node_caption_expected.pdf.0.png │ │ │ ├── xfa_node_caption_expected.pdf.1.png │ │ │ ├── xfa_node_caption_expected_mac.pdf.0.png │ │ │ ├── xfa_node_caption_expected_mac.pdf.1.png │ │ │ ├── xfa_node_caption_expected_skia.pdf.0.png │ │ │ ├── xfa_node_caption_expected_skia.pdf.1.png │ │ │ ├── xfa_node_caption_expected_skia_mac.pdf.0.png │ │ │ ├── xfa_node_caption_expected_skia_mac.pdf.1.png │ │ │ ├── xfa_node_caption_expected_skia_win.pdf.0.png │ │ │ ├── xfa_node_caption_expected_skia_win.pdf.1.png │ │ │ ├── xfa_node_caption_expected_win.pdf.0.png │ │ │ ├── xfa_node_caption_expected_win.pdf.1.png │ │ │ ├── xfa_png_image.in │ │ │ ├── xfa_png_image_expected.pdf.0.png │ │ │ ├── xfa_png_image_expected_skia.pdf.0.png │ │ │ ├── xfa_rectangle_node.in │ │ │ ├── xfa_rectangle_node_expected.pdf.0.png │ │ │ ├── xfa_rectangle_node_expected_skia.pdf.0.png │ │ │ ├── xfa_tiff_image.in │ │ │ ├── xfa_tiff_image_expected.pdf.0.png │ │ │ ├── xfa_tiff_image_expected_skia.pdf.0.png │ │ │ ├── xfa_tiff_lzw_image.in │ │ │ ├── xfa_tiff_lzw_image_expected.pdf.0.png │ │ │ ├── xfa_tiff_lzw_image_expected_skia.pdf.0.png │ │ │ ├── xfa_tiff_packbits_image.in │ │ │ ├── xfa_tiff_packbits_image_expected.pdf.0.png │ │ │ └── xfa_tiff_packbits_image_expected_skia.pdf.0.png │ ├── polygon_annot.in │ ├── polygon_annot.pdf │ ├── rectangles.in │ ├── rectangles.pdf │ ├── rectangles_double_flipped.in │ ├── rectangles_double_flipped.pdf │ ├── rectangles_multi_page_xfa.pdf │ ├── rectangles_multi_pages.in │ ├── rectangles_multi_pages.pdf │ ├── rectangles_object_zero.in │ ├── rectangles_object_zero.pdf │ ├── rectangles_with_leaky_ctm.in │ ├── rectangles_with_leaky_ctm.pdf │ ├── redact_annot.in │ ├── redact_annot.pdf │ ├── redirect.pdf │ ├── repeat_viewer_ref.in │ ├── repeat_viewer_ref.pdf │ ├── rotated_image.in │ ├── rotated_image.pdf │ ├── rotated_text.in │ ├── rotated_text.pdf │ ├── rotated_text_90.in │ ├── rotated_text_90.pdf │ ├── signature_no_sub_filter.in │ ├── signature_no_sub_filter.pdf │ ├── signature_reason.in │ ├── signature_reason.pdf │ ├── simple_thumbnail.in │ ├── simple_thumbnail.pdf │ ├── simple_xfa.in │ ├── simple_xfa.pdf │ ├── split_streams.in │ ├── split_streams.pdf │ ├── tagged_actual_text.in │ ├── tagged_actual_text.pdf │ ├── tagged_alt_text.in │ ├── tagged_alt_text.pdf │ ├── tagged_marked_content.in │ ├── tagged_marked_content.pdf │ ├── tagged_mcr_multipage.in │ ├── tagged_mcr_multipage.pdf │ ├── tagged_mcr_objr.in │ ├── tagged_mcr_objr.pdf │ ├── tagged_nested.in │ ├── tagged_nested.pdf │ ├── tagged_table.in │ ├── tagged_table.pdf │ ├── tagged_table_bad_elem.in │ ├── tagged_table_bad_elem.pdf │ ├── tagged_table_bad_parent.in │ ├── tagged_table_bad_parent.pdf │ ├── text_color.in │ ├── text_color.pdf │ ├── text_font.pdf │ ├── text_form.in │ ├── text_form.pdf │ ├── text_form_color.in │ ├── text_form_color.pdf │ ├── text_form_multiline.in │ ├── text_form_multiline.pdf │ ├── text_form_multiple.in │ ├── text_form_multiple.pdf │ ├── text_form_negative_fontsize.in │ ├── text_form_negative_fontsize.pdf │ ├── text_in_page_marked.in │ ├── text_in_page_marked.pdf │ ├── text_in_page_marked_indirect.in │ ├── text_in_page_marked_indirect.pdf │ ├── text_render_mode.pdf │ ├── thumbnail_with_empty_stream.in │ ├── thumbnail_with_empty_stream.pdf │ ├── thumbnail_with_no_filters.in │ ├── thumbnail_with_no_filters.pdf │ ├── trailer_as_hexstring.in │ ├── trailer_as_hexstring.pdf │ ├── trailer_end_trailing_space.in │ ├── trailer_end_trailing_space.pdf │ ├── trailer_unterminated.in │ ├── trailer_unterminated.pdf │ ├── two_signatures.in │ ├── two_signatures.pdf │ ├── unsupported_feature.in │ ├── unsupported_feature.pdf │ ├── uri_action.in │ ├── uri_action.pdf │ ├── uri_action_nonascii.in │ ├── uri_action_nonascii.pdf │ ├── use_outlines.in │ ├── use_outlines.pdf │ ├── utf-8.in │ ├── utf-8.pdf │ ├── version_in_catalog.in │ ├── version_in_catalog.pdf │ ├── vertical_text.in │ ├── vertical_text.pdf │ ├── viewer_pref_types.in │ ├── viewer_pref_types.pdf │ ├── viewer_ref.in │ ├── viewer_ref.pdf │ ├── weblinks.in │ ├── weblinks.pdf │ ├── weblinks_across_lines.in │ ├── weblinks_across_lines.pdf │ ├── xfa │ │ ├── email_recommended.pdf │ │ ├── xfa_break_before_after.in │ │ ├── xfa_break_before_after.pdf │ │ ├── xfa_combobox.in │ │ ├── xfa_combobox.pdf │ │ ├── xfa_date_time_edit.in │ │ ├── xfa_date_time_edit.pdf │ │ ├── xfa_image_edit.in │ │ ├── xfa_image_edit.pdf │ │ ├── xfa_multiline_textfield.in │ │ └── xfa_multiline_textfield.pdf │ ├── xfa_catalog_1_0.fragment │ ├── xfa_config.xml │ ├── xfa_config_4_0.fragment │ ├── xfa_locale.xml │ ├── xfa_locale_6_0.fragment │ ├── xfa_object_2_0.fragment │ ├── xfa_object_single_2_0.fragment │ ├── xfa_pages_8_0.fragment │ ├── xfa_postamble.xml │ ├── xfa_postamble_7_0.fragment │ ├── xfa_preamble.xml │ ├── xfa_preamble_3_0.fragment │ ├── zero_length_stream.in │ └── zero_length_stream.pdf ├── scoped_locale.cc ├── scoped_locale.h ├── scoped_set_tz.cpp ├── scoped_set_tz.h ├── string_write_stream.cpp ├── string_write_stream.h ├── test.gni ├── test_fonts.cpp ├── test_fonts.h ├── test_loader.cpp ├── test_loader.h ├── test_support.h ├── tools │ ├── BUILD.gn │ ├── PRESUBMIT.py │ ├── __init__.py │ ├── api_check.py │ ├── common.py │ ├── coverage │ │ └── coverage_report.py │ ├── encode_pdf_filter.py │ ├── fixup_pdf_template.py │ ├── generate_cas_paths.py │ ├── githelper.py │ ├── golden_fetch.sh │ ├── libcxx_check.py │ ├── make_expected.sh │ ├── pdfium_root.py │ ├── pdftoin_shrdlu.py │ ├── pngdiffer.py │ ├── renumber.py │ ├── run_corpus_tests.py │ ├── run_javascript_tests.py │ ├── run_pixel_tests.py │ ├── safetynet_compare.py │ ├── safetynet_conclusions.py │ ├── safetynet_image.py │ ├── safetynet_job.py │ ├── safetynet_measure.py │ ├── skia_gold │ │ ├── __init__.py │ │ ├── pdfium_skia_gold_properties.py │ │ ├── pdfium_skia_gold_session.py │ │ ├── pdfium_skia_gold_session_manager.py │ │ └── skia_gold.py │ ├── strip_jp2_comments.py │ ├── suppressor.py │ ├── test_runner.py │ └── text_diff.py ├── unit_test_main.cpp ├── utils │ ├── bitmap_saver.cpp │ ├── bitmap_saver.h │ ├── compare_coordinates.cc │ ├── compare_coordinates.h │ ├── file_util.cpp │ ├── file_util.h │ ├── hash.cpp │ ├── hash.h │ ├── path_service.cpp │ └── path_service.h ├── v8_initializer.cpp ├── v8_initializer.h ├── v8_test_environment.cpp ├── v8_test_environment.h ├── xfa_js_embedder_test.cpp ├── xfa_js_embedder_test.h ├── xfa_test_environment.cpp └── xfa_test_environment.h ├── third_party ├── BUILD.gn ├── DEPS ├── NotoSansCJK │ ├── LICENSE │ ├── NotoSansSC-Regular.subset.otf │ └── README.pdfium ├── agg23 │ ├── 0000-bug-466.patch │ ├── 0001-gcc-warning.patch │ ├── 0002-ubsan-error-fixes.patch │ ├── 0003-ubsan-render-line-error.patch │ ├── 0004-ubsan-sweep-scanline-error.patch │ ├── 0005-assignment-return-values.patch │ ├── 0006-ubsan-sweep-scanline-error.patch │ ├── 0007-unused-struct.patch │ ├── 0008-namespace.patch │ ├── 0009-infinite-loop.patch │ ├── 0010-math.patch │ ├── 0011-path-storage-move-ctor.patch │ ├── 0012-infinite-loop.patch │ ├── 0013-cxx20.patch │ ├── 0014-ubsan-render-line.patch │ ├── 0015-include-string-h.patch │ ├── 0016-support-negative-dash-phases.patch │ ├── README.pdfium │ ├── agg_array.h │ ├── agg_basics.h │ ├── agg_clip_liang_barsky.h │ ├── agg_color_gray.h │ ├── agg_conv_adaptor_vcgen.h │ ├── agg_conv_dash.h │ ├── agg_conv_stroke.h │ ├── agg_curves.cpp │ ├── agg_curves.h │ ├── agg_math.h │ ├── agg_math_stroke.h │ ├── agg_path_storage.cpp │ ├── agg_path_storage.h │ ├── agg_pixfmt_gray.h │ ├── agg_rasterizer_scanline_aa.cpp │ ├── agg_rasterizer_scanline_aa.h │ ├── agg_render_scanlines.h │ ├── agg_renderer_base.h │ ├── agg_renderer_scanline.h │ ├── agg_rendering_buffer.h │ ├── agg_scanline_u.h │ ├── agg_shorten_path.h │ ├── agg_vcgen_dash.cpp │ ├── agg_vcgen_dash.h │ ├── agg_vcgen_stroke.cpp │ ├── agg_vcgen_stroke.h │ ├── agg_vertex_sequence.h │ └── copying ├── bigint │ ├── BigInteger.cc │ ├── BigInteger.hh │ ├── BigIntegerLibrary.hh │ ├── BigIntegerUtils.cc │ ├── BigIntegerUtils.hh │ ├── BigUnsigned.cc │ ├── BigUnsigned.hh │ ├── BigUnsignedInABase.cc │ ├── BigUnsignedInABase.hh │ ├── LICENSE │ └── NumberlikeArray.hh ├── cpu_features │ ├── BUILD.gn │ └── README.pdfium ├── dragonbox │ ├── BUILD.gn │ └── README.pdfium ├── fast_float │ ├── BUILD.gn │ └── README.pdfium ├── fp16 │ ├── BUILD.gn │ ├── LICENSE │ └── README.pdfium ├── freetype │ ├── 0000-include.patch │ ├── FTL.TXT │ ├── OWNERS │ ├── README.pdfium │ ├── include │ │ ├── freetype-custom-config │ │ │ ├── ftmodule.h │ │ │ └── ftoption.h │ │ └── pstables.h │ └── roll-freetype.sh ├── googletest │ ├── BUILD.gn │ ├── README.pdfium │ └── custom │ │ └── gtest │ │ └── internal │ │ └── custom │ │ ├── gtest-printers.h │ │ ├── gtest.h │ │ ├── gtest_port_wrapper.cc │ │ ├── pdfium_custom_temp_dir.cc │ │ └── pdfium_custom_temp_dir.h ├── highway │ ├── BUILD.gn │ ├── LICENSE │ └── README.pdfium ├── lcms │ ├── 0000-cmserr-changes.patch │ ├── 0001-fix-include.patch │ ├── 0003-old-uninitialized-in-LUTevalFloat.patch │ ├── 0004-old-uninitialized-in-LUTeval16.patch │ ├── 0006-tag-type-confusion.patch │ ├── 0027-changes-from-beginning-of-time.patch │ ├── 0028-do-not-quickfloor.patch │ ├── 0029-drop-register-keyword.patch │ ├── 0030-const-data.patch │ ├── 0033-opt-integer-overflow.patch │ ├── 0034-dead-code.patch │ ├── 0035-func-ptr-mixup.patch │ ├── LICENSE │ ├── README.pdfium │ ├── include │ │ ├── lcms2.h │ │ └── lcms2_plugin.h │ └── src │ │ ├── cmsalpha.c │ │ ├── cmscam02.c │ │ ├── cmscgats.c │ │ ├── cmscnvrt.c │ │ ├── cmserr.c │ │ ├── cmsgamma.c │ │ ├── cmsgmt.c │ │ ├── cmshalf.c │ │ ├── cmsintrp.c │ │ ├── cmsio0.c │ │ ├── cmsio1.c │ │ ├── cmslut.c │ │ ├── cmsmd5.c │ │ ├── cmsmtrx.c │ │ ├── cmsnamed.c │ │ ├── cmsopt.c │ │ ├── cmspack.c │ │ ├── cmspcs.c │ │ ├── cmsplugin.c │ │ ├── cmsps2.c │ │ ├── cmssamp.c │ │ ├── cmssm.c │ │ ├── cmstypes.c │ │ ├── cmsvirt.c │ │ ├── cmswtpnt.c │ │ ├── cmsxform.c │ │ └── lcms2_internal.h ├── libopenjpeg │ ├── 0003-dwt-decode.patch │ ├── 0005-jp2_apply_pclr.patch │ ├── 0006-tcd_init_tile.patch │ ├── 0007-jp2_read_cmap.patch │ ├── 0009-opj_pi_next.patch │ ├── 0011-j2k_update_image_data.patch │ ├── 0012-mct_sse.patch │ ├── 0014-opj_jp2_read_ihdr_leak.patch │ ├── 0015-read_SPCod_SPCoc_overflow.patch │ ├── 0016-read_SQcd_SQcc_overflow.patch │ ├── 0019-tcd_init_tile.patch │ ├── 0022-jp2_apply_pclr_overflow.patch │ ├── 0023-opj_j2k_read_mct_records.patch │ ├── 0025-opj_j2k_add_mct_null_data.patch │ ├── 0034-opj_malloc.patch │ ├── 0035-opj_image_data_free.patch │ ├── 0039-opj_mqc_renorme.patch │ ├── 0041-remove_opj_clock.patch │ ├── 0046-func-ptr-mixup.patch │ ├── LICENSE │ ├── README.pdfium │ ├── bio.c │ ├── bio.h │ ├── cio.c │ ├── cio.h │ ├── dwt.c │ ├── dwt.h │ ├── event.c │ ├── event.h │ ├── function_list.c │ ├── function_list.h │ ├── ht_dec.c │ ├── image.c │ ├── image.h │ ├── invert.c │ ├── invert.h │ ├── j2k.c │ ├── j2k.h │ ├── jp2.c │ ├── jp2.h │ ├── mct.c │ ├── mct.h │ ├── mqc.c │ ├── mqc.h │ ├── mqc_inl.h │ ├── openjpeg.c │ ├── openjpeg.h │ ├── opj_clock.c │ ├── opj_clock.h │ ├── opj_codec.h │ ├── opj_common.h │ ├── opj_config.h │ ├── opj_config_private.h │ ├── opj_includes.h │ ├── opj_intmath.h │ ├── opj_malloc.cc │ ├── opj_malloc.h │ ├── pi.c │ ├── pi.h │ ├── sparse_array.c │ ├── sparse_array.h │ ├── t1.c │ ├── t1.h │ ├── t1_generate_luts.c │ ├── t1_ht_luts.h │ ├── t1_luts.h │ ├── t2.c │ ├── t2.h │ ├── tcd.c │ ├── tcd.h │ ├── tgt.c │ ├── tgt.h │ ├── thread.c │ ├── thread.h │ └── tls_keys.h ├── libtiff │ ├── 0000-build-config.patch │ ├── 0001-no-error-handlers.patch │ ├── 0028-nstrips-OOM.patch │ ├── 0031-safe_size_ingtStripContig.patch │ ├── 0033-avail-out-overflow.patch │ ├── LICENSE.md │ ├── README.pdfium │ ├── t4.h │ ├── tif_aux.c │ ├── tif_close.c │ ├── tif_codec.c │ ├── tif_color.c │ ├── tif_compress.c │ ├── tif_dir.c │ ├── tif_dir.h │ ├── tif_dirinfo.c │ ├── tif_dirread.c │ ├── tif_dirwrite.c │ ├── tif_dumpmode.c │ ├── tif_error.c │ ├── tif_extension.c │ ├── tif_fax3.c │ ├── tif_fax3.h │ ├── tif_fax3sm.c │ ├── tif_flush.c │ ├── tif_getimage.c │ ├── tif_hash_set.c │ ├── tif_hash_set.h │ ├── tif_jpeg.c │ ├── tif_luv.c │ ├── tif_lzw.c │ ├── tif_next.c │ ├── tif_open.c │ ├── tif_packbits.c │ ├── tif_pixarlog.c │ ├── tif_predict.c │ ├── tif_predict.h │ ├── tif_print.c │ ├── tif_read.c │ ├── tif_strip.c │ ├── tif_swab.c │ ├── tif_thunder.c │ ├── tif_tile.c │ ├── tif_version.c │ ├── tif_warning.c │ ├── tif_write.c │ ├── tiff.h │ ├── tiffconf.h │ ├── tiffio.h │ ├── tiffiop.h │ ├── tiffvers.h │ └── uvcode.h └── llvm-libc │ ├── BUILD.gn │ └── README.md ├── tools ├── android │ └── md5sum │ │ └── BUILD.gn ├── lsan │ └── lsan_suppressions.txt ├── modules │ └── graph_modules.sh ├── msan │ └── ignorelist.txt └── ubsan │ ├── ignorelist.txt │ ├── security_ignorelist.txt │ └── vptr_ignorelist.txt ├── unsafe_buffers_paths.txt └── xfa ├── BUILD.gn ├── DEPS ├── README.md ├── fde ├── BUILD.gn ├── cfde_data.h ├── cfde_texteditengine.cpp ├── cfde_texteditengine.h ├── cfde_texteditengine_unittest.cpp ├── cfde_textout.cpp ├── cfde_textout.h ├── cfde_textout_unittest.cpp ├── cfde_wordbreak_data.cpp └── cfde_wordbreak_data.h ├── fgas ├── README.md ├── crt │ ├── BUILD.gn │ ├── cfgas_decimal.cpp │ ├── cfgas_decimal.h │ ├── cfgas_decimal_unittest.cpp │ ├── cfgas_stringformatter.cpp │ ├── cfgas_stringformatter.h │ ├── cfgas_stringformatter_unittest.cpp │ ├── locale_iface.h │ └── locale_mgr_iface.h ├── font │ ├── BUILD.gn │ ├── cfgas_defaultfontmanager.cpp │ ├── cfgas_defaultfontmanager.h │ ├── cfgas_fontmgr.cpp │ ├── cfgas_fontmgr.h │ ├── cfgas_gefont.cpp │ ├── cfgas_gefont.h │ ├── cfgas_gemodule.cpp │ ├── cfgas_gemodule.h │ ├── cfgas_pdffontmgr.cpp │ ├── cfgas_pdffontmgr.h │ ├── fgas_fontutils.cpp │ ├── fgas_fontutils.h │ └── fgas_fontutils_unittest.cpp ├── graphics │ ├── BUILD.gn │ ├── cfgas_gecolor.cpp │ ├── cfgas_gecolor.h │ ├── cfgas_gegraphics.cpp │ ├── cfgas_gegraphics.h │ ├── cfgas_gepath.cpp │ ├── cfgas_gepath.h │ ├── cfgas_gepattern.cpp │ ├── cfgas_gepattern.h │ ├── cfgas_geshading.cpp │ └── cfgas_geshading.h └── layout │ ├── BUILD.gn │ ├── cfgas_break.cpp │ ├── cfgas_break.h │ ├── cfgas_breakline.cpp │ ├── cfgas_breakline.h │ ├── cfgas_breakpiece.cpp │ ├── cfgas_breakpiece.h │ ├── cfgas_char.cpp │ ├── cfgas_char.h │ ├── cfgas_linkuserdata.cpp │ ├── cfgas_linkuserdata.h │ ├── cfgas_rtfbreak.cpp │ ├── cfgas_rtfbreak.h │ ├── cfgas_rtfbreak_unittest.cpp │ ├── cfgas_textpiece.cpp │ ├── cfgas_textpiece.h │ ├── cfgas_textuserdata.cpp │ ├── cfgas_textuserdata.h │ ├── cfgas_txtbreak.cpp │ ├── cfgas_txtbreak.h │ ├── cfgas_txtbreak_unittest.cpp │ ├── fgas_arabic.cpp │ ├── fgas_arabic.h │ ├── fgas_linebreak.cpp │ └── fgas_linebreak.h ├── fwl ├── BUILD.gn ├── DEPS ├── README.md ├── cfwl_app.cpp ├── cfwl_app.h ├── cfwl_barcode.cpp ├── cfwl_barcode.h ├── cfwl_caret.cpp ├── cfwl_caret.h ├── cfwl_checkbox.cpp ├── cfwl_checkbox.h ├── cfwl_combobox.cpp ├── cfwl_combobox.h ├── cfwl_comboedit.cpp ├── cfwl_comboedit.h ├── cfwl_combolist.cpp ├── cfwl_combolist.h ├── cfwl_datetimeedit.cpp ├── cfwl_datetimeedit.h ├── cfwl_datetimepicker.cpp ├── cfwl_datetimepicker.h ├── cfwl_edit.cpp ├── cfwl_edit.h ├── cfwl_edit_embeddertest.cpp ├── cfwl_event.cpp ├── cfwl_event.h ├── cfwl_eventmouse.cpp ├── cfwl_eventmouse.h ├── cfwl_eventscroll.cpp ├── cfwl_eventscroll.h ├── cfwl_eventselectchanged.cpp ├── cfwl_eventselectchanged.h ├── cfwl_eventtextwillchange.cpp ├── cfwl_eventtextwillchange.h ├── cfwl_eventvalidate.cpp ├── cfwl_eventvalidate.h ├── cfwl_listbox.cpp ├── cfwl_listbox.h ├── cfwl_message.cpp ├── cfwl_message.h ├── cfwl_messagekey.cpp ├── cfwl_messagekey.h ├── cfwl_messagekillfocus.cpp ├── cfwl_messagekillfocus.h ├── cfwl_messagemouse.cpp ├── cfwl_messagemouse.h ├── cfwl_messagemousewheel.cpp ├── cfwl_messagemousewheel.h ├── cfwl_messagesetfocus.cpp ├── cfwl_messagesetfocus.h ├── cfwl_monthcalendar.cpp ├── cfwl_monthcalendar.h ├── cfwl_notedriver.cpp ├── cfwl_notedriver.h ├── cfwl_picturebox.cpp ├── cfwl_picturebox.h ├── cfwl_pushbutton.cpp ├── cfwl_pushbutton.h ├── cfwl_scrollbar.cpp ├── cfwl_scrollbar.h ├── cfwl_themebackground.cpp ├── cfwl_themebackground.h ├── cfwl_themepart.cpp ├── cfwl_themepart.h ├── cfwl_themetext.cpp ├── cfwl_themetext.h ├── cfwl_widget.cpp ├── cfwl_widget.h ├── cfwl_widgetmgr.cpp ├── cfwl_widgetmgr.h ├── fwl_widgetdef.cpp ├── fwl_widgetdef.h ├── fwl_widgethit.h ├── ifwl_themeprovider.cpp ├── ifwl_themeprovider.h ├── ifwl_widgetdelegate.h └── theme │ ├── README.md │ ├── cfwl_barcodetp.cpp │ ├── cfwl_barcodetp.h │ ├── cfwl_carettp.cpp │ ├── cfwl_carettp.h │ ├── cfwl_checkboxtp.cpp │ ├── cfwl_checkboxtp.h │ ├── cfwl_comboboxtp.cpp │ ├── cfwl_comboboxtp.h │ ├── cfwl_datetimepickertp.cpp │ ├── cfwl_datetimepickertp.h │ ├── cfwl_edittp.cpp │ ├── cfwl_edittp.h │ ├── cfwl_listboxtp.cpp │ ├── cfwl_listboxtp.h │ ├── cfwl_monthcalendartp.cpp │ ├── cfwl_monthcalendartp.h │ ├── cfwl_pictureboxtp.cpp │ ├── cfwl_pictureboxtp.h │ ├── cfwl_pushbuttontp.cpp │ ├── cfwl_pushbuttontp.h │ ├── cfwl_scrollbartp.cpp │ ├── cfwl_scrollbartp.h │ ├── cfwl_utils.h │ ├── cfwl_widgettp.cpp │ └── cfwl_widgettp.h └── fxfa ├── BUILD.gn ├── DEPS ├── README.md ├── cxfa_eventparam.cpp ├── cxfa_eventparam.h ├── cxfa_ffapp.cpp ├── cxfa_ffapp.h ├── cxfa_ffarc.cpp ├── cxfa_ffarc.h ├── cxfa_ffbarcode.cpp ├── cxfa_ffbarcode.h ├── cxfa_ffbarcode_unittest.cpp ├── cxfa_ffcheckbutton.cpp ├── cxfa_ffcheckbutton.h ├── cxfa_ffcombobox.cpp ├── cxfa_ffcombobox.h ├── cxfa_ffdatetimeedit.cpp ├── cxfa_ffdatetimeedit.h ├── cxfa_ffdoc.cpp ├── cxfa_ffdoc.h ├── cxfa_ffdocview.cpp ├── cxfa_ffdocview.h ├── cxfa_ffdropdown.cpp ├── cxfa_ffdropdown.h ├── cxfa_ffexclgroup.cpp ├── cxfa_ffexclgroup.h ├── cxfa_fffield.cpp ├── cxfa_fffield.h ├── cxfa_ffimage.cpp ├── cxfa_ffimage.h ├── cxfa_ffimageedit.cpp ├── cxfa_ffimageedit.h ├── cxfa_ffline.cpp ├── cxfa_ffline.h ├── cxfa_fflistbox.cpp ├── cxfa_fflistbox.h ├── cxfa_ffnotify.cpp ├── cxfa_ffnotify.h ├── cxfa_ffnumericedit.cpp ├── cxfa_ffnumericedit.h ├── cxfa_ffpageview.cpp ├── cxfa_ffpageview.h ├── cxfa_ffpasswordedit.cpp ├── cxfa_ffpasswordedit.h ├── cxfa_ffpushbutton.cpp ├── cxfa_ffpushbutton.h ├── cxfa_ffrectangle.cpp ├── cxfa_ffrectangle.h ├── cxfa_ffsignature.cpp ├── cxfa_ffsignature.h ├── cxfa_fftext.cpp ├── cxfa_fftext.h ├── cxfa_fftextedit.cpp ├── cxfa_fftextedit.h ├── cxfa_ffwidget.cpp ├── cxfa_ffwidget.h ├── cxfa_ffwidget_type.h ├── cxfa_ffwidgethandler.cpp ├── cxfa_ffwidgethandler.h ├── cxfa_fontmgr.cpp ├── cxfa_fontmgr.h ├── cxfa_fwladapterwidgetmgr.cpp ├── cxfa_fwladapterwidgetmgr.h ├── cxfa_fwltheme.cpp ├── cxfa_fwltheme.h ├── cxfa_imagerenderer.cpp ├── cxfa_imagerenderer.h ├── cxfa_readynodeiterator.cpp ├── cxfa_readynodeiterator.h ├── cxfa_textlayout.cpp ├── cxfa_textlayout.h ├── cxfa_textparser.cpp ├── cxfa_textparser.h ├── cxfa_textparser_unittest.cpp ├── cxfa_textprovider.cpp ├── cxfa_textprovider.h ├── cxfa_texttabstopscontext.cpp ├── cxfa_texttabstopscontext.h ├── formcalc ├── BUILD.gn ├── DEPS ├── cxfa_fmexpression.cpp ├── cxfa_fmexpression.h ├── cxfa_fmexpression_unittest.cpp ├── cxfa_fmlexer.cpp ├── cxfa_fmlexer.h ├── cxfa_fmlexer_unittest.cpp ├── cxfa_fmparser.cpp ├── cxfa_fmparser.h ├── cxfa_fmparser_unittest.cpp ├── cxfa_fmtojavascriptdepth.cpp └── cxfa_fmtojavascriptdepth.h ├── fxfa.h ├── fxfa_basic.h ├── fxfa_basic_unittest.cpp ├── layout ├── BUILD.gn ├── DEPS ├── cxfa_contentlayoutitem.cpp ├── cxfa_contentlayoutitem.h ├── cxfa_contentlayoutprocessor.cpp ├── cxfa_contentlayoutprocessor.h ├── cxfa_layoutitem.cpp ├── cxfa_layoutitem.h ├── cxfa_layoutitem_embeddertest.cpp ├── cxfa_layoutprocessor.cpp ├── cxfa_layoutprocessor.h ├── cxfa_traversestrategy_layoutitem.h ├── cxfa_viewlayoutitem.cpp ├── cxfa_viewlayoutitem.h ├── cxfa_viewlayoutprocessor.cpp └── cxfa_viewlayoutprocessor.h └── parser ├── BUILD.gn ├── DEPS ├── attribute_values.inc ├── attributes.inc ├── cscript_datawindow.cpp ├── cscript_datawindow.h ├── cscript_eventpseudomodel.cpp ├── cscript_eventpseudomodel.h ├── cscript_hostpseudomodel.cpp ├── cscript_hostpseudomodel.h ├── cscript_layoutpseudomodel.cpp ├── cscript_layoutpseudomodel.h ├── cscript_logpseudomodel.cpp ├── cscript_logpseudomodel.h ├── cscript_signaturepseudomodel.cpp ├── cscript_signaturepseudomodel.h ├── cxfa_accessiblecontent.cpp ├── cxfa_accessiblecontent.h ├── cxfa_acrobat.cpp ├── cxfa_acrobat.h ├── cxfa_acrobat7.cpp ├── cxfa_acrobat7.h ├── cxfa_adbe_jsconsole.cpp ├── cxfa_adbe_jsconsole.h ├── cxfa_adbe_jsdebugger.cpp ├── cxfa_adbe_jsdebugger.h ├── cxfa_addsilentprint.cpp ├── cxfa_addsilentprint.h ├── cxfa_addviewerpreferences.cpp ├── cxfa_addviewerpreferences.h ├── cxfa_adjustdata.cpp ├── cxfa_adjustdata.h ├── cxfa_adobeextensionlevel.cpp ├── cxfa_adobeextensionlevel.h ├── cxfa_agent.cpp ├── cxfa_agent.h ├── cxfa_alwaysembed.cpp ├── cxfa_alwaysembed.h ├── cxfa_amd.cpp ├── cxfa_amd.h ├── cxfa_appearancefilter.cpp ├── cxfa_appearancefilter.h ├── cxfa_arc.cpp ├── cxfa_arc.h ├── cxfa_area.cpp ├── cxfa_area.h ├── cxfa_arraynodelist.cpp ├── cxfa_arraynodelist.h ├── cxfa_assist.cpp ├── cxfa_assist.h ├── cxfa_attachnodelist.cpp ├── cxfa_attachnodelist.h ├── cxfa_attributes.cpp ├── cxfa_attributes.h ├── cxfa_autosave.cpp ├── cxfa_autosave.h ├── cxfa_barcode.cpp ├── cxfa_barcode.h ├── cxfa_base.cpp ├── cxfa_base.h ├── cxfa_batchoutput.cpp ├── cxfa_batchoutput.h ├── cxfa_behavioroverride.cpp ├── cxfa_behavioroverride.h ├── cxfa_bind.cpp ├── cxfa_bind.h ├── cxfa_binditems.cpp ├── cxfa_binditems.h ├── cxfa_bookend.cpp ├── cxfa_bookend.h ├── cxfa_boolean.cpp ├── cxfa_boolean.h ├── cxfa_border.cpp ├── cxfa_border.h ├── cxfa_box.cpp ├── cxfa_box.h ├── cxfa_break.cpp ├── cxfa_break.h ├── cxfa_breakafter.cpp ├── cxfa_breakafter.h ├── cxfa_breakbefore.cpp ├── cxfa_breakbefore.h ├── cxfa_button.cpp ├── cxfa_button.h ├── cxfa_cache.cpp ├── cxfa_cache.h ├── cxfa_calculate.cpp ├── cxfa_calculate.h ├── cxfa_calendarsymbols.cpp ├── cxfa_calendarsymbols.h ├── cxfa_caption.cpp ├── cxfa_caption.h ├── cxfa_certificate.cpp ├── cxfa_certificate.h ├── cxfa_certificates.cpp ├── cxfa_certificates.h ├── cxfa_change.cpp ├── cxfa_change.h ├── cxfa_checkbutton.cpp ├── cxfa_checkbutton.h ├── cxfa_choicelist.cpp ├── cxfa_choicelist.h ├── cxfa_color.cpp ├── cxfa_color.h ├── cxfa_comb.cpp ├── cxfa_comb.h ├── cxfa_command.cpp ├── cxfa_command.h ├── cxfa_common.cpp ├── cxfa_common.h ├── cxfa_compress.cpp ├── cxfa_compress.h ├── cxfa_compression.cpp ├── cxfa_compression.h ├── cxfa_compresslogicalstructure.cpp ├── cxfa_compresslogicalstructure.h ├── cxfa_compressobjectstream.cpp ├── cxfa_compressobjectstream.h ├── cxfa_config.cpp ├── cxfa_config.h ├── cxfa_conformance.cpp ├── cxfa_conformance.h ├── cxfa_connect.cpp ├── cxfa_connect.h ├── cxfa_connectionset.cpp ├── cxfa_connectionset.h ├── cxfa_connectstring.cpp ├── cxfa_connectstring.h ├── cxfa_contentarea.cpp ├── cxfa_contentarea.h ├── cxfa_contentcopy.cpp ├── cxfa_contentcopy.h ├── cxfa_copies.cpp ├── cxfa_copies.h ├── cxfa_corner.cpp ├── cxfa_corner.h ├── cxfa_creator.cpp ├── cxfa_creator.h ├── cxfa_currencysymbol.cpp ├── cxfa_currencysymbol.h ├── cxfa_currencysymbols.cpp ├── cxfa_currencysymbols.h ├── cxfa_currentpage.cpp ├── cxfa_currentpage.h ├── cxfa_data.cpp ├── cxfa_data.h ├── cxfa_dataexporter.cpp ├── cxfa_dataexporter.h ├── cxfa_datagroup.cpp ├── cxfa_datagroup.h ├── cxfa_datamodel.cpp ├── cxfa_datamodel.h ├── cxfa_datavalue.cpp ├── cxfa_datavalue.h ├── cxfa_date.cpp ├── cxfa_date.h ├── cxfa_datepattern.cpp ├── cxfa_datepattern.h ├── cxfa_datepatterns.cpp ├── cxfa_datepatterns.h ├── cxfa_datetime.cpp ├── cxfa_datetime.h ├── cxfa_datetimeedit.cpp ├── cxfa_datetimeedit.h ├── cxfa_datetimesymbols.cpp ├── cxfa_datetimesymbols.h ├── cxfa_day.cpp ├── cxfa_day.h ├── cxfa_daynames.cpp ├── cxfa_daynames.h ├── cxfa_debug.cpp ├── cxfa_debug.h ├── cxfa_decimal.cpp ├── cxfa_decimal.h ├── cxfa_defaulttypeface.cpp ├── cxfa_defaulttypeface.h ├── cxfa_defaultui.cpp ├── cxfa_defaultui.h ├── cxfa_delete.cpp ├── cxfa_delete.h ├── cxfa_delta.cpp ├── cxfa_delta.h ├── cxfa_desc.cpp ├── cxfa_desc.h ├── cxfa_destination.cpp ├── cxfa_destination.h ├── cxfa_digestmethod.cpp ├── cxfa_digestmethod.h ├── cxfa_digestmethods.cpp ├── cxfa_digestmethods.h ├── cxfa_document.cpp ├── cxfa_document.h ├── cxfa_document_builder.cpp ├── cxfa_document_builder.h ├── cxfa_document_builder_embeddertest.cpp ├── cxfa_document_builder_unittest.cpp ├── cxfa_document_unittest.cpp ├── cxfa_documentassembly.cpp ├── cxfa_documentassembly.h ├── cxfa_draw.cpp ├── cxfa_draw.h ├── cxfa_driver.cpp ├── cxfa_driver.h ├── cxfa_dsigdata.cpp ├── cxfa_dsigdata.h ├── cxfa_duplexoption.cpp ├── cxfa_duplexoption.h ├── cxfa_dynamicrender.cpp ├── cxfa_dynamicrender.h ├── cxfa_edge.cpp ├── cxfa_edge.h ├── cxfa_effectiveinputpolicy.cpp ├── cxfa_effectiveinputpolicy.h ├── cxfa_effectiveoutputpolicy.cpp ├── cxfa_effectiveoutputpolicy.h ├── cxfa_embed.cpp ├── cxfa_embed.h ├── cxfa_encoding.cpp ├── cxfa_encoding.h ├── cxfa_encodings.cpp ├── cxfa_encodings.h ├── cxfa_encrypt.cpp ├── cxfa_encrypt.h ├── cxfa_encryption.cpp ├── cxfa_encryption.h ├── cxfa_encryptionlevel.cpp ├── cxfa_encryptionlevel.h ├── cxfa_encryptionmethod.cpp ├── cxfa_encryptionmethod.h ├── cxfa_encryptionmethods.cpp ├── cxfa_encryptionmethods.h ├── cxfa_enforce.cpp ├── cxfa_enforce.h ├── cxfa_equate.cpp ├── cxfa_equate.h ├── cxfa_equaterange.cpp ├── cxfa_equaterange.h ├── cxfa_era.cpp ├── cxfa_era.h ├── cxfa_eranames.cpp ├── cxfa_eranames.h ├── cxfa_event.cpp ├── cxfa_event.h ├── cxfa_exclgroup.cpp ├── cxfa_exclgroup.h ├── cxfa_exclude.cpp ├── cxfa_exclude.h ├── cxfa_excludens.cpp ├── cxfa_excludens.h ├── cxfa_exdata.cpp ├── cxfa_exdata.h ├── cxfa_execute.cpp ├── cxfa_execute.h ├── cxfa_exobject.cpp ├── cxfa_exobject.h ├── cxfa_extras.cpp ├── cxfa_extras.h ├── cxfa_field.cpp ├── cxfa_field.h ├── cxfa_fill.cpp ├── cxfa_fill.h ├── cxfa_filter.cpp ├── cxfa_filter.h ├── cxfa_fliplabel.cpp ├── cxfa_fliplabel.h ├── cxfa_float.cpp ├── cxfa_float.h ├── cxfa_font.cpp ├── cxfa_font.h ├── cxfa_fontinfo.cpp ├── cxfa_fontinfo.h ├── cxfa_form.cpp ├── cxfa_form.h ├── cxfa_format.cpp ├── cxfa_format.h ├── cxfa_formfieldfilling.cpp ├── cxfa_formfieldfilling.h ├── cxfa_groupparent.cpp ├── cxfa_groupparent.h ├── cxfa_handler.cpp ├── cxfa_handler.h ├── cxfa_hyphenation.cpp ├── cxfa_hyphenation.h ├── cxfa_ifempty.cpp ├── cxfa_ifempty.h ├── cxfa_image.cpp ├── cxfa_image.h ├── cxfa_imageedit.cpp ├── cxfa_imageedit.h ├── cxfa_includexdpcontent.cpp ├── cxfa_includexdpcontent.h ├── cxfa_incrementalload.cpp ├── cxfa_incrementalload.h ├── cxfa_incrementalmerge.cpp ├── cxfa_incrementalmerge.h ├── cxfa_insert.cpp ├── cxfa_insert.h ├── cxfa_instancemanager.cpp ├── cxfa_instancemanager.h ├── cxfa_integer.cpp ├── cxfa_integer.h ├── cxfa_interactive.cpp ├── cxfa_interactive.h ├── cxfa_issuers.cpp ├── cxfa_issuers.h ├── cxfa_items.cpp ├── cxfa_items.h ├── cxfa_jog.cpp ├── cxfa_jog.h ├── cxfa_keep.cpp ├── cxfa_keep.h ├── cxfa_keyusage.cpp ├── cxfa_keyusage.h ├── cxfa_labelprinter.cpp ├── cxfa_labelprinter.h ├── cxfa_layout.cpp ├── cxfa_layout.h ├── cxfa_level.cpp ├── cxfa_level.h ├── cxfa_line.cpp ├── cxfa_line.h ├── cxfa_linear.cpp ├── cxfa_linear.h ├── cxfa_linearized.cpp ├── cxfa_linearized.h ├── cxfa_list.cpp ├── cxfa_list.h ├── cxfa_locale.cpp ├── cxfa_locale.h ├── cxfa_localemgr.cpp ├── cxfa_localemgr.h ├── cxfa_localeset.cpp ├── cxfa_localeset.h ├── cxfa_localevalue.cpp ├── cxfa_localevalue.h ├── cxfa_localevalue_unittest.cpp ├── cxfa_lockdocument.cpp ├── cxfa_lockdocument.h ├── cxfa_log.cpp ├── cxfa_log.h ├── cxfa_manifest.cpp ├── cxfa_manifest.h ├── cxfa_map.cpp ├── cxfa_map.h ├── cxfa_margin.cpp ├── cxfa_margin.h ├── cxfa_mdp.cpp ├── cxfa_mdp.h ├── cxfa_measurement.cpp ├── cxfa_measurement.h ├── cxfa_measurement_unittest.cpp ├── cxfa_medium.cpp ├── cxfa_medium.h ├── cxfa_mediuminfo.cpp ├── cxfa_mediuminfo.h ├── cxfa_meridiem.cpp ├── cxfa_meridiem.h ├── cxfa_meridiemnames.cpp ├── cxfa_meridiemnames.h ├── cxfa_message.cpp ├── cxfa_message.h ├── cxfa_messaging.cpp ├── cxfa_messaging.h ├── cxfa_mode.cpp ├── cxfa_mode.h ├── cxfa_modifyannots.cpp ├── cxfa_modifyannots.h ├── cxfa_month.cpp ├── cxfa_month.h ├── cxfa_monthnames.cpp ├── cxfa_monthnames.h ├── cxfa_msgid.cpp ├── cxfa_msgid.h ├── cxfa_nameattr.cpp ├── cxfa_nameattr.h ├── cxfa_neverembed.cpp ├── cxfa_neverembed.h ├── cxfa_node.cpp ├── cxfa_node.h ├── cxfa_node_unittest.cpp ├── cxfa_nodeiteratortemplate.h ├── cxfa_nodeiteratortemplate_unittest.cpp ├── cxfa_nodelocale.cpp ├── cxfa_nodelocale.h ├── cxfa_nodeowner.cpp ├── cxfa_nodeowner.h ├── cxfa_numberofcopies.cpp ├── cxfa_numberofcopies.h ├── cxfa_numberpattern.cpp ├── cxfa_numberpattern.h ├── cxfa_numberpatterns.cpp ├── cxfa_numberpatterns.h ├── cxfa_numbersymbol.cpp ├── cxfa_numbersymbol.h ├── cxfa_numbersymbols.cpp ├── cxfa_numbersymbols.h ├── cxfa_numericedit.cpp ├── cxfa_numericedit.h ├── cxfa_object.cpp ├── cxfa_object.h ├── cxfa_occur.cpp ├── cxfa_occur.h ├── cxfa_oid.cpp ├── cxfa_oid.h ├── cxfa_oids.cpp ├── cxfa_oids.h ├── cxfa_openaction.cpp ├── cxfa_openaction.h ├── cxfa_operation.cpp ├── cxfa_operation.h ├── cxfa_output.cpp ├── cxfa_output.h ├── cxfa_outputbin.cpp ├── cxfa_outputbin.h ├── cxfa_outputxsl.cpp ├── cxfa_outputxsl.h ├── cxfa_overflow.cpp ├── cxfa_overflow.h ├── cxfa_overprint.cpp ├── cxfa_overprint.h ├── cxfa_packet.cpp ├── cxfa_packet.h ├── cxfa_packets.cpp ├── cxfa_packets.h ├── cxfa_pagearea.cpp ├── cxfa_pagearea.h ├── cxfa_pageoffset.cpp ├── cxfa_pageoffset.h ├── cxfa_pagerange.cpp ├── cxfa_pagerange.h ├── cxfa_pageset.cpp ├── cxfa_pageset.h ├── cxfa_pagination.cpp ├── cxfa_pagination.h ├── cxfa_paginationoverride.cpp ├── cxfa_paginationoverride.h ├── cxfa_para.cpp ├── cxfa_para.h ├── cxfa_part.cpp ├── cxfa_part.h ├── cxfa_password.cpp ├── cxfa_password.h ├── cxfa_passwordedit.cpp ├── cxfa_passwordedit.h ├── cxfa_pattern.cpp ├── cxfa_pattern.h ├── cxfa_pcl.cpp ├── cxfa_pcl.h ├── cxfa_pdf.cpp ├── cxfa_pdf.h ├── cxfa_pdfa.cpp ├── cxfa_pdfa.h ├── cxfa_permissions.cpp ├── cxfa_permissions.h ├── cxfa_picktraybypdfsize.cpp ├── cxfa_picktraybypdfsize.h ├── cxfa_picture.cpp ├── cxfa_picture.h ├── cxfa_plaintextmetadata.cpp ├── cxfa_plaintextmetadata.h ├── cxfa_presence.cpp ├── cxfa_presence.h ├── cxfa_present.cpp ├── cxfa_present.h ├── cxfa_print.cpp ├── cxfa_print.h ├── cxfa_printername.cpp ├── cxfa_printername.h ├── cxfa_printhighquality.cpp ├── cxfa_printhighquality.h ├── cxfa_printscaling.cpp ├── cxfa_printscaling.h ├── cxfa_producer.cpp ├── cxfa_producer.h ├── cxfa_proto.cpp ├── cxfa_proto.h ├── cxfa_ps.cpp ├── cxfa_ps.h ├── cxfa_psmap.cpp ├── cxfa_psmap.h ├── cxfa_query.cpp ├── cxfa_query.h ├── cxfa_radial.cpp ├── cxfa_radial.h ├── cxfa_range.cpp ├── cxfa_range.h ├── cxfa_reason.cpp ├── cxfa_reason.h ├── cxfa_reasons.cpp ├── cxfa_reasons.h ├── cxfa_record.cpp ├── cxfa_record.h ├── cxfa_recordset.cpp ├── cxfa_recordset.h ├── cxfa_rectangle.cpp ├── cxfa_rectangle.h ├── cxfa_ref.cpp ├── cxfa_ref.h ├── cxfa_relevant.cpp ├── cxfa_relevant.h ├── cxfa_rename.cpp ├── cxfa_rename.h ├── cxfa_renderpolicy.cpp ├── cxfa_renderpolicy.h ├── cxfa_rootelement.cpp ├── cxfa_rootelement.h ├── cxfa_runscripts.cpp ├── cxfa_runscripts.h ├── cxfa_script.cpp ├── cxfa_script.h ├── cxfa_scriptmodel.cpp ├── cxfa_scriptmodel.h ├── cxfa_select.cpp ├── cxfa_select.h ├── cxfa_setproperty.cpp ├── cxfa_setproperty.h ├── cxfa_severity.cpp ├── cxfa_severity.h ├── cxfa_sharptext.cpp ├── cxfa_sharptext.h ├── cxfa_sharpxhtml.cpp ├── cxfa_sharpxhtml.h ├── cxfa_sharpxml.cpp ├── cxfa_sharpxml.h ├── cxfa_signature.cpp ├── cxfa_signature.h ├── cxfa_signatureproperties.cpp ├── cxfa_signatureproperties.h ├── cxfa_signdata.cpp ├── cxfa_signdata.h ├── cxfa_signing.cpp ├── cxfa_signing.h ├── cxfa_silentprint.cpp ├── cxfa_silentprint.h ├── cxfa_soapaction.cpp ├── cxfa_soapaction.h ├── cxfa_soapaddress.cpp ├── cxfa_soapaddress.h ├── cxfa_solid.cpp ├── cxfa_solid.h ├── cxfa_source.cpp ├── cxfa_source.h ├── cxfa_sourceset.cpp ├── cxfa_sourceset.h ├── cxfa_speak.cpp ├── cxfa_speak.h ├── cxfa_staple.cpp ├── cxfa_staple.h ├── cxfa_startnode.cpp ├── cxfa_startnode.h ├── cxfa_startpage.cpp ├── cxfa_startpage.h ├── cxfa_stipple.cpp ├── cxfa_stipple.h ├── cxfa_stroke.cpp ├── cxfa_stroke.h ├── cxfa_subform.cpp ├── cxfa_subform.h ├── cxfa_subformset.cpp ├── cxfa_subformset.h ├── cxfa_subjectdn.cpp ├── cxfa_subjectdn.h ├── cxfa_subjectdns.cpp ├── cxfa_subjectdns.h ├── cxfa_submit.cpp ├── cxfa_submit.h ├── cxfa_submitformat.cpp ├── cxfa_submitformat.h ├── cxfa_submiturl.cpp ├── cxfa_submiturl.h ├── cxfa_subsetbelow.cpp ├── cxfa_subsetbelow.h ├── cxfa_suppressbanner.cpp ├── cxfa_suppressbanner.h ├── cxfa_tagged.cpp ├── cxfa_tagged.h ├── cxfa_template.cpp ├── cxfa_template.h ├── cxfa_templatecache.cpp ├── cxfa_templatecache.h ├── cxfa_text.cpp ├── cxfa_text.h ├── cxfa_textedit.cpp ├── cxfa_textedit.h ├── cxfa_thisproxy.cpp ├── cxfa_thisproxy.h ├── cxfa_threshold.cpp ├── cxfa_threshold.h ├── cxfa_time.cpp ├── cxfa_time.h ├── cxfa_timepattern.cpp ├── cxfa_timepattern.h ├── cxfa_timepatterns.cpp ├── cxfa_timepatterns.h ├── cxfa_timestamp.cpp ├── cxfa_timestamp.h ├── cxfa_timezoneprovider.cpp ├── cxfa_timezoneprovider.h ├── cxfa_timezoneprovider_unittest.cpp ├── cxfa_to.cpp ├── cxfa_to.h ├── cxfa_tooltip.cpp ├── cxfa_tooltip.h ├── cxfa_trace.cpp ├── cxfa_trace.h ├── cxfa_transform.cpp ├── cxfa_transform.h ├── cxfa_traversal.cpp ├── cxfa_traversal.h ├── cxfa_traverse.cpp ├── cxfa_traverse.h ├── cxfa_traversestrategy_xfacontainernode.h ├── cxfa_traversestrategy_xfanode.h ├── cxfa_treelist.cpp ├── cxfa_treelist.h ├── cxfa_type.cpp ├── cxfa_type.h ├── cxfa_typeface.cpp ├── cxfa_typeface.h ├── cxfa_typefaces.cpp ├── cxfa_typefaces.h ├── cxfa_ui.cpp ├── cxfa_ui.h ├── cxfa_update.cpp ├── cxfa_update.h ├── cxfa_uri.cpp ├── cxfa_uri.h ├── cxfa_user.cpp ├── cxfa_user.h ├── cxfa_validate.cpp ├── cxfa_validate.h ├── cxfa_validateapprovalsignatures.cpp ├── cxfa_validateapprovalsignatures.h ├── cxfa_validationmessaging.cpp ├── cxfa_validationmessaging.h ├── cxfa_value.cpp ├── cxfa_value.h ├── cxfa_variables.cpp ├── cxfa_variables.h ├── cxfa_version.cpp ├── cxfa_version.h ├── cxfa_versioncontrol.cpp ├── cxfa_versioncontrol.h ├── cxfa_viewerpreferences.cpp ├── cxfa_viewerpreferences.h ├── cxfa_webclient.cpp ├── cxfa_webclient.h ├── cxfa_whitespace.cpp ├── cxfa_whitespace.h ├── cxfa_window.cpp ├── cxfa_window.h ├── cxfa_wsdladdress.cpp ├── cxfa_wsdladdress.h ├── cxfa_wsdlconnection.cpp ├── cxfa_wsdlconnection.h ├── cxfa_xdc.cpp ├── cxfa_xdc.h ├── cxfa_xdp.cpp ├── cxfa_xdp.h ├── cxfa_xfa.cpp ├── cxfa_xfa.h ├── cxfa_xmlconnection.cpp ├── cxfa_xmlconnection.h ├── cxfa_xmllocale.cpp ├── cxfa_xmllocale.h ├── cxfa_xmllocale_unittest.cpp ├── cxfa_xsdconnection.cpp ├── cxfa_xsdconnection.h ├── cxfa_xsl.cpp ├── cxfa_xsl.h ├── cxfa_zpl.cpp ├── cxfa_zpl.h ├── element_attributes.inc ├── elements.inc ├── gced_locale_iface.h ├── packets.inc ├── xfa_basic_data.cpp ├── xfa_basic_data.h ├── xfa_basic_data_unittest.cpp ├── xfa_document_datamerger_imp.cpp ├── xfa_document_datamerger_imp.h ├── xfa_utils.cpp ├── xfa_utils.h └── xfa_utils_unittest.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/.gitignore -------------------------------------------------------------------------------- /.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/.gn -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/.style.yapf -------------------------------------------------------------------------------- /.vpython3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/.vpython3 -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/BUILD.gn -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/DEPS -------------------------------------------------------------------------------- /DIR_METADATA: -------------------------------------------------------------------------------- 1 | buganizer_public: { 2 | component_id: 1586257 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/OWNERS -------------------------------------------------------------------------------- /PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/PRESUBMIT.py -------------------------------------------------------------------------------- /PRESUBMIT_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/PRESUBMIT_test.py -------------------------------------------------------------------------------- /PRESUBMIT_test_mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/PRESUBMIT_test_mocks.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/README.md -------------------------------------------------------------------------------- /codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/codereview.settings -------------------------------------------------------------------------------- /constants/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/BUILD.gn -------------------------------------------------------------------------------- /constants/access_permissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/access_permissions.h -------------------------------------------------------------------------------- /constants/annotation_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/annotation_common.h -------------------------------------------------------------------------------- /constants/annotation_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/annotation_flags.h -------------------------------------------------------------------------------- /constants/appearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/appearance.h -------------------------------------------------------------------------------- /constants/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/ascii.h -------------------------------------------------------------------------------- /constants/font_encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/font_encodings.h -------------------------------------------------------------------------------- /constants/form_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/form_fields.h -------------------------------------------------------------------------------- /constants/form_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/form_flags.h -------------------------------------------------------------------------------- /constants/page_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/page_object.h -------------------------------------------------------------------------------- /constants/stream_dict_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/stream_dict_common.h -------------------------------------------------------------------------------- /constants/transparency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/constants/transparency.h -------------------------------------------------------------------------------- /core/fdrm/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fdrm/BUILD.gn -------------------------------------------------------------------------------- /core/fdrm/fx_crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fdrm/fx_crypt.cpp -------------------------------------------------------------------------------- /core/fdrm/fx_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fdrm/fx_crypt.h -------------------------------------------------------------------------------- /core/fdrm/fx_crypt_aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fdrm/fx_crypt_aes.cpp -------------------------------------------------------------------------------- /core/fdrm/fx_crypt_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fdrm/fx_crypt_aes.h -------------------------------------------------------------------------------- /core/fdrm/fx_crypt_sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fdrm/fx_crypt_sha.cpp -------------------------------------------------------------------------------- /core/fdrm/fx_crypt_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fdrm/fx_crypt_sha.h -------------------------------------------------------------------------------- /core/fdrm/fx_crypt_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fdrm/fx_crypt_unittest.cpp -------------------------------------------------------------------------------- /core/fpdfapi/cmaps/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/cmaps/BUILD.gn -------------------------------------------------------------------------------- /core/fpdfapi/cmaps/fpdf_cmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/cmaps/fpdf_cmaps.h -------------------------------------------------------------------------------- /core/fpdfapi/edit/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/edit/BUILD.gn -------------------------------------------------------------------------------- /core/fpdfapi/font/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/font/BUILD.gn -------------------------------------------------------------------------------- /core/fpdfapi/font/cpdf_cmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/font/cpdf_cmap.cpp -------------------------------------------------------------------------------- /core/fpdfapi/font/cpdf_cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/font/cpdf_cmap.h -------------------------------------------------------------------------------- /core/fpdfapi/font/cpdf_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/font/cpdf_font.cpp -------------------------------------------------------------------------------- /core/fpdfapi/font/cpdf_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/font/cpdf_font.h -------------------------------------------------------------------------------- /core/fpdfapi/page/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/BUILD.gn -------------------------------------------------------------------------------- /core/fpdfapi/page/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/DEPS -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_color.h -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_dib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_dib.cpp -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_dib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_dib.h -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_form.cpp -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_form.h -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_image.h -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_page.cpp -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_page.h -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_path.cpp -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_path.h -------------------------------------------------------------------------------- /core/fpdfapi/page/cpdf_psfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/cpdf_psfunc.h -------------------------------------------------------------------------------- /core/fpdfapi/page/ipdf_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/page/ipdf_page.h -------------------------------------------------------------------------------- /core/fpdfapi/parser/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/parser/BUILD.gn -------------------------------------------------------------------------------- /core/fpdfapi/parser/cpdf_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/parser/cpdf_name.h -------------------------------------------------------------------------------- /core/fpdfapi/parser/cpdf_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/parser/cpdf_null.h -------------------------------------------------------------------------------- /core/fpdfapi/render/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfapi/render/BUILD.gn -------------------------------------------------------------------------------- /core/fpdfdoc/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/BUILD.gn -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_aaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_aaction.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_aaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_aaction.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_action.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_action.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_annot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_annot.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_annot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_annot.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_annotlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_annotlist.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_annotlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_annotlist.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_apsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_apsettings.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_bafontmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_bafontmap.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_bafontmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_bafontmap.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_bookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_bookmark.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_bookmark.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_color_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_color_utils.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_dest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_dest.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_dest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_dest.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_filespec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_filespec.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_filespec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_filespec.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_formcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_formcontrol.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_formfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_formfield.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_formfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_formfield.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_generateap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_generateap.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_icon.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_icon.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_iconfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_iconfit.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_iconfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_iconfit.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_link.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_link.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_linklist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_linklist.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_linklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_linklist.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_metadata.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_metadata.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_nametree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_nametree.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_nametree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_nametree.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_numbertree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_numbertree.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_pagelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_pagelabel.cpp -------------------------------------------------------------------------------- /core/fpdfdoc/cpdf_pagelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpdf_pagelabel.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpvt_fontmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpvt_fontmap.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpvt_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpvt_line.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpvt_lineinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpvt_lineinfo.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpvt_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpvt_section.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpvt_word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpvt_word.h -------------------------------------------------------------------------------- /core/fpdfdoc/cpvt_wordinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/cpvt_wordinfo.h -------------------------------------------------------------------------------- /core/fpdfdoc/ipvt_fontmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdfdoc/ipvt_fontmap.h -------------------------------------------------------------------------------- /core/fpdftext/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fpdftext/BUILD.gn -------------------------------------------------------------------------------- /core/fxcodec/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/BUILD.gn -------------------------------------------------------------------------------- /core/fxcodec/bmp/fx_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/bmp/fx_bmp.h -------------------------------------------------------------------------------- /core/fxcodec/fax/faxmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/fax/faxmodule.h -------------------------------------------------------------------------------- /core/fxcodec/flate/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | '+third_party/zlib', 3 | ] 4 | -------------------------------------------------------------------------------- /core/fxcodec/fx_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/fx_codec.cpp -------------------------------------------------------------------------------- /core/fxcodec/fx_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/fx_codec.h -------------------------------------------------------------------------------- /core/fxcodec/fx_codec_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/fx_codec_def.h -------------------------------------------------------------------------------- /core/fxcodec/gif/cfx_gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/gif/cfx_gif.cpp -------------------------------------------------------------------------------- /core/fxcodec/gif/cfx_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/gif/cfx_gif.h -------------------------------------------------------------------------------- /core/fxcodec/icc/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | '+third_party/lcms', 3 | ] 4 | -------------------------------------------------------------------------------- /core/fxcodec/jpeg/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/jpeg/DEPS -------------------------------------------------------------------------------- /core/fxcodec/jpx/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | '+third_party/libopenjpeg', 3 | ] 4 | -------------------------------------------------------------------------------- /core/fxcodec/png/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/png/DEPS -------------------------------------------------------------------------------- /core/fxcodec/tiff/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcodec/tiff/DEPS -------------------------------------------------------------------------------- /core/fxcrt/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/BUILD.gn -------------------------------------------------------------------------------- /core/fxcrt/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/DEPS -------------------------------------------------------------------------------- /core/fxcrt/autonuller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/autonuller.h -------------------------------------------------------------------------------- /core/fxcrt/autorestorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/autorestorer.h -------------------------------------------------------------------------------- /core/fxcrt/binary_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/binary_buffer.cpp -------------------------------------------------------------------------------- /core/fxcrt/binary_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/binary_buffer.h -------------------------------------------------------------------------------- /core/fxcrt/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/byteorder.h -------------------------------------------------------------------------------- /core/fxcrt/bytestring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/bytestring.cpp -------------------------------------------------------------------------------- /core/fxcrt/bytestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/bytestring.h -------------------------------------------------------------------------------- /core/fxcrt/cfx_bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/cfx_bitstream.cpp -------------------------------------------------------------------------------- /core/fxcrt/cfx_bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/cfx_bitstream.h -------------------------------------------------------------------------------- /core/fxcrt/cfx_datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/cfx_datetime.cpp -------------------------------------------------------------------------------- /core/fxcrt/cfx_datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/cfx_datetime.h -------------------------------------------------------------------------------- /core/fxcrt/cfx_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/cfx_timer.cpp -------------------------------------------------------------------------------- /core/fxcrt/cfx_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/cfx_timer.h -------------------------------------------------------------------------------- /core/fxcrt/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/check.h -------------------------------------------------------------------------------- /core/fxcrt/check_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/check_op.h -------------------------------------------------------------------------------- /core/fxcrt/code_point_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/code_point_view.h -------------------------------------------------------------------------------- /core/fxcrt/css/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/css/BUILD.gn -------------------------------------------------------------------------------- /core/fxcrt/css/cfx_css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/css/cfx_css.h -------------------------------------------------------------------------------- /core/fxcrt/css/cfx_cssdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/css/cfx_cssdata.h -------------------------------------------------------------------------------- /core/fxcrt/data_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/data_vector.h -------------------------------------------------------------------------------- /core/fxcrt/debug/alias.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/debug/alias.cc -------------------------------------------------------------------------------- /core/fxcrt/debug/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/debug/alias.h -------------------------------------------------------------------------------- /core/fxcrt/fake_time_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fake_time_test.h -------------------------------------------------------------------------------- /core/fxcrt/fx_2d_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_2d_size.h -------------------------------------------------------------------------------- /core/fxcrt/fx_bidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_bidi.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_bidi.h -------------------------------------------------------------------------------- /core/fxcrt/fx_codepage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_codepage.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_codepage.h -------------------------------------------------------------------------------- /core/fxcrt/fx_coordinates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_coordinates.h -------------------------------------------------------------------------------- /core/fxcrt/fx_extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_extension.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_extension.h -------------------------------------------------------------------------------- /core/fxcrt/fx_folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_folder.h -------------------------------------------------------------------------------- /core/fxcrt/fx_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_memory.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_memory.h -------------------------------------------------------------------------------- /core/fxcrt/fx_memory_pa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_memory_pa.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_number.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_number.h -------------------------------------------------------------------------------- /core/fxcrt/fx_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_random.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_random.h -------------------------------------------------------------------------------- /core/fxcrt/fx_safe_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_safe_types.h -------------------------------------------------------------------------------- /core/fxcrt/fx_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_stream.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_stream.h -------------------------------------------------------------------------------- /core/fxcrt/fx_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_string.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_string.h -------------------------------------------------------------------------------- /core/fxcrt/fx_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_system.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_system.h -------------------------------------------------------------------------------- /core/fxcrt/fx_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_types.h -------------------------------------------------------------------------------- /core/fxcrt/fx_ucddata.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_ucddata.inc -------------------------------------------------------------------------------- /core/fxcrt/fx_unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_unicode.cpp -------------------------------------------------------------------------------- /core/fxcrt/fx_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/fx_unicode.h -------------------------------------------------------------------------------- /core/fxcrt/immediate_crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/immediate_crash.h -------------------------------------------------------------------------------- /core/fxcrt/mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/mask.h -------------------------------------------------------------------------------- /core/fxcrt/mask_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/mask_unittest.cpp -------------------------------------------------------------------------------- /core/fxcrt/maybe_owned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/maybe_owned.h -------------------------------------------------------------------------------- /core/fxcrt/notreached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/notreached.h -------------------------------------------------------------------------------- /core/fxcrt/numerics/OWNERS: -------------------------------------------------------------------------------- 1 | tsepez@chromium.org 2 | -------------------------------------------------------------------------------- /core/fxcrt/observed_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/observed_ptr.cpp -------------------------------------------------------------------------------- /core/fxcrt/observed_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/observed_ptr.h -------------------------------------------------------------------------------- /core/fxcrt/ptr_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/ptr_util.h -------------------------------------------------------------------------------- /core/fxcrt/raw_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/raw_span.h -------------------------------------------------------------------------------- /core/fxcrt/retain_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/retain_ptr.h -------------------------------------------------------------------------------- /core/fxcrt/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/span.h -------------------------------------------------------------------------------- /core/fxcrt/span_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/span_util.h -------------------------------------------------------------------------------- /core/fxcrt/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/stl_util.h -------------------------------------------------------------------------------- /core/fxcrt/string_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/string_template.h -------------------------------------------------------------------------------- /core/fxcrt/tree_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/tree_node.h -------------------------------------------------------------------------------- /core/fxcrt/unowned_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/unowned_ptr.h -------------------------------------------------------------------------------- /core/fxcrt/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/utf16.h -------------------------------------------------------------------------------- /core/fxcrt/weak_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/weak_ptr.h -------------------------------------------------------------------------------- /core/fxcrt/widestring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/widestring.cpp -------------------------------------------------------------------------------- /core/fxcrt/widestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/widestring.h -------------------------------------------------------------------------------- /core/fxcrt/widetext_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/widetext_buffer.h -------------------------------------------------------------------------------- /core/fxcrt/win/win_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/win/win_util.cc -------------------------------------------------------------------------------- /core/fxcrt/win/win_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/win/win_util.h -------------------------------------------------------------------------------- /core/fxcrt/xml/cfx_xmlnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/xml/cfx_xmlnode.h -------------------------------------------------------------------------------- /core/fxcrt/xml/cfx_xmltext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/xml/cfx_xmltext.h -------------------------------------------------------------------------------- /core/fxcrt/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/zip.h -------------------------------------------------------------------------------- /core/fxcrt/zip_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxcrt/zip_unittest.cpp -------------------------------------------------------------------------------- /core/fxge/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/BUILD.gn -------------------------------------------------------------------------------- /core/fxge/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/DEPS -------------------------------------------------------------------------------- /core/fxge/agg/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | '+third_party/agg23', 3 | ] 4 | -------------------------------------------------------------------------------- /core/fxge/calculate_pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/calculate_pitch.h -------------------------------------------------------------------------------- /core/fxge/cfx_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_color.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_color.h -------------------------------------------------------------------------------- /core/fxge/cfx_drawutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_drawutils.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_drawutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_drawutils.h -------------------------------------------------------------------------------- /core/fxge/cfx_face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_face.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_face.h -------------------------------------------------------------------------------- /core/fxge/cfx_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_font.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_font.h -------------------------------------------------------------------------------- /core/fxge/cfx_fontcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_fontcache.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_fontcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_fontcache.h -------------------------------------------------------------------------------- /core/fxge/cfx_fontmapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_fontmapper.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_fontmapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_fontmapper.h -------------------------------------------------------------------------------- /core/fxge/cfx_fontmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_fontmgr.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_fontmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_fontmgr.h -------------------------------------------------------------------------------- /core/fxge/cfx_gemodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_gemodule.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_gemodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_gemodule.h -------------------------------------------------------------------------------- /core/fxge/cfx_glyphbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_glyphbitmap.h -------------------------------------------------------------------------------- /core/fxge/cfx_glyphcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_glyphcache.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_glyphcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_glyphcache.h -------------------------------------------------------------------------------- /core/fxge/cfx_graphstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_graphstate.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_graphstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_graphstate.h -------------------------------------------------------------------------------- /core/fxge/cfx_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_path.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_path.h -------------------------------------------------------------------------------- /core/fxge/cfx_renderdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_renderdevice.h -------------------------------------------------------------------------------- /core/fxge/cfx_substfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_substfont.cpp -------------------------------------------------------------------------------- /core/fxge/cfx_substfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/cfx_substfont.h -------------------------------------------------------------------------------- /core/fxge/dib/README.md: -------------------------------------------------------------------------------- 1 | DIB stands for Device-Independent Bitmap. 2 | -------------------------------------------------------------------------------- /core/fxge/dib/blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/dib/blend.cpp -------------------------------------------------------------------------------- /core/fxge/dib/blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/dib/blend.h -------------------------------------------------------------------------------- /core/fxge/dib/cfx_dibbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/dib/cfx_dibbase.h -------------------------------------------------------------------------------- /core/fxge/dib/cfx_dibitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/dib/cfx_dibitmap.h -------------------------------------------------------------------------------- /core/fxge/dib/fx_dib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/dib/fx_dib.cpp -------------------------------------------------------------------------------- /core/fxge/dib/fx_dib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/dib/fx_dib.h -------------------------------------------------------------------------------- /core/fxge/freetype/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/freetype/DEPS -------------------------------------------------------------------------------- /core/fxge/fx_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/fx_font.cpp -------------------------------------------------------------------------------- /core/fxge/fx_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/fx_font.h -------------------------------------------------------------------------------- /core/fxge/fx_fontencoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/fx_fontencoding.h -------------------------------------------------------------------------------- /core/fxge/render_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/render_defines.h -------------------------------------------------------------------------------- /core/fxge/skia/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/skia/DEPS -------------------------------------------------------------------------------- /core/fxge/text_char_pos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/text_char_pos.cpp -------------------------------------------------------------------------------- /core/fxge/text_char_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/text_char_pos.h -------------------------------------------------------------------------------- /core/fxge/text_glyph_pos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/text_glyph_pos.cpp -------------------------------------------------------------------------------- /core/fxge/text_glyph_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/text_glyph_pos.h -------------------------------------------------------------------------------- /core/fxge/win32/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/win32/DEPS -------------------------------------------------------------------------------- /core/fxge/win32/cpsoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/core/fxge/win32/cpsoutput.h -------------------------------------------------------------------------------- /docs/code-coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/docs/code-coverage.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/pdfium-edit-guide.md: -------------------------------------------------------------------------------- 1 | # PDFium Edit Guide 2 | -------------------------------------------------------------------------------- /docs/safetynet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/docs/safetynet.md -------------------------------------------------------------------------------- /docs/v8-getting-started.md: -------------------------------------------------------------------------------- 1 | # PDFium with V8 2 | 3 | -------------------------------------------------------------------------------- /fpdfsdk/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/BUILD.gn -------------------------------------------------------------------------------- /fpdfsdk/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/DEPS -------------------------------------------------------------------------------- /fpdfsdk/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/PRESUBMIT.py -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_annot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_annot.cpp -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_annot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_annot.h -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_appstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_appstream.h -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_baannot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_baannot.cpp -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_baannot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_baannot.h -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_helpers.cpp -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_helpers.h -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_pageview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_pageview.cpp -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_pageview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_pageview.h -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_renderpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_renderpage.h -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_widget.cpp -------------------------------------------------------------------------------- /fpdfsdk/cpdfsdk_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/cpdfsdk_widget.h -------------------------------------------------------------------------------- /fpdfsdk/formfiller/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/formfiller/BUILD.gn -------------------------------------------------------------------------------- /fpdfsdk/fpdf_annot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_annot.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_attachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_attachment.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_catalog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_catalog.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_dataavail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_dataavail.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_doc.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_editimg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_editimg.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_editpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_editpage.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_editpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_editpath.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_edittext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_edittext.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_ext.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_flatten.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_formfill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_formfill.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_javascript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_javascript.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_ppo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_ppo.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_progressive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_progressive.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_save.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_save.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_searchex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_searchex.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_signature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_signature.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_structtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_structtree.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_sysfontinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_sysfontinfo.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_text.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_thumbnail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_thumbnail.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdf_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdf_view.cpp -------------------------------------------------------------------------------- /fpdfsdk/fpdfxfa/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdfxfa/BUILD.gn -------------------------------------------------------------------------------- /fpdfsdk/fpdfxfa/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/fpdfxfa/DEPS -------------------------------------------------------------------------------- /fpdfsdk/pwl/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/BUILD.gn -------------------------------------------------------------------------------- /fpdfsdk/pwl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/README.md -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_button.cpp -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_button.h -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_caret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_caret.cpp -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_caret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_caret.h -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_cbbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_cbbutton.h -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_cblistbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_cblistbox.h -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_combo_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_combo_box.h -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_edit.cpp -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_edit.h -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_edit_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_edit_impl.h -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_list_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_list_box.h -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_list_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_list_ctrl.h -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_sbbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_sbbutton.h -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_wnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_wnd.cpp -------------------------------------------------------------------------------- /fpdfsdk/pwl/cpwl_wnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fpdfsdk/pwl/cpwl_wnd.h -------------------------------------------------------------------------------- /fxbarcode/BC_Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/BC_Library.cpp -------------------------------------------------------------------------------- /fxbarcode/BC_Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/BC_Library.h -------------------------------------------------------------------------------- /fxbarcode/BC_TwoDimWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/BC_TwoDimWriter.h -------------------------------------------------------------------------------- /fxbarcode/BC_Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/BC_Writer.cpp -------------------------------------------------------------------------------- /fxbarcode/BC_Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/BC_Writer.h -------------------------------------------------------------------------------- /fxbarcode/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/BUILD.gn -------------------------------------------------------------------------------- /fxbarcode/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/DEPS -------------------------------------------------------------------------------- /fxbarcode/cbc_codabar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_codabar.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_codabar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_codabar.h -------------------------------------------------------------------------------- /fxbarcode/cbc_code128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_code128.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_code128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_code128.h -------------------------------------------------------------------------------- /fxbarcode/cbc_code39.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_code39.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_code39.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_code39.h -------------------------------------------------------------------------------- /fxbarcode/cbc_codebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_codebase.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_codebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_codebase.h -------------------------------------------------------------------------------- /fxbarcode/cbc_datamatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_datamatrix.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_datamatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_datamatrix.h -------------------------------------------------------------------------------- /fxbarcode/cbc_ean13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_ean13.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_ean13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_ean13.h -------------------------------------------------------------------------------- /fxbarcode/cbc_ean8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_ean8.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_ean8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_ean8.h -------------------------------------------------------------------------------- /fxbarcode/cbc_eancode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_eancode.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_eancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_eancode.h -------------------------------------------------------------------------------- /fxbarcode/cbc_onecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_onecode.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_onecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_onecode.h -------------------------------------------------------------------------------- /fxbarcode/cbc_pdf417i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_pdf417i.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_pdf417i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_pdf417i.h -------------------------------------------------------------------------------- /fxbarcode/cbc_qrcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_qrcode.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_qrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_qrcode.h -------------------------------------------------------------------------------- /fxbarcode/cbc_upca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_upca.cpp -------------------------------------------------------------------------------- /fxbarcode/cbc_upca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cbc_upca.h -------------------------------------------------------------------------------- /fxbarcode/cfx_barcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cfx_barcode.cpp -------------------------------------------------------------------------------- /fxbarcode/cfx_barcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/cfx_barcode.h -------------------------------------------------------------------------------- /fxbarcode/pdf417/BC_PDF417.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxbarcode/pdf417/BC_PDF417.h -------------------------------------------------------------------------------- /fxjs/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/BUILD.gn -------------------------------------------------------------------------------- /fxjs/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/DEPS -------------------------------------------------------------------------------- /fxjs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/README -------------------------------------------------------------------------------- /fxjs/cfx_globaldata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cfx_globaldata.cpp -------------------------------------------------------------------------------- /fxjs/cfx_globaldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cfx_globaldata.h -------------------------------------------------------------------------------- /fxjs/cfx_keyvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cfx_keyvalue.cpp -------------------------------------------------------------------------------- /fxjs/cfx_keyvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cfx_keyvalue.h -------------------------------------------------------------------------------- /fxjs/cfx_v8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cfx_v8.cpp -------------------------------------------------------------------------------- /fxjs/cfx_v8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cfx_v8.h -------------------------------------------------------------------------------- /fxjs/cfx_v8_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cfx_v8_unittest.cpp -------------------------------------------------------------------------------- /fxjs/cfxjs_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cfxjs_engine.cpp -------------------------------------------------------------------------------- /fxjs/cfxjs_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cfxjs_engine.h -------------------------------------------------------------------------------- /fxjs/cjs_annot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_annot.cpp -------------------------------------------------------------------------------- /fxjs/cjs_annot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_annot.h -------------------------------------------------------------------------------- /fxjs/cjs_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_app.cpp -------------------------------------------------------------------------------- /fxjs/cjs_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_app.h -------------------------------------------------------------------------------- /fxjs/cjs_border.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_border.cpp -------------------------------------------------------------------------------- /fxjs/cjs_border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_border.h -------------------------------------------------------------------------------- /fxjs/cjs_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_color.cpp -------------------------------------------------------------------------------- /fxjs/cjs_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_color.h -------------------------------------------------------------------------------- /fxjs/cjs_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_console.cpp -------------------------------------------------------------------------------- /fxjs/cjs_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_console.h -------------------------------------------------------------------------------- /fxjs/cjs_delaydata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_delaydata.cpp -------------------------------------------------------------------------------- /fxjs/cjs_delaydata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_delaydata.h -------------------------------------------------------------------------------- /fxjs/cjs_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_display.cpp -------------------------------------------------------------------------------- /fxjs/cjs_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_display.h -------------------------------------------------------------------------------- /fxjs/cjs_document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_document.cpp -------------------------------------------------------------------------------- /fxjs/cjs_document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_document.h -------------------------------------------------------------------------------- /fxjs/cjs_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_event.cpp -------------------------------------------------------------------------------- /fxjs/cjs_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_event.h -------------------------------------------------------------------------------- /fxjs/cjs_event_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_event_context.cpp -------------------------------------------------------------------------------- /fxjs/cjs_event_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_event_context.h -------------------------------------------------------------------------------- /fxjs/cjs_field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_field.cpp -------------------------------------------------------------------------------- /fxjs/cjs_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_field.h -------------------------------------------------------------------------------- /fxjs/cjs_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_font.cpp -------------------------------------------------------------------------------- /fxjs/cjs_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_font.h -------------------------------------------------------------------------------- /fxjs/cjs_global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_global.cpp -------------------------------------------------------------------------------- /fxjs/cjs_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_global.h -------------------------------------------------------------------------------- /fxjs/cjs_globalarrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_globalarrays.cpp -------------------------------------------------------------------------------- /fxjs/cjs_globalarrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_globalarrays.h -------------------------------------------------------------------------------- /fxjs/cjs_globalconsts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_globalconsts.cpp -------------------------------------------------------------------------------- /fxjs/cjs_globalconsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_globalconsts.h -------------------------------------------------------------------------------- /fxjs/cjs_highlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_highlight.cpp -------------------------------------------------------------------------------- /fxjs/cjs_highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_highlight.h -------------------------------------------------------------------------------- /fxjs/cjs_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_icon.cpp -------------------------------------------------------------------------------- /fxjs/cjs_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_icon.h -------------------------------------------------------------------------------- /fxjs/cjs_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_object.cpp -------------------------------------------------------------------------------- /fxjs/cjs_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_object.h -------------------------------------------------------------------------------- /fxjs/cjs_position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_position.cpp -------------------------------------------------------------------------------- /fxjs/cjs_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_position.h -------------------------------------------------------------------------------- /fxjs/cjs_publicmethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_publicmethods.cpp -------------------------------------------------------------------------------- /fxjs/cjs_publicmethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_publicmethods.h -------------------------------------------------------------------------------- /fxjs/cjs_result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_result.cpp -------------------------------------------------------------------------------- /fxjs/cjs_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_result.h -------------------------------------------------------------------------------- /fxjs/cjs_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_runtime.cpp -------------------------------------------------------------------------------- /fxjs/cjs_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_runtime.h -------------------------------------------------------------------------------- /fxjs/cjs_runtimestub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_runtimestub.cpp -------------------------------------------------------------------------------- /fxjs/cjs_runtimestub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_runtimestub.h -------------------------------------------------------------------------------- /fxjs/cjs_scalehow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_scalehow.cpp -------------------------------------------------------------------------------- /fxjs/cjs_scalehow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_scalehow.h -------------------------------------------------------------------------------- /fxjs/cjs_scalewhen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_scalewhen.cpp -------------------------------------------------------------------------------- /fxjs/cjs_scalewhen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_scalewhen.h -------------------------------------------------------------------------------- /fxjs/cjs_style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_style.cpp -------------------------------------------------------------------------------- /fxjs/cjs_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_style.h -------------------------------------------------------------------------------- /fxjs/cjs_timerobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_timerobj.cpp -------------------------------------------------------------------------------- /fxjs/cjs_timerobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_timerobj.h -------------------------------------------------------------------------------- /fxjs/cjs_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_util.cpp -------------------------------------------------------------------------------- /fxjs/cjs_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_util.h -------------------------------------------------------------------------------- /fxjs/cjs_util_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_util_unittest.cpp -------------------------------------------------------------------------------- /fxjs/cjs_zoomtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_zoomtype.cpp -------------------------------------------------------------------------------- /fxjs/cjs_zoomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/cjs_zoomtype.h -------------------------------------------------------------------------------- /fxjs/fx_date_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/fx_date_helpers.cpp -------------------------------------------------------------------------------- /fxjs/fx_date_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/fx_date_helpers.h -------------------------------------------------------------------------------- /fxjs/fxv8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/fxv8.cpp -------------------------------------------------------------------------------- /fxjs/fxv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/fxv8.h -------------------------------------------------------------------------------- /fxjs/gc/container_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/gc/container_trace.h -------------------------------------------------------------------------------- /fxjs/gc/gced_tree_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/gc/gced_tree_node.h -------------------------------------------------------------------------------- /fxjs/gc/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/gc/heap.cpp -------------------------------------------------------------------------------- /fxjs/gc/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/gc/heap.h -------------------------------------------------------------------------------- /fxjs/gc/heap_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/gc/heap_unittest.cpp -------------------------------------------------------------------------------- /fxjs/gc/move_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/gc/move_unittest.cpp -------------------------------------------------------------------------------- /fxjs/global_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/global_timer.cpp -------------------------------------------------------------------------------- /fxjs/global_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/global_timer.h -------------------------------------------------------------------------------- /fxjs/ijs_event_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/ijs_event_context.h -------------------------------------------------------------------------------- /fxjs/ijs_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/ijs_runtime.cpp -------------------------------------------------------------------------------- /fxjs/ijs_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/ijs_runtime.h -------------------------------------------------------------------------------- /fxjs/js_define.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/js_define.cpp -------------------------------------------------------------------------------- /fxjs/js_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/js_define.h -------------------------------------------------------------------------------- /fxjs/js_resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/js_resources.cpp -------------------------------------------------------------------------------- /fxjs/js_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/js_resources.h -------------------------------------------------------------------------------- /fxjs/xfa/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/DEPS -------------------------------------------------------------------------------- /fxjs/xfa/cfxjse_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cfxjse_class.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cfxjse_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cfxjse_class.h -------------------------------------------------------------------------------- /fxjs/xfa/cfxjse_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cfxjse_context.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cfxjse_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cfxjse_context.h -------------------------------------------------------------------------------- /fxjs/xfa/cfxjse_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cfxjse_engine.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cfxjse_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cfxjse_engine.h -------------------------------------------------------------------------------- /fxjs/xfa/cfxjse_mapmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cfxjse_mapmodule.h -------------------------------------------------------------------------------- /fxjs/xfa/cfxjse_nodehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cfxjse_nodehelper.h -------------------------------------------------------------------------------- /fxjs/xfa/cfxjse_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cfxjse_value.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cfxjse_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cfxjse_value.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_boolean.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_boolean.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_container.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_container.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_datawindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_datawindow.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_datawindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_datawindow.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_delta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_delta.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_delta.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_desc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_desc.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_desc.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_draw.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_draw.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_encrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_encrypt.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_encrypt.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_exclgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_exclgroup.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_exclgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_exclgroup.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_extras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_extras.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_extras.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_field.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_field.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_form.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_form.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_handler.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_handler.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_list.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_list.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_manifest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_manifest.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_manifest.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_model.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_model.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_node.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_node.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_object.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_object.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_occur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_occur.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_occur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_occur.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_packet.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_packet.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_script.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_script.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_source.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_source.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_subform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_subform.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_subform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_subform.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_template.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_template.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_textnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_textnode.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_textnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_textnode.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_tree.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_tree.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_treelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_treelist.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_treelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_treelist.h -------------------------------------------------------------------------------- /fxjs/xfa/cjx_xfa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_xfa.cpp -------------------------------------------------------------------------------- /fxjs/xfa/cjx_xfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/cjx_xfa.h -------------------------------------------------------------------------------- /fxjs/xfa/fxjse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/fxjse.cpp -------------------------------------------------------------------------------- /fxjs/xfa/fxjse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/fxjse.h -------------------------------------------------------------------------------- /fxjs/xfa/jse_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/fxjs/xfa/jse_define.h -------------------------------------------------------------------------------- /navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/navbar.md -------------------------------------------------------------------------------- /pdfium.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/pdfium.gni -------------------------------------------------------------------------------- /public/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/DEPS -------------------------------------------------------------------------------- /public/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/PRESUBMIT.py -------------------------------------------------------------------------------- /public/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/README -------------------------------------------------------------------------------- /public/cpp/fpdf_deleters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/cpp/fpdf_deleters.h -------------------------------------------------------------------------------- /public/cpp/fpdf_scopers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/cpp/fpdf_scopers.h -------------------------------------------------------------------------------- /public/fpdf_annot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_annot.h -------------------------------------------------------------------------------- /public/fpdf_attachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_attachment.h -------------------------------------------------------------------------------- /public/fpdf_catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_catalog.h -------------------------------------------------------------------------------- /public/fpdf_dataavail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_dataavail.h -------------------------------------------------------------------------------- /public/fpdf_doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_doc.h -------------------------------------------------------------------------------- /public/fpdf_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_edit.h -------------------------------------------------------------------------------- /public/fpdf_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_ext.h -------------------------------------------------------------------------------- /public/fpdf_flatten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_flatten.h -------------------------------------------------------------------------------- /public/fpdf_formfill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_formfill.h -------------------------------------------------------------------------------- /public/fpdf_fwlevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_fwlevent.h -------------------------------------------------------------------------------- /public/fpdf_javascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_javascript.h -------------------------------------------------------------------------------- /public/fpdf_ppo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_ppo.h -------------------------------------------------------------------------------- /public/fpdf_progressive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_progressive.h -------------------------------------------------------------------------------- /public/fpdf_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_save.h -------------------------------------------------------------------------------- /public/fpdf_searchex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_searchex.h -------------------------------------------------------------------------------- /public/fpdf_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_signature.h -------------------------------------------------------------------------------- /public/fpdf_structtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_structtree.h -------------------------------------------------------------------------------- /public/fpdf_sysfontinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_sysfontinfo.h -------------------------------------------------------------------------------- /public/fpdf_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_text.h -------------------------------------------------------------------------------- /public/fpdf_thumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_thumbnail.h -------------------------------------------------------------------------------- /public/fpdf_transformpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdf_transformpage.h -------------------------------------------------------------------------------- /public/fpdfview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/public/fpdfview.h -------------------------------------------------------------------------------- /samples/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/samples/DEPS -------------------------------------------------------------------------------- /samples/simple_no_v8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/samples/simple_no_v8.c -------------------------------------------------------------------------------- /samples/simple_with_v8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/samples/simple_with_v8.cc -------------------------------------------------------------------------------- /skia/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/skia/BUILD.gn -------------------------------------------------------------------------------- /skia/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/skia/OWNERS -------------------------------------------------------------------------------- /skia/config/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | '+core/fxcrt', 3 | ] 4 | -------------------------------------------------------------------------------- /skia/ext/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/skia/ext/DEPS -------------------------------------------------------------------------------- /skia/ext/google_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/skia/ext/google_logging.cc -------------------------------------------------------------------------------- /skia/features.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/skia/features.gni -------------------------------------------------------------------------------- /testing/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/BUILD.gn -------------------------------------------------------------------------------- /testing/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/DEPS -------------------------------------------------------------------------------- /testing/SUPPRESSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/SUPPRESSIONS -------------------------------------------------------------------------------- /testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/embedder_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/embedder_test.cpp -------------------------------------------------------------------------------- /testing/embedder_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/embedder_test.h -------------------------------------------------------------------------------- /testing/fake_file_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/fake_file_access.cpp -------------------------------------------------------------------------------- /testing/fake_file_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/fake_file_access.h -------------------------------------------------------------------------------- /testing/font_renamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/font_renamer.cpp -------------------------------------------------------------------------------- /testing/font_renamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/font_renamer.h -------------------------------------------------------------------------------- /testing/free_deleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/free_deleter.h -------------------------------------------------------------------------------- /testing/fuzzers/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/fuzzers/BUILD.gn -------------------------------------------------------------------------------- /testing/fuzzers/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/fuzzers/DEPS -------------------------------------------------------------------------------- /testing/fxgc_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/fxgc_unittest.cpp -------------------------------------------------------------------------------- /testing/fxgc_unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/fxgc_unittest.h -------------------------------------------------------------------------------- /testing/fxv8_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/fxv8_unittest.cpp -------------------------------------------------------------------------------- /testing/fxv8_unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/fxv8_unittest.h -------------------------------------------------------------------------------- /testing/gmock/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/gmock/BUILD.gn -------------------------------------------------------------------------------- /testing/gtest/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/gtest/BUILD.gn -------------------------------------------------------------------------------- /testing/gtest/empty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/gtest/empty.cc -------------------------------------------------------------------------------- /testing/gtest_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/gtest_mac.h -------------------------------------------------------------------------------- /testing/gtest_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/gtest_mac.mm -------------------------------------------------------------------------------- /testing/helpers/dump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/helpers/dump.cc -------------------------------------------------------------------------------- /testing/helpers/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/helpers/dump.h -------------------------------------------------------------------------------- /testing/helpers/event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/helpers/event.cc -------------------------------------------------------------------------------- /testing/helpers/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/helpers/event.h -------------------------------------------------------------------------------- /testing/helpers/write.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/helpers/write.cc -------------------------------------------------------------------------------- /testing/helpers/write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/helpers/write.h -------------------------------------------------------------------------------- /testing/image_diff/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/image_diff/BUILD.gn -------------------------------------------------------------------------------- /testing/image_diff/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/image_diff/DEPS -------------------------------------------------------------------------------- /testing/js_embedder_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/js_embedder_test.cpp -------------------------------------------------------------------------------- /testing/js_embedder_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/js_embedder_test.h -------------------------------------------------------------------------------- /testing/pdfium_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/pdfium_test.cc -------------------------------------------------------------------------------- /testing/pseudo_retainable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/pseudo_retainable.h -------------------------------------------------------------------------------- /testing/range_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/range_set.cpp -------------------------------------------------------------------------------- /testing/range_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/range_set.h -------------------------------------------------------------------------------- /testing/resources/CMYK.jpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/CMYK.jpf -------------------------------------------------------------------------------- /testing/resources/RGB.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/RGB.jp2 -------------------------------------------------------------------------------- /testing/resources/annots.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/annots.in -------------------------------------------------------------------------------- /testing/resources/annots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/annots.pdf -------------------------------------------------------------------------------- /testing/resources/black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/black.pdf -------------------------------------------------------------------------------- /testing/resources/bug_113.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/bug_113.in -------------------------------------------------------------------------------- /testing/resources/bug_216.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/bug_216.in -------------------------------------------------------------------------------- /testing/resources/bug_298.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/bug_298.in -------------------------------------------------------------------------------- /testing/resources/bug_57.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/bug_57.in -------------------------------------------------------------------------------- /testing/resources/bug_57.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/bug_57.pdf -------------------------------------------------------------------------------- /testing/resources/bug_642.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/bug_642.in -------------------------------------------------------------------------------- /testing/resources/bug_644.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/bug_644.in -------------------------------------------------------------------------------- /testing/resources/bug_779.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/bug_779.in -------------------------------------------------------------------------------- /testing/resources/bug_921.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/bug_921.in -------------------------------------------------------------------------------- /testing/resources/docmdp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/docmdp.in -------------------------------------------------------------------------------- /testing/resources/docmdp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/docmdp.pdf -------------------------------------------------------------------------------- /testing/resources/gray.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/gray.jp2 -------------------------------------------------------------------------------- /testing/resources/javascript/bug_1098213_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: Done 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/bug_1142688_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: Done. 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/bug_1314658_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: done 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/bug_1335681_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: Starting 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/bug_1358075_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: completed 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/bug_421304870_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: 1 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/bug_695826_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: Done! 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/bug_959274_1_expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/resources/javascript/bug_983867_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: Finished !!! 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/console_methods_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: testing console methods 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/named_action_expected.txt: -------------------------------------------------------------------------------- 1 | Execute named action: Print 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_1017494.evt: -------------------------------------------------------------------------------- 1 | mousemove,0,0 2 | focus,87,0 3 | charcode,1 4 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_1042915_expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_1043510.evt: -------------------------------------------------------------------------------- 1 | mousedoubleclick,left,0,0 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_1054429.evt: -------------------------------------------------------------------------------- 1 | mousedown,left,61,51 2 | keycode,46 -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_1109108.evt: -------------------------------------------------------------------------------- 1 | keycode,9 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_1238_2_expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_1312736_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: done 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_985781_expected.txt: -------------------------------------------------------------------------------- 1 | Alert: Finished !!! 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_991899_expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_993771_expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_995712_expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/bug_997021_expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/resolve_nodes_1_expected.txt: -------------------------------------------------------------------------------- 1 | : Find 12 items 2 | -------------------------------------------------------------------------------- /testing/resources/javascript/xfa_specific/resolve_nodes_2_expected.txt: -------------------------------------------------------------------------------- 1 | : field 2 | -------------------------------------------------------------------------------- /testing/resources/jpx_lzw.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/jpx_lzw.in -------------------------------------------------------------------------------- /testing/resources/js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/js.in -------------------------------------------------------------------------------- /testing/resources/js.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/js.pdf -------------------------------------------------------------------------------- /testing/resources/matte.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/matte.in -------------------------------------------------------------------------------- /testing/resources/matte.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/matte.pdf -------------------------------------------------------------------------------- /testing/resources/pixel/bug_40643646.evt: -------------------------------------------------------------------------------- 1 | # Show text annotation pop-up 2 | mousemove,20,250 3 | -------------------------------------------------------------------------------- /testing/resources/utf-8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/utf-8.in -------------------------------------------------------------------------------- /testing/resources/utf-8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/resources/utf-8.pdf -------------------------------------------------------------------------------- /testing/resources/xfa_object_single_2_0.fragment: -------------------------------------------------------------------------------- 1 | {{object 2 0}} << 2 | /XFA 3 0 R 3 | >> 4 | endobj 5 | -------------------------------------------------------------------------------- /testing/resources/xfa_postamble.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testing/scoped_locale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/scoped_locale.cc -------------------------------------------------------------------------------- /testing/scoped_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/scoped_locale.h -------------------------------------------------------------------------------- /testing/scoped_set_tz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/scoped_set_tz.cpp -------------------------------------------------------------------------------- /testing/scoped_set_tz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/scoped_set_tz.h -------------------------------------------------------------------------------- /testing/test.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/test.gni -------------------------------------------------------------------------------- /testing/test_fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/test_fonts.cpp -------------------------------------------------------------------------------- /testing/test_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/test_fonts.h -------------------------------------------------------------------------------- /testing/test_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/test_loader.cpp -------------------------------------------------------------------------------- /testing/test_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/test_loader.h -------------------------------------------------------------------------------- /testing/test_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/test_support.h -------------------------------------------------------------------------------- /testing/tools/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/BUILD.gn -------------------------------------------------------------------------------- /testing/tools/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/PRESUBMIT.py -------------------------------------------------------------------------------- /testing/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/tools/api_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/api_check.py -------------------------------------------------------------------------------- /testing/tools/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/common.py -------------------------------------------------------------------------------- /testing/tools/githelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/githelper.py -------------------------------------------------------------------------------- /testing/tools/pdfium_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/pdfium_root.py -------------------------------------------------------------------------------- /testing/tools/pngdiffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/pngdiffer.py -------------------------------------------------------------------------------- /testing/tools/renumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/renumber.py -------------------------------------------------------------------------------- /testing/tools/suppressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/suppressor.py -------------------------------------------------------------------------------- /testing/tools/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/test_runner.py -------------------------------------------------------------------------------- /testing/tools/text_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/tools/text_diff.py -------------------------------------------------------------------------------- /testing/unit_test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/unit_test_main.cpp -------------------------------------------------------------------------------- /testing/utils/bitmap_saver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/utils/bitmap_saver.h -------------------------------------------------------------------------------- /testing/utils/file_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/utils/file_util.cpp -------------------------------------------------------------------------------- /testing/utils/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/utils/file_util.h -------------------------------------------------------------------------------- /testing/utils/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/utils/hash.cpp -------------------------------------------------------------------------------- /testing/utils/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/utils/hash.h -------------------------------------------------------------------------------- /testing/utils/path_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/utils/path_service.h -------------------------------------------------------------------------------- /testing/v8_initializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/v8_initializer.cpp -------------------------------------------------------------------------------- /testing/v8_initializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/testing/v8_initializer.h -------------------------------------------------------------------------------- /third_party/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/BUILD.gn -------------------------------------------------------------------------------- /third_party/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/DEPS -------------------------------------------------------------------------------- /third_party/agg23/agg_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/agg23/agg_math.h -------------------------------------------------------------------------------- /third_party/agg23/copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/agg23/copying -------------------------------------------------------------------------------- /third_party/bigint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/bigint/LICENSE -------------------------------------------------------------------------------- /third_party/fp16/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/fp16/BUILD.gn -------------------------------------------------------------------------------- /third_party/fp16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/fp16/LICENSE -------------------------------------------------------------------------------- /third_party/freetype/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/freetype/FTL.TXT -------------------------------------------------------------------------------- /third_party/freetype/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/freetype/OWNERS -------------------------------------------------------------------------------- /third_party/highway/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/highway/BUILD.gn -------------------------------------------------------------------------------- /third_party/highway/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/highway/LICENSE -------------------------------------------------------------------------------- /third_party/lcms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/lcms/LICENSE -------------------------------------------------------------------------------- /third_party/lcms/src/cmssm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/lcms/src/cmssm.c -------------------------------------------------------------------------------- /third_party/libopenjpeg/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/libopenjpeg/pi.c -------------------------------------------------------------------------------- /third_party/libopenjpeg/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/libopenjpeg/pi.h -------------------------------------------------------------------------------- /third_party/libopenjpeg/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/libopenjpeg/t1.c -------------------------------------------------------------------------------- /third_party/libopenjpeg/t1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/libopenjpeg/t1.h -------------------------------------------------------------------------------- /third_party/libopenjpeg/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/libopenjpeg/t2.c -------------------------------------------------------------------------------- /third_party/libopenjpeg/t2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/libopenjpeg/t2.h -------------------------------------------------------------------------------- /third_party/libtiff/t4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/libtiff/t4.h -------------------------------------------------------------------------------- /third_party/libtiff/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/libtiff/tiff.h -------------------------------------------------------------------------------- /third_party/libtiff/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/libtiff/tiffio.h -------------------------------------------------------------------------------- /third_party/libtiff/uvcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/third_party/libtiff/uvcode.h -------------------------------------------------------------------------------- /tools/msan/ignorelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/tools/msan/ignorelist.txt -------------------------------------------------------------------------------- /tools/ubsan/ignorelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/tools/ubsan/ignorelist.txt -------------------------------------------------------------------------------- /unsafe_buffers_paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/unsafe_buffers_paths.txt -------------------------------------------------------------------------------- /xfa/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/BUILD.gn -------------------------------------------------------------------------------- /xfa/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/DEPS -------------------------------------------------------------------------------- /xfa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/README.md -------------------------------------------------------------------------------- /xfa/fde/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fde/BUILD.gn -------------------------------------------------------------------------------- /xfa/fde/cfde_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fde/cfde_data.h -------------------------------------------------------------------------------- /xfa/fde/cfde_textout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fde/cfde_textout.cpp -------------------------------------------------------------------------------- /xfa/fde/cfde_textout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fde/cfde_textout.h -------------------------------------------------------------------------------- /xfa/fgas/README.md: -------------------------------------------------------------------------------- 1 | xfa/fgas contains utility classes used by XFA. 2 | -------------------------------------------------------------------------------- /xfa/fgas/crt/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fgas/crt/BUILD.gn -------------------------------------------------------------------------------- /xfa/fgas/crt/cfgas_decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fgas/crt/cfgas_decimal.h -------------------------------------------------------------------------------- /xfa/fgas/crt/locale_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fgas/crt/locale_iface.h -------------------------------------------------------------------------------- /xfa/fgas/font/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fgas/font/BUILD.gn -------------------------------------------------------------------------------- /xfa/fgas/font/cfgas_gefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fgas/font/cfgas_gefont.h -------------------------------------------------------------------------------- /xfa/fgas/graphics/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fgas/graphics/BUILD.gn -------------------------------------------------------------------------------- /xfa/fgas/layout/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fgas/layout/BUILD.gn -------------------------------------------------------------------------------- /xfa/fgas/layout/cfgas_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fgas/layout/cfgas_char.h -------------------------------------------------------------------------------- /xfa/fwl/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/BUILD.gn -------------------------------------------------------------------------------- /xfa/fwl/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/DEPS -------------------------------------------------------------------------------- /xfa/fwl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/README.md -------------------------------------------------------------------------------- /xfa/fwl/cfwl_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_app.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_app.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_barcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_barcode.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_barcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_barcode.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_caret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_caret.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_caret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_caret.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_checkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_checkbox.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_checkbox.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_combobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_combobox.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_combobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_combobox.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_comboedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_comboedit.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_comboedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_comboedit.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_combolist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_combolist.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_combolist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_combolist.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_datetimeedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_datetimeedit.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_edit.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_edit.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_event.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_event.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_eventmouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_eventmouse.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_eventmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_eventmouse.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_eventscroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_eventscroll.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_eventscroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_eventscroll.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_eventvalidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_eventvalidate.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_listbox.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_listbox.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_message.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_message.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_messagekey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_messagekey.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_messagekey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_messagekey.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_messagemouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_messagemouse.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_monthcalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_monthcalendar.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_notedriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_notedriver.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_notedriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_notedriver.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_picturebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_picturebox.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_picturebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_picturebox.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_pushbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_pushbutton.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_pushbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_pushbutton.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_scrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_scrollbar.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_scrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_scrollbar.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_themepart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_themepart.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_themepart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_themepart.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_themetext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_themetext.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_themetext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_themetext.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_widget.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_widget.h -------------------------------------------------------------------------------- /xfa/fwl/cfwl_widgetmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_widgetmgr.cpp -------------------------------------------------------------------------------- /xfa/fwl/cfwl_widgetmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/cfwl_widgetmgr.h -------------------------------------------------------------------------------- /xfa/fwl/fwl_widgetdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/fwl_widgetdef.cpp -------------------------------------------------------------------------------- /xfa/fwl/fwl_widgetdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/fwl_widgetdef.h -------------------------------------------------------------------------------- /xfa/fwl/fwl_widgethit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/fwl_widgethit.h -------------------------------------------------------------------------------- /xfa/fwl/ifwl_themeprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/ifwl_themeprovider.h -------------------------------------------------------------------------------- /xfa/fwl/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/theme/README.md -------------------------------------------------------------------------------- /xfa/fwl/theme/cfwl_carettp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/theme/cfwl_carettp.h -------------------------------------------------------------------------------- /xfa/fwl/theme/cfwl_edittp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/theme/cfwl_edittp.h -------------------------------------------------------------------------------- /xfa/fwl/theme/cfwl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fwl/theme/cfwl_utils.h -------------------------------------------------------------------------------- /xfa/fxfa/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/BUILD.gn -------------------------------------------------------------------------------- /xfa/fxfa/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/DEPS -------------------------------------------------------------------------------- /xfa/fxfa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/README.md -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_eventparam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_eventparam.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_eventparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_eventparam.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffapp.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffapp.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffarc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffarc.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffarc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffarc.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffbarcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffbarcode.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffbarcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffbarcode.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffcombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffcombobox.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffcombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffcombobox.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffdoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffdoc.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffdoc.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffdocview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffdocview.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffdocview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffdocview.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffdropdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffdropdown.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffdropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffdropdown.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffexclgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffexclgroup.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fffield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fffield.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fffield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fffield.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffimage.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffimage.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffimageedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffimageedit.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffline.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffline.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fflistbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fflistbox.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fflistbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fflistbox.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffnotify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffnotify.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffnotify.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffpageview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffpageview.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffpageview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffpageview.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffpushbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffpushbutton.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffrectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffrectangle.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffsignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffsignature.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fftext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fftext.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fftext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fftext.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fftextedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fftextedit.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fftextedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fftextedit.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffwidget.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_ffwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_ffwidget.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fontmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fontmgr.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fontmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fontmgr.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fwltheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fwltheme.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_fwltheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_fwltheme.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_textlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_textlayout.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_textlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_textlayout.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_textparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_textparser.cpp -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_textparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_textparser.h -------------------------------------------------------------------------------- /xfa/fxfa/cxfa_textprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/cxfa_textprovider.h -------------------------------------------------------------------------------- /xfa/fxfa/formcalc/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/formcalc/BUILD.gn -------------------------------------------------------------------------------- /xfa/fxfa/formcalc/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | '-xfa/fwl', 3 | ] 4 | -------------------------------------------------------------------------------- /xfa/fxfa/fxfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/fxfa.h -------------------------------------------------------------------------------- /xfa/fxfa/fxfa_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/fxfa_basic.h -------------------------------------------------------------------------------- /xfa/fxfa/layout/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/layout/BUILD.gn -------------------------------------------------------------------------------- /xfa/fxfa/layout/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | '-xfa/fwl', 3 | ] 4 | 5 | -------------------------------------------------------------------------------- /xfa/fxfa/parser/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/BUILD.gn -------------------------------------------------------------------------------- /xfa/fxfa/parser/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | '-xfa/fwl', 3 | ] 4 | 5 | -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_agent.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_amd.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_amd.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_arc.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_arc.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_area.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_base.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_bind.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_box.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_box.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_break.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_break.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_cache.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_color.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_comb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_comb.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_data.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_date.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_day.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_day.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_day.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_day.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_debug.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_delta.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_desc.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_draw.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_edge.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_embed.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_era.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_era.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_era.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_era.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_event.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_field.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_fill.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_float.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_font.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_form.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_image.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_items.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_jog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_jog.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_jog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_jog.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_keep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_keep.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_level.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_line.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_list.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_log.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_log.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_map.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_map.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_mdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_mdp.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_mdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_mdp.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_mode.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_month.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_month.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_msgid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_msgid.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_node.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_occur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_occur.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_oid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_oid.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_oid.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_oids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_oids.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_para.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_part.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_pcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_pcl.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_pcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_pcl.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_pdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_pdf.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_pdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_pdf.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_pdfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_pdfa.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_print.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_proto.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_ps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_ps.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_ps.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_psmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_psmap.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_query.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_range.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_ref.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_ref.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_solid.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_speak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_speak.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_text.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_time.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_to.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_to.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_trace.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_type.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_ui.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_ui.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_uri.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_uri.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_user.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_value.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_xdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_xdc.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_xdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_xdc.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_xdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_xdp.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_xdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_xdp.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_xfa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_xfa.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_xfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_xfa.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_xsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_xsl.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_xsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_xsl.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_zpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_zpl.cpp -------------------------------------------------------------------------------- /xfa/fxfa/parser/cxfa_zpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/cxfa_zpl.h -------------------------------------------------------------------------------- /xfa/fxfa/parser/elements.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/elements.inc -------------------------------------------------------------------------------- /xfa/fxfa/parser/packets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/packets.inc -------------------------------------------------------------------------------- /xfa/fxfa/parser/xfa_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/pdfium/HEAD/xfa/fxfa/parser/xfa_utils.h --------------------------------------------------------------------------------