Home
last modified time | relevance | path

Searched refs:gsub (Results 1 – 25 of 34) sorted by relevance

12

/third_party/skia/third_party/externals/brotli/research/
DBUILD.libdivsufsort25 "gsub(/#cmakedefine/, \"#define\"); " +
26 "gsub(/@DIVSUFSORT_EXPORT@/, \"\"); " +
27 "gsub(/@DIVSUFSORT_IMPORT@/, \"\"); " +
28 "gsub(/@INLINE@/, \"inline\"); " +
29 "gsub(/@INCFILE@/, \"#include <inttypes.h>\"); " +
30 "gsub(/@SAUCHAR_TYPE@/, \"uint8_t\"); " +
31 "gsub(/@SAINT32_TYPE@/, \"int32_t\"); " +
32 "gsub(/@SAINT_PRId@/, \"PRId32\"); "
40 "gsub(/@HAVE_IO_H 1@/, \"HAVE_IO_H 0\"); " +
50 "gsub(/@W64BIT@/, \"\"); " +
[all …]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/
DGSubTable.java30 private final GsubCommonTable gsub; field in GSubTable
48 gsub = new GsubCommonTable(data, dataIsCanonical); in GSubTable()
58 scriptListTable.compareAndSet(null, gsub.createScriptList()); in scriptList()
70 featureListTable.compareAndSet(null, gsub.createFeatureList()); in featureList()
82 lookupListTable.compareAndSet(null, gsub.createLookupList()); in lookupList()
91 private final GsubCommonTable.Builder gsub; field in GSubTable.Builder
118 gsub = new GsubCommonTable.Builder(data, false); in Builder()
123 return gsub.subSerialize(newData); in subSerialize()
128 return gsub.subReadyToSerialize(); in subReadyToSerialize()
/third_party/skia/third_party/externals/freetype/src/otvalid/
Dotvmod.c79 FT_Byte* volatile gsub; in otv_validate() local
88 base = gdef = gpos = gsub = jstf = math = NULL; in otv_validate()
128 error = otv_load_table( face, TTAG_GSUB, &gsub, &len_gsub ); in otv_validate()
169 if ( gsub ) in otv_validate()
171 ft_validator_init( &valid, gsub, gsub + len_gsub, FT_VALIDATE_DEFAULT ); in otv_validate()
173 otv_GSUB_validate( gsub, num_glyphs, &valid ); in otv_validate()
183 otv_GDEF_validate( gdef, gsub, gpos, num_glyphs, &valid ); in otv_validate()
193 otv_JSTF_validate( jstf, gsub, gpos, num_glyphs, &valid ); in otv_validate()
212 *ot_gsub = (FT_Bytes)gsub; in otv_validate()
224 FT_FREE( gsub ); in otv_validate()
Dotvalid.h42 FT_Bytes gsub,
61 FT_Bytes gsub,
Dotvjstf.c206 FT_Bytes gsub, in otv_JSTF_validate() argument
234 if ( gsub ) in otv_JSTF_validate()
235 otvalid->extra1 = otv_GSUBGPOS_get_Lookup_count( gsub ); in otv_JSTF_validate()
Dotvgdef.c182 FT_Bytes gsub, in otv_GDEF_validate() argument
225 otv_GSUBGPOS_have_MarkAttachmentType_flag( gsub ) || in otv_GDEF_validate()
/third_party/tzdata/
Dzishrink.awk171 gsub(/[\t ]+/, " ", line)
204 gsub(/ max /, dataform == "vanguard" ? " m " : " ma ", line)
205 gsub(/ min /, dataform == "vanguard" ? " m " : " mi ", line)
206 gsub(/ only /, " o ", line)
207 gsub(/ Jan /, " Ja ", line)
208 gsub(/ Feb /, " F ", line)
209 gsub(/ Apr /, " Ap ", line)
210 gsub(/ Aug /, " Au ", line)
211 gsub(/ Sep /, " S ", line)
212 gsub(/ Oct /, " O ", line)
[all …]
Dtzselect.ksh514 gsub(/'\''/, "&\\\\&&", line)
/third_party/musl/tools/
Dadd-cfi.i386.awk65 gsub(/(#|\/\/).*/, "")
68 gsub(/[ \t]+/, " ") # mawk doesn't understand \s
69 gsub(/ *, */, ",")
70 gsub(/ *: */, ": ")
71 gsub(/ $/, "")
72 gsub(/^ /, "")
Dadd-cfi.x86_64.awk60 gsub(/(#|\/\/).*/, "")
63 gsub(/[ \t]+/, " ") # mawk doesn't understand \s
64 gsub(/ *, */, ",")
65 gsub(/ *: */, ": ")
66 gsub(/ $/, "")
67 gsub(/^ /, "")
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/
DHtmlViewer.java22 GSubTable gsub = fonts[0].getTable(Tag.GSUB); in main() local
23 tag(gsub, args[1]); in main()
26 …public static void tag(GSubTable gsub, String outFileName) throws FileNotFoundException, Unsupport… in tag() argument
DSFFontView.java33 GSubTable gsub = font.getTable(Tag.GSUB); in SFFontView() local
34 tagger.tag(gsub); in SFFontView()
DOtTableTagger.java69 void tag(GSubTable gsub) { in tag() argument
70 if (gsub == null) { in tag()
74 tagTable(gsub.scriptList()); in tag()
75 tagTable(gsub.featureList()); in tag()
76 tagTable(gsub.lookupList()); in tag()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
DRule.java125 GSubTable gsub = font.getTable(Tag.GSUB); in featuredLookups() local
126 if (gsub == null) { in featuredLookups()
130 ScriptListTable scripts = gsub.scriptList(); in featuredLookups()
131 FeatureListTable featureList = gsub.featureList(); in featuredLookups()
132 LookupListTable lookupList = gsub.lookupList(); in featuredLookups()
156 GSubTable gsub = font.getTable(Tag.GSUB); in featuredRules() local
157 if (gsub == null) { in featuredRules()
161 LookupListTable lookupList = gsub.lookupList(); in featuredRules()
438 GSubTable gsub = font.getTable(Tag.GSUB); in dumpLookups() local
439 Map<Integer, Set<Rule>> ruleMap = RuleExtractor.extract(gsub.lookupList()); in dumpLookups()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/testing/
DFontLanguages.java665 GSubTable gsub = font.getTable(Tag.GSUB); in get() local
666 if (gsub == null) { in get()
670 ScriptListTable scriptList = gsub.scriptList(); in get()
/third_party/skia/third_party/externals/freetype/include/freetype/internal/services/
Dsvotval.h37 FT_Bytes *gsub,
/third_party/skia/third_party/externals/libpng/scripts/
Ddfn.awk169 gsub(/@'/,"\"", line)
/third_party/skia/third_party/externals/freetype/builds/atari/
Ddeflinejoiner.awk79 gsub( / $/, "\\", part_str )
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-layout.cc1527 const OT::GSUB& gsub = *face->table.GSUB->table; in hb_ot_layout_lookups_substitute_closure() local
1537 gsub.get_lookup (lookup_index).closure (&c, lookup_index); in hb_ot_layout_lookups_substitute_closure()
1541 for (unsigned int i = 0; i < gsub.get_lookup_count (); i++) in hb_ot_layout_lookups_substitute_closure()
1542 gsub.get_lookup (i).closure (&c, i); in hb_ot_layout_lookups_substitute_closure()
DMakefile.am309 test-gsub-would-substitute \
341 test_gsub_would_substitute_SOURCES = test-gsub-would-substitute.cc
Dmeson.build94 'hb-ot-layout-gsub-table.hh',
473 'test-ot-gsub-would-substitute': 'test-gsub-would-substitute.cc',
DMakefile.sources90 hb-ot-layout-gsub-table.hh \
/third_party/libabigail/tests/data/test-read-dwarf/
Dtest17-pr19027.so.abi9969 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='556…
9971 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='593…
9973 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='594…
9976 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='595…
9981 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='596…
9984 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='574…
9991 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='574…
9998 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='574…
10005 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='574…
10012 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='574…
[all …]
/third_party/skia/third_party/externals/libpng/projects/owatcom/
Dpngconfig.mak49 gsub(/ *@@@ */, "")
/third_party/libabigail/tests/data/test-annotate/
Dtest17-pr19027.so.abi15899 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='556…
15902 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='593…
15905 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='594…
15909 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='595…
15915 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='596…
15919 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='574…
15930 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='574…
15941 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='574…
15952 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='574…
15963 …/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-layout-gsub-table.hh' line='574…
[all …]

12