HomeSort by relevance Sort by last modified time
    Searched full:gasp (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/ots/src/
gasp.cc 5 #include "gasp.h"
7 // gasp - Grid-fitting And Scan-conversion Procedure
8 // http://www.microsoft.com/opentype/otspec/gasp.htm
11 do { delete file->gasp; file->gasp = 0; } while (0)
18 OpenTypeGASP *gasp = new OpenTypeGASP; local
19 file->gasp = gasp;
22 if (!table.ReadU16(&gasp->version) ||
27 if (gasp->version > 1)
85 const OpenTypeGASP *gasp = file->gasp; local
    [all...]
gasp.h 17 // A array of (max PPEM, GASP behavior) pairs.
ots.h 190 F(gasp, GASP) \
  /external/chromium_org/third_party/freetype/src/base/
ftgasp.c 5 /* Access of TrueType's `gasp' table (body). */
36 if ( ttface->gasp.numRanges > 0 )
38 TT_GaspRange range = ttface->gasp.gaspRanges;
39 TT_GaspRange range_end = range + ttface->gasp.numRanges;
52 if ( ttface->gasp.version == 0 )
  /external/freetype/src/base/
ftgasp.c 5 /* Access of TrueType's `gasp' table (body). */
36 if ( ttface->gasp.numRanges > 0 )
38 TT_GaspRange range = ttface->gasp.gaspRanges;
39 TT_GaspRange range_end = range + ttface->gasp.numRanges;
52 if ( ttface->gasp.version == 0 )
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftgasp.c 5 /* Access of TrueType's `gasp' table (body). */
36 if ( ttface->gasp.numRanges > 0 )
38 TT_GaspRange range = ttface->gasp.gaspRanges;
39 TT_GaspRange range_end = range + ttface->gasp.numRanges;
52 if ( ttface->gasp.version == 0 )
Jamfile 37 local _sources = bbox bdf bitmap debug gasp
  /external/chromium_org/third_party/freetype/include/freetype/
ftgasp.h 5 /* Access of TrueType's `gasp' table (specification). */
38 * Gasp Table
41 * Retrieving TrueType `gasp' table entries.
45 * font for specific entries in its `gasp' table, if any. This is
61 * This special value means that there is no GASP table in this face.
105 * Read the `gasp' table from a TrueType or OpenType font file and
114 * `gasp' table in the face.
  /external/freetype/include/
ftgasp.h 5 /* Access of TrueType's `gasp' table (specification). */
38 * Gasp Table
41 * Retrieving TrueType `gasp' table entries.
45 * font for specific entries in its `gasp' table, if any. This is
61 * This special value means that there is no GASP table in this face.
105 * Read the `gasp' table from a TrueType or OpenType font file and
114 * `gasp' table in the face.
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftgasp.h 5 /* Access of TrueType's `gasp' table (specification). */
38 * Gasp Table
41 * Retrieving TrueType `gasp' table entries.
45 * font for specific entries in its `gasp' table, if any. This is
61 * This special value means that there is no GASP table in this face.
105 * Read the `gasp' table from a TrueType or OpenType font file and
114 * `gasp' table in the face.
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftgasp.h 5 /* Access of TrueType's `gasp' table (specification). */
38 * Gasp Table
41 * Retrieving TrueType `gasp' table entries.
45 * font for specific entries in its `gasp' table, if any. This is
61 * This special value means that there is no GASP table in this face.
105 * Read the `gasp' table from a TrueType or OpenType font file and
114 * `gasp' table in the face.
  /external/chromium_org/third_party/ots/
ots-common.gypi 20 'src/gasp.cc',
21 'src/gasp.h',
  /external/chromium_org/build/secondary/third_party/ots/
BUILD.gn 23 "src/gasp.cc",
24 "src/gasp.h",
  /external/chromium_org/third_party/sfntly/cpp/src/test/
test_data.cc 40 Tag::OS_2, Tag::cmap, Tag::cvt, Tag::feat, Tag::gasp,
47 Tag::VDMX, Tag::cmap, Tag::cvt, Tag::fpgm, Tag::gasp,
  /external/sfntly/cpp/src/test/
test_data.cc 40 Tag::OS_2, Tag::cmap, Tag::cvt, Tag::feat, Tag::gasp,
47 Tag::VDMX, Tag::cmap, Tag::cvt, Tag::fpgm, Tag::gasp,
  /external/fonttools/Lib/fontTools/ttLib/tables/
_g_a_s_p.py 17 assert 0 <= self.version <= 1, "unknown 'gasp' format: %s" % self.version
  /external/chromium_org/third_party/skia/src/ports/
SkScalerContext_win_dw.cpp 53 AutoTDWriteTable<SkOTTableGridAndScanProcedure> gasp(typeface->fDWriteFontFace.get());
54 return !gasp.fExists;
67 AutoTDWriteTable<SkOTTableGridAndScanProcedure> gasp(typeface->fDWriteFontFace.get());
68 if (!gasp.fExists) {
71 if (gasp.fSize < sizeof(SkOTTableGridAndScanProcedure)) {
74 if (gasp->version != SkOTTableGridAndScanProcedure::version0 &&
75 gasp->version != SkOTTableGridAndScanProcedure::version1)
80 uint16_t numRanges = SkEndianSwap16(gasp->numRanges);
82 gasp.fSize < sizeof(SkOTTableGridAndScanProcedure) +
89 SkTAfter<const SkOTTableGridAndScanProcedure::GaspRange>(gasp.get())
    [all...]
  /external/skia/src/ports/
SkScalerContext_win_dw.cpp 53 AutoTDWriteTable<SkOTTableGridAndScanProcedure> gasp(typeface->fDWriteFontFace.get());
54 return !gasp.fExists;
67 AutoTDWriteTable<SkOTTableGridAndScanProcedure> gasp(typeface->fDWriteFontFace.get());
68 if (!gasp.fExists) {
71 if (gasp.fSize < sizeof(SkOTTableGridAndScanProcedure)) {
74 if (gasp->version != SkOTTableGridAndScanProcedure::version0 &&
75 gasp->version != SkOTTableGridAndScanProcedure::version1)
80 uint16_t numRanges = SkEndianSwap16(gasp->numRanges);
82 gasp.fSize < sizeof(SkOTTableGridAndScanProcedure) +
89 SkTAfter<const SkOTTableGridAndScanProcedure::GaspRange>(gasp.get())
    [all...]
  /external/chromium_org/third_party/freetype/src/sfnt/
ttload.c     [all...]
  /external/freetype/src/sfnt/
ttload.c     [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
ttload.c     [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/
tag.cc 51 const int32_t Tag::gasp = TAG('g', 'a', 's', 'p'); member in class:sfntly::Tag
104 Tag::gasp,
  /external/sfntly/cpp/src/sfntly/
tag.cc 51 const int32_t Tag::gasp = TAG('g', 'a', 's', 'p'); member in class:sfntly::Tag
104 Tag::gasp,
  /bionic/libc/include/net/
if_ieee1394.h 89 #define IEEE1394_GASP_LEN 8 /* GASP header for Stream */
  /development/ndk/platforms/android-3/include/net/
if_ieee1394.h 89 #define IEEE1394_GASP_LEN 8 /* GASP header for Stream */

Completed in 811 milliseconds

1 2 3 4 5 6