├── LJURLCacheProtocol ├── LJURLCacheProtocol.h ├── LJURLCacheProtocol.m ├── NSURLProtocol+WKWebview.h └── NSURLProtocol+WKWebview.m ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ ├── SDWebImage │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSImage+WebCache.h │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDWebImageCoder.h │ │ │ ├── SDWebImageCoderHelper.h │ │ │ ├── SDWebImageCodersManager.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageFrame.h │ │ │ ├── SDWebImageGIFCoder.h │ │ │ ├── SDWebImageImageIOCoder.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImageTransition.h │ │ │ ├── SDWebImageWebPCoder.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+WebP.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ │ ├── iOS-WebP │ │ │ └── UIImage+WebP.h │ │ └── libwebp │ │ │ ├── alphai.h │ │ │ ├── backward_references.h │ │ │ ├── bit_reader.h │ │ │ ├── bit_reader_inl.h │ │ │ ├── bit_writer.h │ │ │ ├── color_cache.h │ │ │ ├── common.h │ │ │ ├── common_sse2.h │ │ │ ├── cost.h │ │ │ ├── decode_vp8.h │ │ │ ├── delta_palettization.h │ │ │ ├── dsp.h │ │ │ ├── endian_inl.h │ │ │ ├── filters.h │ │ │ ├── histogram.h │ │ │ ├── huffman.h │ │ │ ├── huffman_encode.h │ │ │ ├── lossless.h │ │ │ ├── mips_macro.h │ │ │ ├── msa_macro.h │ │ │ ├── muxi.h │ │ │ ├── neon.h │ │ │ ├── quant_levels.h │ │ │ ├── quant_levels_dec.h │ │ │ ├── random.h │ │ │ ├── rescaler.h │ │ │ ├── thread.h │ │ │ ├── utils.h │ │ │ ├── vp8enci.h │ │ │ ├── vp8i.h │ │ │ ├── vp8li.h │ │ │ ├── webp │ │ │ ├── decode.h │ │ │ ├── demux.h │ │ │ ├── encode.h │ │ │ ├── extras.h │ │ │ ├── format_constants.h │ │ │ ├── mux.h │ │ │ ├── mux_types.h │ │ │ └── types.h │ │ │ ├── webpi.h │ │ │ └── yuv.h │ └── Public │ │ ├── SDWebImage │ │ ├── NSButton+WebCache.h │ │ ├── NSData+ImageContentType.h │ │ ├── NSImage+WebCache.h │ │ ├── SDAnimatedImageRep.h │ │ ├── SDImageCache.h │ │ ├── SDImageCacheConfig.h │ │ ├── SDWebImageCoder.h │ │ ├── SDWebImageCoderHelper.h │ │ ├── SDWebImageCodersManager.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageFrame.h │ │ ├── SDWebImageGIFCoder.h │ │ ├── SDWebImageImageIOCoder.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImageTransition.h │ │ ├── SDWebImageWebPCoder.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+WebP.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ ├── UIView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ │ ├── iOS-WebP │ │ └── UIImage+WebP.h │ │ └── libwebp │ │ ├── alphai.h │ │ ├── backward_references.h │ │ ├── bit_reader.h │ │ ├── bit_reader_inl.h │ │ ├── bit_writer.h │ │ ├── color_cache.h │ │ ├── common.h │ │ ├── common_sse2.h │ │ ├── cost.h │ │ ├── decode_vp8.h │ │ ├── delta_palettization.h │ │ ├── dsp.h │ │ ├── endian_inl.h │ │ ├── filters.h │ │ ├── histogram.h │ │ ├── huffman.h │ │ ├── huffman_encode.h │ │ ├── lossless.h │ │ ├── mips_macro.h │ │ ├── msa_macro.h │ │ ├── muxi.h │ │ ├── neon.h │ │ ├── quant_levels.h │ │ ├── quant_levels_dec.h │ │ ├── random.h │ │ ├── rescaler.h │ │ ├── thread.h │ │ ├── utils.h │ │ ├── vp8enci.h │ │ ├── vp8i.h │ │ ├── vp8li.h │ │ ├── webp │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── extras.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h │ │ ├── webpi.h │ │ └── yuv.h ├── Local Podspecs │ └── iOS-WebP.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── txooo.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-WebViewImageCache.xcscheme │ │ ├── Pods-WebViewImageCacheTests.xcscheme │ │ ├── Pods-WebViewImageCacheUITests.xcscheme │ │ ├── SDWebImage.xcscheme │ │ ├── iOS-WebP.xcscheme │ │ ├── libwebp.xcscheme │ │ └── xcschememanagement.plist ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSButton+WebCache.h │ │ ├── NSButton+WebCache.m │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── NSImage+WebCache.h │ │ ├── NSImage+WebCache.m │ │ ├── SDAnimatedImageRep.h │ │ ├── SDAnimatedImageRep.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDImageCacheConfig.h │ │ ├── SDImageCacheConfig.m │ │ ├── SDWebImageCoder.h │ │ ├── SDWebImageCoder.m │ │ ├── SDWebImageCoderHelper.h │ │ ├── SDWebImageCoderHelper.m │ │ ├── SDWebImageCodersManager.h │ │ ├── SDWebImageCodersManager.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageFrame.h │ │ ├── SDWebImageFrame.m │ │ ├── SDWebImageGIFCoder.h │ │ ├── SDWebImageGIFCoder.m │ │ ├── SDWebImageImageIOCoder.h │ │ ├── SDWebImageImageIOCoder.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── SDWebImageTransition.h │ │ ├── SDWebImageTransition.m │ │ ├── SDWebImageWebPCoder.h │ │ ├── SDWebImageWebPCoder.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+ForceDecode.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImage+WebP.h │ │ ├── UIImage+WebP.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCache.h │ │ ├── UIView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m ├── Target Support Files │ ├── Pods-WebViewImageCache │ │ ├── Pods-WebViewImageCache-acknowledgements.markdown │ │ ├── Pods-WebViewImageCache-acknowledgements.plist │ │ ├── Pods-WebViewImageCache-dummy.m │ │ ├── Pods-WebViewImageCache-frameworks.sh │ │ ├── Pods-WebViewImageCache-resources.sh │ │ ├── Pods-WebViewImageCache.debug.xcconfig │ │ └── Pods-WebViewImageCache.release.xcconfig │ ├── Pods-WebViewImageCacheTests │ │ ├── Pods-WebViewImageCacheTests-acknowledgements.markdown │ │ ├── Pods-WebViewImageCacheTests-acknowledgements.plist │ │ ├── Pods-WebViewImageCacheTests-dummy.m │ │ ├── Pods-WebViewImageCacheTests-frameworks.sh │ │ ├── Pods-WebViewImageCacheTests-resources.sh │ │ ├── Pods-WebViewImageCacheTests.debug.xcconfig │ │ └── Pods-WebViewImageCacheTests.release.xcconfig │ ├── Pods-WebViewImageCacheUITests │ │ ├── Pods-WebViewImageCacheUITests-acknowledgements.markdown │ │ ├── Pods-WebViewImageCacheUITests-acknowledgements.plist │ │ ├── Pods-WebViewImageCacheUITests-dummy.m │ │ ├── Pods-WebViewImageCacheUITests-frameworks.sh │ │ ├── Pods-WebViewImageCacheUITests-resources.sh │ │ ├── Pods-WebViewImageCacheUITests.debug.xcconfig │ │ └── Pods-WebViewImageCacheUITests.release.xcconfig │ ├── SDWebImage │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ └── SDWebImage.xcconfig │ ├── iOS-WebP │ │ ├── iOS-WebP-dummy.m │ │ ├── iOS-WebP-prefix.pch │ │ └── iOS-WebP.xcconfig │ └── libwebp │ │ ├── libwebp-dummy.m │ │ ├── libwebp-prefix.pch │ │ └── libwebp.xcconfig └── libwebp │ ├── COPYING │ ├── README │ ├── README.mux │ └── src │ ├── dec │ ├── alpha.c │ ├── alphai.h │ ├── buffer.c │ ├── common.h │ ├── decode_vp8.h │ ├── frame.c │ ├── idec.c │ ├── io.c │ ├── quant.c │ ├── tree.c │ ├── vp8.c │ ├── vp8i.h │ ├── vp8l.c │ ├── vp8li.h │ ├── webp.c │ └── webpi.h │ ├── demux │ ├── anim_decode.c │ └── demux.c │ ├── dsp │ ├── alpha_processing.c │ ├── alpha_processing_mips_dsp_r2.c │ ├── alpha_processing_sse2.c │ ├── alpha_processing_sse41.c │ ├── argb.c │ ├── argb_mips_dsp_r2.c │ ├── argb_sse2.c │ ├── common_sse2.h │ ├── cost.c │ ├── cost_mips32.c │ ├── cost_mips_dsp_r2.c │ ├── cost_sse2.c │ ├── cpu.c │ ├── dec.c │ ├── dec_clip_tables.c │ ├── dec_mips32.c │ ├── dec_mips_dsp_r2.c │ ├── dec_msa.c │ ├── dec_neon.c │ ├── dec_sse2.c │ ├── dec_sse41.c │ ├── dsp.h │ ├── enc.c │ ├── enc_avx2.c │ ├── enc_mips32.c │ ├── enc_mips_dsp_r2.c │ ├── enc_neon.c │ ├── enc_sse2.c │ ├── enc_sse41.c │ ├── filters.c │ ├── filters_mips_dsp_r2.c │ ├── filters_sse2.c │ ├── lossless.c │ ├── lossless.h │ ├── lossless_enc.c │ ├── lossless_enc_mips32.c │ ├── lossless_enc_mips_dsp_r2.c │ ├── lossless_enc_neon.c │ ├── lossless_enc_sse2.c │ ├── lossless_enc_sse41.c │ ├── lossless_mips_dsp_r2.c │ ├── lossless_neon.c │ ├── lossless_sse2.c │ ├── mips_macro.h │ ├── msa_macro.h │ ├── neon.h │ ├── rescaler.c │ ├── rescaler_mips32.c │ ├── rescaler_mips_dsp_r2.c │ ├── rescaler_neon.c │ ├── rescaler_sse2.c │ ├── upsampling.c │ ├── upsampling_mips_dsp_r2.c │ ├── upsampling_neon.c │ ├── upsampling_sse2.c │ ├── yuv.c │ ├── yuv.h │ ├── yuv_mips32.c │ ├── yuv_mips_dsp_r2.c │ └── yuv_sse2.c │ ├── enc │ ├── alpha.c │ ├── analysis.c │ ├── backward_references.c │ ├── backward_references.h │ ├── config.c │ ├── cost.c │ ├── cost.h │ ├── delta_palettization.c │ ├── delta_palettization.h │ ├── filter.c │ ├── frame.c │ ├── histogram.c │ ├── histogram.h │ ├── iterator.c │ ├── near_lossless.c │ ├── picture.c │ ├── picture_csp.c │ ├── picture_psnr.c │ ├── picture_rescale.c │ ├── picture_tools.c │ ├── quant.c │ ├── syntax.c │ ├── token.c │ ├── tree.c │ ├── vp8enci.h │ ├── vp8l.c │ ├── vp8li.h │ └── webpenc.c │ ├── mux │ ├── anim_encode.c │ ├── muxedit.c │ ├── muxi.h │ ├── muxinternal.c │ └── muxread.c │ ├── utils │ ├── bit_reader.c │ ├── bit_reader.h │ ├── bit_reader_inl.h │ ├── bit_writer.c │ ├── bit_writer.h │ ├── color_cache.c │ ├── color_cache.h │ ├── endian_inl.h │ ├── filters.c │ ├── filters.h │ ├── huffman.c │ ├── huffman.h │ ├── huffman_encode.c │ ├── huffman_encode.h │ ├── quant_levels.c │ ├── quant_levels.h │ ├── quant_levels_dec.c │ ├── quant_levels_dec.h │ ├── random.c │ ├── random.h │ ├── rescaler.c │ ├── rescaler.h │ ├── thread.c │ ├── thread.h │ ├── utils.c │ └── utils.h │ └── webp │ ├── decode.h │ ├── demux.h │ ├── encode.h │ ├── extras.h │ ├── format_constants.h │ ├── mux.h │ ├── mux_types.h │ └── types.h ├── README.md ├── WebViewImageCache.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── txooo.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── WebViewImageCache.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── txooo.xcuserdatad │ ├── IDEFindNavigatorScopes.plist │ ├── UserInterfaceState.xcuserstate │ ├── WorkspaceSettings.xcsettings │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── WebViewImageCache ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LJWKURLSchemeHandler.h ├── LJWKURLSchemeHandler.m ├── RootViewController.h ├── RootViewController.m ├── WKHandlerViewController.h ├── WKHandlerViewController.m ├── WKWebViewController.h ├── WKWebViewController.m ├── WebViewController.h ├── WebViewController.m ├── demo.html ├── demo_1.html ├── demo_2.html ├── iOS-WebP.podspec ├── iOS-WebP │ ├── UIImage+WebP.h │ └── UIImage+WebP.m └── main.m ├── WebViewImageCacheTests ├── Info.plist └── WebViewImageCacheTests.m ├── WebViewImageCacheUITests ├── Info.plist └── WebViewImageCacheUITests.m └── pod.file /LJURLCacheProtocol/LJURLCacheProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/LJURLCacheProtocol/LJURLCacheProtocol.h -------------------------------------------------------------------------------- /LJURLCacheProtocol/LJURLCacheProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/LJURLCacheProtocol/LJURLCacheProtocol.m -------------------------------------------------------------------------------- /LJURLCacheProtocol/NSURLProtocol+WKWebview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/LJURLCacheProtocol/NSURLProtocol+WKWebview.h -------------------------------------------------------------------------------- /LJURLCacheProtocol/NSURLProtocol+WKWebview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/LJURLCacheProtocol/NSURLProtocol+WKWebview.m -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCoderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoderHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCodersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCodersManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageFrame.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageFrame.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageGIFCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageImageIOCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageImageIOCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageWebPCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageWebPCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/iOS-WebP/UIImage+WebP.h: -------------------------------------------------------------------------------- 1 | ../../../../WebViewImageCache/iOS-WebP/UIImage+WebP.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/alphai.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/alphai.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/backward_references.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/backward_references.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/bit_reader.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_reader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/bit_reader_inl.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_reader_inl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/bit_writer.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_writer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/color_cache.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/color_cache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/common.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/common.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/common_sse2.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/common_sse2.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/cost.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/cost.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/decode_vp8.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/decode_vp8.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/delta_palettization.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/delta_palettization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/dsp.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/dsp.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/endian_inl.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/endian_inl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/filters.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/filters.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/histogram.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/histogram.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/huffman.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/huffman.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/huffman_encode.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/huffman_encode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/lossless.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/lossless.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/mips_macro.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/mips_macro.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/msa_macro.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/msa_macro.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/muxi.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/mux/muxi.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/neon.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/neon.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/quant_levels.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/quant_levels.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/quant_levels_dec.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/quant_levels_dec.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/random.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/random.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/rescaler.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/rescaler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/thread.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/thread.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/utils.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/utils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/vp8enci.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/vp8enci.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/vp8i.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/vp8i.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/vp8li.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/vp8li.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/decode.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/decode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/demux.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/demux.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/encode.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/encode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/extras.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/extras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/format_constants.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/format_constants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/mux.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/mux.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/mux_types.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/mux_types.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/types.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/types.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webpi.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/webpi.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/yuv.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/yuv.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCoderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoderHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCodersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCodersManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageFrame.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageFrame.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageGIFCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageImageIOCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageImageIOCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageWebPCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageWebPCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/iOS-WebP/UIImage+WebP.h: -------------------------------------------------------------------------------- 1 | ../../../../WebViewImageCache/iOS-WebP/UIImage+WebP.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/alphai.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/alphai.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/backward_references.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/backward_references.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/bit_reader.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_reader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/bit_reader_inl.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_reader_inl.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/bit_writer.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_writer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/color_cache.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/color_cache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/common.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/common.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/common_sse2.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/common_sse2.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/cost.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/cost.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/decode_vp8.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/decode_vp8.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/delta_palettization.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/delta_palettization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/dsp.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/dsp.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/endian_inl.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/endian_inl.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/filters.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/filters.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/histogram.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/histogram.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/huffman.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/huffman.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/huffman_encode.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/huffman_encode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/lossless.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/lossless.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/mips_macro.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/mips_macro.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/msa_macro.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/msa_macro.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/muxi.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/mux/muxi.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/neon.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/neon.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/quant_levels.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/quant_levels.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/quant_levels_dec.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/quant_levels_dec.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/random.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/random.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/rescaler.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/rescaler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/thread.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/thread.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/utils.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/utils.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/vp8enci.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/vp8enci.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/vp8i.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/vp8i.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/vp8li.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/vp8li.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/decode.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/decode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/demux.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/demux.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/encode.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/encode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/extras.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/extras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/format_constants.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/format_constants.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/mux.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/mux.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/mux_types.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/mux_types.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/types.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/types.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webpi.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/webpi.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/yuv.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/yuv.h -------------------------------------------------------------------------------- /Pods/Local Podspecs/iOS-WebP.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Local Podspecs/iOS-WebP.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/Pods-WebViewImageCache.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/Pods-WebViewImageCache.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/Pods-WebViewImageCacheTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/Pods-WebViewImageCacheTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/Pods-WebViewImageCacheUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/Pods-WebViewImageCacheUITests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/iOS-WebP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/iOS-WebP.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/libwebp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/libwebp.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Pods.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/NSButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSImage+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/NSImage+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageFrame.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageFrame.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageTransition.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageWebPCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageWebPCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageWebPCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageWebPCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImage+WebP.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCache/Pods-WebViewImageCache.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheTests/Pods-WebViewImageCacheTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/Pods-WebViewImageCacheUITests/Pods-WebViewImageCacheUITests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/iOS-WebP/iOS-WebP-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/iOS-WebP/iOS-WebP-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/iOS-WebP/iOS-WebP-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/iOS-WebP/iOS-WebP-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/iOS-WebP/iOS-WebP.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/iOS-WebP/iOS-WebP.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/libwebp/libwebp-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/libwebp/libwebp-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/libwebp/libwebp-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/libwebp/libwebp-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/libwebp/libwebp.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/Target Support Files/libwebp/libwebp.xcconfig -------------------------------------------------------------------------------- /Pods/libwebp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/COPYING -------------------------------------------------------------------------------- /Pods/libwebp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/README -------------------------------------------------------------------------------- /Pods/libwebp/README.mux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/README.mux -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/alpha.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/alphai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/alphai.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/buffer.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/common.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/decode_vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/decode_vp8.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/frame.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/idec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/idec.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/io.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/quant.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/tree.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/vp8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/vp8.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/vp8i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/vp8i.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/vp8l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/vp8l.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/vp8li.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/vp8li.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/webp.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dec/webpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dec/webpi.h -------------------------------------------------------------------------------- /Pods/libwebp/src/demux/anim_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/demux/anim_decode.c -------------------------------------------------------------------------------- /Pods/libwebp/src/demux/demux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/demux/demux.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/alpha_processing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/alpha_processing.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/alpha_processing_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/alpha_processing_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/alpha_processing_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/alpha_processing_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/alpha_processing_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/alpha_processing_sse41.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/argb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/argb.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/argb_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/argb_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/argb_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/argb_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/common_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/common_sse2.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/cost.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/cost_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/cost_mips32.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/cost_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/cost_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/cost_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/cost_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/cpu.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/dec.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/dec_clip_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/dec_clip_tables.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/dec_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/dec_mips32.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/dec_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/dec_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/dec_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/dec_msa.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/dec_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/dec_neon.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/dec_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/dec_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/dec_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/dec_sse41.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/dsp.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/enc.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/enc_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/enc_avx2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/enc_mips32.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/enc_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/enc_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/enc_neon.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/enc_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/enc_sse41.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/filters.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/filters_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/filters_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/filters_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/filters_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless_enc.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless_enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless_enc_mips32.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless_enc_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless_enc_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless_enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless_enc_neon.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless_enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless_enc_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless_enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless_enc_sse41.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless_neon.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/lossless_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/lossless_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/mips_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/mips_macro.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/msa_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/msa_macro.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/neon.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/rescaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/rescaler.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/rescaler_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/rescaler_mips32.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/rescaler_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/rescaler_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/rescaler_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/rescaler_neon.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/rescaler_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/rescaler_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/upsampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/upsampling.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/upsampling_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/upsampling_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/upsampling_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/upsampling_neon.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/upsampling_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/upsampling_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/yuv.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/yuv.h -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/yuv_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/yuv_mips32.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/yuv_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/yuv_mips_dsp_r2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/dsp/yuv_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/dsp/yuv_sse2.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/alpha.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/analysis.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/backward_references.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/backward_references.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/backward_references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/backward_references.h -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/config.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/cost.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/cost.h -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/delta_palettization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/delta_palettization.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/delta_palettization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/delta_palettization.h -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/filter.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/frame.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/histogram.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/histogram.h -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/iterator.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/near_lossless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/near_lossless.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/picture.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/picture_csp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/picture_csp.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/picture_psnr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/picture_psnr.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/picture_rescale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/picture_rescale.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/picture_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/picture_tools.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/quant.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/syntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/syntax.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/token.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/tree.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/vp8enci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/vp8enci.h -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/vp8l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/vp8l.c -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/vp8li.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/vp8li.h -------------------------------------------------------------------------------- /Pods/libwebp/src/enc/webpenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/enc/webpenc.c -------------------------------------------------------------------------------- /Pods/libwebp/src/mux/anim_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/mux/anim_encode.c -------------------------------------------------------------------------------- /Pods/libwebp/src/mux/muxedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/mux/muxedit.c -------------------------------------------------------------------------------- /Pods/libwebp/src/mux/muxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/mux/muxi.h -------------------------------------------------------------------------------- /Pods/libwebp/src/mux/muxinternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/mux/muxinternal.c -------------------------------------------------------------------------------- /Pods/libwebp/src/mux/muxread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/mux/muxread.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/bit_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/bit_reader.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/bit_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/bit_reader.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/bit_reader_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/bit_reader_inl.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/bit_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/bit_writer.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/bit_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/bit_writer.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/color_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/color_cache.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/color_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/color_cache.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/endian_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/endian_inl.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/filters.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/filters.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/huffman.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/huffman.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/huffman_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/huffman_encode.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/huffman_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/huffman_encode.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/quant_levels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/quant_levels.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/quant_levels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/quant_levels.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/quant_levels_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/quant_levels_dec.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/quant_levels_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/quant_levels_dec.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/random.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/random.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/rescaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/rescaler.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/rescaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/rescaler.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/thread.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/thread.h -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/utils.c -------------------------------------------------------------------------------- /Pods/libwebp/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/utils/utils.h -------------------------------------------------------------------------------- /Pods/libwebp/src/webp/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/webp/decode.h -------------------------------------------------------------------------------- /Pods/libwebp/src/webp/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/webp/demux.h -------------------------------------------------------------------------------- /Pods/libwebp/src/webp/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/webp/encode.h -------------------------------------------------------------------------------- /Pods/libwebp/src/webp/extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/webp/extras.h -------------------------------------------------------------------------------- /Pods/libwebp/src/webp/format_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/webp/format_constants.h -------------------------------------------------------------------------------- /Pods/libwebp/src/webp/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/webp/mux.h -------------------------------------------------------------------------------- /Pods/libwebp/src/webp/mux_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/webp/mux_types.h -------------------------------------------------------------------------------- /Pods/libwebp/src/webp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/Pods/libwebp/src/webp/types.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/README.md -------------------------------------------------------------------------------- /WebViewImageCache.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WebViewImageCache.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WebViewImageCache.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WebViewImageCache.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcodeproj/xcuserdata/txooo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WebViewImageCache.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WebViewImageCache.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WebViewImageCache.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /WebViewImageCache.xcworkspace/xcuserdata/txooo.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcworkspace/xcuserdata/txooo.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /WebViewImageCache.xcworkspace/xcuserdata/txooo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcworkspace/xcuserdata/txooo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /WebViewImageCache.xcworkspace/xcuserdata/txooo.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcworkspace/xcuserdata/txooo.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /WebViewImageCache.xcworkspace/xcuserdata/txooo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache.xcworkspace/xcuserdata/txooo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WebViewImageCache/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/AppDelegate.h -------------------------------------------------------------------------------- /WebViewImageCache/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/AppDelegate.m -------------------------------------------------------------------------------- /WebViewImageCache/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WebViewImageCache/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WebViewImageCache/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WebViewImageCache/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WebViewImageCache/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/Info.plist -------------------------------------------------------------------------------- /WebViewImageCache/LJWKURLSchemeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/LJWKURLSchemeHandler.h -------------------------------------------------------------------------------- /WebViewImageCache/LJWKURLSchemeHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/LJWKURLSchemeHandler.m -------------------------------------------------------------------------------- /WebViewImageCache/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/RootViewController.h -------------------------------------------------------------------------------- /WebViewImageCache/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/RootViewController.m -------------------------------------------------------------------------------- /WebViewImageCache/WKHandlerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/WKHandlerViewController.h -------------------------------------------------------------------------------- /WebViewImageCache/WKHandlerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/WKHandlerViewController.m -------------------------------------------------------------------------------- /WebViewImageCache/WKWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/WKWebViewController.h -------------------------------------------------------------------------------- /WebViewImageCache/WKWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/WKWebViewController.m -------------------------------------------------------------------------------- /WebViewImageCache/WebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/WebViewController.h -------------------------------------------------------------------------------- /WebViewImageCache/WebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/WebViewController.m -------------------------------------------------------------------------------- /WebViewImageCache/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/demo.html -------------------------------------------------------------------------------- /WebViewImageCache/demo_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/demo_1.html -------------------------------------------------------------------------------- /WebViewImageCache/demo_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/demo_2.html -------------------------------------------------------------------------------- /WebViewImageCache/iOS-WebP.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/iOS-WebP.podspec -------------------------------------------------------------------------------- /WebViewImageCache/iOS-WebP/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/iOS-WebP/UIImage+WebP.h -------------------------------------------------------------------------------- /WebViewImageCache/iOS-WebP/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/iOS-WebP/UIImage+WebP.m -------------------------------------------------------------------------------- /WebViewImageCache/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCache/main.m -------------------------------------------------------------------------------- /WebViewImageCacheTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCacheTests/Info.plist -------------------------------------------------------------------------------- /WebViewImageCacheTests/WebViewImageCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCacheTests/WebViewImageCacheTests.m -------------------------------------------------------------------------------- /WebViewImageCacheUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCacheUITests/Info.plist -------------------------------------------------------------------------------- /WebViewImageCacheUITests/WebViewImageCacheUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingjye/WebViewImageCache/HEAD/WebViewImageCacheUITests/WebViewImageCacheUITests.m -------------------------------------------------------------------------------- /pod.file: -------------------------------------------------------------------------------- 1 | pod 'SDWebImage' 2 | 3 | --------------------------------------------------------------------------------