Home
last modified time | relevance | path

Searched refs:ftStream (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/xfa/fgas/font/
Dcfgas_fontmgr.cpp487 FXFT_StreamRec* ftStream = in LoadFace() local
489 memset(ftStream, 0, sizeof(FXFT_StreamRec)); in LoadFace()
490 ftStream->base = nullptr; in LoadFace()
491 ftStream->descriptor.pointer = static_cast<void*>(pFontStream.Get()); in LoadFace()
492 ftStream->pos = 0; in LoadFace()
493 ftStream->size = static_cast<unsigned long>(pFontStream->GetSize()); in LoadFace()
494 ftStream->read = ftStreamRead; in LoadFace()
495 ftStream->close = ftStreamClose; in LoadFace()
500 ftArgs.stream = ftStream; in LoadFace()
504 ft_sfree(ftStream); in LoadFace()
/external/skqp/src/ports/
DSkFontHost_FreeType.cpp296 static unsigned long sk_ft_stream_io(FT_Stream ftStream, in sk_ft_stream_io() argument
301 SkStreamAsset* stream = static_cast<SkStreamAsset*>(ftStream->descriptor.pointer); in sk_ft_stream_io()
1789 FT_Stream ftStream) const in openFace()
1805 memset(ftStream, 0, sizeof(*ftStream)); in openFace()
1806 ftStream->size = stream->getLength(); in openFace()
1807 ftStream->descriptor.pointer = stream; in openFace()
1808 ftStream->read = sk_ft_stream_io; in openFace()
1809 ftStream->close = sk_ft_stream_close; in openFace()
1812 args.stream = ftStream; in openFace()
DSkFontHost_FreeType_common.h83 FT_Face openFace(SkStreamAsset* stream, int ttcIndex, FT_Stream ftStream) const;
/external/skia/src/ports/
DSkFontHost_FreeType.cpp334 static unsigned long sk_ft_stream_io(FT_Stream ftStream, in sk_ft_stream_io() argument
339 SkStreamAsset* stream = static_cast<SkStreamAsset*>(ftStream->descriptor.pointer); in sk_ft_stream_io()
1967 FT_Stream ftStream) const in openFace()
1983 memset(ftStream, 0, sizeof(*ftStream)); in openFace()
1984 ftStream->size = stream->getLength(); in openFace()
1985 ftStream->descriptor.pointer = stream; in openFace()
1986 ftStream->read = sk_ft_stream_io; in openFace()
1987 ftStream->close = sk_ft_stream_close; in openFace()
1990 args.stream = ftStream; in openFace()
DSkFontHost_FreeType_common.h85 FT_Face openFace(SkStreamAsset* stream, int ttcIndex, FT_Stream ftStream) const;