HomeSort by relevance Sort by last modified time
    Searched refs:gsub (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/third_party/sqlite/src/tool/
opcodeDoc.awk 16 gsub(/</,"&lt;")
17 gsub(/&/,"&amp;")
  /external/chromium_org/third_party/ots/test/
table_dependencies_test.cc 7 #include "gsub.h"
33 SET_LAYOUT_TABLE(gsub, GSUB);
39 DROP_TABLE(gsub);
66 DROP_LAYOUT_TABLE(gsub);
68 DROP_TABLE(gsub);
73 DROP_LAYOUT_TABLE(gsub);
75 DROP_TABLE(gsub);
  /external/chromium_org/third_party/freetype/include/freetype/internal/services/
svotval.h 37 FT_Bytes *gsub,
  /external/freetype/include/internal/services/
svotval.h 37 FT_Bytes *gsub,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 16 self.gsub!( exp,'' )
25 here_indent!( chr ).gsub!( /\n\s+/,' ' )
37 gsub( /^/, ' ' * n )
39 gsub( /^ {0,#{ -n }}/, "" )
87 gsub( /\n\s*\Z/,'' ).gsub( /^\s*[#{ d }]/, '' )
89 gsub( /\n\s*\Z/,'' ).gsub( /^\s*[#{ d }]/, ' ' * n )
105 return gsub( /\t/, "" ) if n == 0
106 return gsub( /\t/, " " ) if n ==
    [all...]
grammar.rb 241 token.gsub!( /([^A-Za-z0-9_\-.,:\/@\n])/n, '\\\1' )
242 token.gsub!( /\n/, "'\n'" )
321 @output = output.gsub( JAVA_TRACE, '' )
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 10 str = str.to_s.gsub( /([A-Z]+)([A-Z][a-z])/,'\1_\2' )
11 str.gsub!( /([a-z\d])([A-Z])/,'\1_\2' )
24 here_doc.gsub!( /^ *\| ?/, '' )
27 here_doc.gsub!( /\s+/, ' ' )
main.rb 104 description_string.gsub!( /^ *\| ?/, '' )
105 description_string.gsub!( /\s+/, ' ' )
242 message = error.to_s.gsub( /\n/, "\n " )
282 script = name.gsub( /::/, '' )
task.rb 222 token.gsub!( /([^A-Za-z0-9_\-.,:\/@\n])/n, "\\\\\\1" )
223 token.gsub!( /\n/, "'\n'" )
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
xml.rb 16 text = text.gsub(/\"/, '\\"')
  /external/chromium_org/third_party/ots/src/
gsub.cc 5 #include "gsub.h"
15 // GSUB - The Glyph Substitution Table
16 // http://www.microsoft.com/typography/otspec/gsub.htm
20 // The GSUB header size
401 file->gsub->num_lookups);
411 file->gsub->num_lookups);
531 do { file->gsub->data = 0; file->gsub->length = 0; } while (0)
535 // As far as I checked, following fonts contain invalid values in GSUB table.
536 // OTS will drop their GSUB table
593 OpenTypeGSUB *gsub = new OpenTypeGSUB; local
    [all...]
gdef.cc 11 #include "gsub.h"
374 (file->gsub && file->gsub->data == NULL) ||
ots.h 196 F(gsub, GSUB) \
  /external/libpng/scripts/
dfn.awk 169 gsub(/@'/,"\"", line)
  /dalvik/opcode-gen/
opcode-gen.awk 113 gsub(/-/, "_", itype);
259 gsub(/ */, " ", line);
304 gsub("[/-]", "_", constName[idx]); # Dash and slash become underscore.
305 gsub("[+^]", "", constName[idx]); # Plus and caret are removed.
309 gsub("-", "_", family[idx]); # Dash becomes underscore.
310 gsub("[+^]", "", family[idx]); # Plus and caret are removed.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
clean-header-guards 43 contents.gsub!(/#{current_guard}\b/, new_guard)
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout.cc 34 #include "hb-ot-layout-gsub-table.hh"
56 layout->gsub_blob = OT::Sanitizer<OT::GSUB>::sanitize (face->reference_table (HB_OT_TAG_GSUB));
57 layout->gsub = OT::Sanitizer<OT::GSUB>::lock_instance (layout->gsub_blob);
62 layout->gsub_lookup_count = layout->gsub->get_lookup_count ();
65 layout->gsub_accels = (hb_ot_layout_lookup_accelerator_t *) calloc (layout->gsub->get_lookup_count (), sizeof (hb_ot_layout_lookup_accelerator_t));
76 layout->gsub_accels[i].init (layout->gsub->get_lookup (i));
87 layout->gsub_accels[i].fini (layout->gsub->get_lookup (i));
107 static inline const OT::GSUB&
110 if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return OT::Null(OT::GSUB);
    [all...]
hb-ot-layout-gsub-table.hh 1372 const GSUB &gsub = *(hb_ot_layout_from_face (c->face)->gsub); local
1379 const GSUB &gsub = *(hb_ot_layout_from_face (c->face)->gsub); local
    [all...]
hb-ot-layout-private.hh 62 * GSUB/GPOS
116 struct GSUB;
144 const struct OT::GSUB *gsub; member in struct:hb_ot_layout_t
173 /* buffer var allocations, used during the GSUB/GPOS processing */
175 #define lig_props() var1.u8[2] /* GSUB/GPOS ligature tracking */
176 #define syllable() var1.u8[3] /* GSUB/GPOS shaping boundaries */
  /external/harfbuzz_ng/src/
hb-ot-layout.cc 34 #include "hb-ot-layout-gsub-table.hh"
56 layout->gsub_blob = OT::Sanitizer<OT::GSUB>::sanitize (face->reference_table (HB_OT_TAG_GSUB));
57 layout->gsub = OT::Sanitizer<OT::GSUB>::lock_instance (layout->gsub_blob);
62 layout->gsub_lookup_count = layout->gsub->get_lookup_count ();
65 layout->gsub_accels = (hb_ot_layout_lookup_accelerator_t *) calloc (layout->gsub->get_lookup_count (), sizeof (hb_ot_layout_lookup_accelerator_t));
76 layout->gsub_accels[i].init (layout->gsub->get_lookup (i));
87 layout->gsub_accels[i].fini (layout->gsub->get_lookup (i));
107 static inline const OT::GSUB&
110 if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return OT::Null(OT::GSUB);
    [all...]
hb-ot-layout-gsub-table.hh 1372 const GSUB &gsub = *(hb_ot_layout_from_face (c->face)->gsub); local
1379 const GSUB &gsub = *(hb_ot_layout_from_face (c->face)->gsub); local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/config/
utilities.mak 70 # (The bash shell has a bug where `{gsub(...),...}' is
72 # overcome by putting a space between `{' and `gsub').
75 awk 'NR==1 {t=$$0} NR>1 {t=t "\n" $$0} END { gsub(/$(nl-escape)/,"\n",t); printf t }'
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeVerticalData.cpp 493 const OpenType::GSUBTable* gsub = OpenType::validateTable<OpenType::GSUBTable>(buffer); local
494 if (gsub)
495 gsub->getVerticalGlyphSubstitutions(&m_verticalGlyphMap, *buffer.get());
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-parser.rb 131 text.gsub( /\\(?:([abefnrstv])|([0-7]{3})|x([0-9a-fA-F]{2})|(.))/ ) do
154 token.text.gsub( /\A<<<\r?\n?|\r?\n?>>>\Z/, '' )
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-template.rb 164 | <%= @body.gsub( /^/, ' ' ) %>

Completed in 594 milliseconds

1 2 3