Searched defs:substitute (Results 1 - 22 of 22) sorted by relevance

/external/icu4c/layout/
H A DSingleSubstitutionSubtables.cpp49 TTGlyphID substitute = ((TTGlyphID) LE_GET_GLYPH(glyph)) + SWAPW(deltaGlyphID); local
51 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, substitute))) {
52 glyphIterator->setCurrGlyphID(substitute);
67 TTGlyphID substitute = SWAPW(substituteArray[coverageIndex]); local
69 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, substitute))) {
70 glyphIterator->setCurrGlyphID(substitute);
H A DMultipleSubstSubtables.cpp48 TTGlyphID substitute = SWAPW(sequenceTable->substituteArray[0]); local
50 if (filter != NULL && ! filter->accept(LE_SET_GLYPH(glyph, substitute))) {
54 glyphIterator->setCurrGlyphID(substitute);
61 TTGlyphID substitute = SWAPW(sequenceTable->substituteArray[i]); local
63 if (! filter->accept(substitute)) {
82 TTGlyphID substitute = SWAPW(sequenceTable->substituteArray[i]); local
84 newGlyphs[insert] = LE_SET_GLYPH(glyph, substitute);
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-private.hh55 inline void substitute (hb_font_t *font, hb_buffer_t *buffer) const { map.substitute (this, font, buffer); } function in struct:hb_ot_shape_plan_t
H A Dhb-ot-map.cc105 void hb_ot_map_t::substitute (const hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const function in class:hb_ot_map_t
H A Dhb-ot-layout-gsub-table.hh111 * substitute GlyphID */
124 c->glyphs->add (substitute[iter.get_coverage ()]);
134 c->output->add (substitute[iter.get_coverage ()]);
156 if (unlikely (index >= substitute.len)) return TRACE_RETURN (false);
158 glyph_id = substitute[index];
171 if (unlikely (!substitute.serialize (c, substitutes, num_glyphs))) return TRACE_RETURN (false);
178 return TRACE_RETURN (coverage.sanitize (c, this) && substitute.sanitize (c));
187 substitute; /* Array of substitute member in struct:OT::SingleSubstFormat2
190 DEFINE_SIZE_ARRAY (6, substitute);
304 substitute; /* String of GlyphIDs to substitute */ member in struct:OT::Sequence
921 const ArrayOf<GlyphID> &substitute = StructAfter<ArrayOf<GlyphID> > (lookahead); local
947 const ArrayOf<GlyphID> &substitute = StructAfter<ArrayOf<GlyphID> > (lookahead); local
974 const ArrayOf<GlyphID> &substitute = StructAfter<ArrayOf<GlyphID> > (lookahead); local
[all...]
/external/skia/src/pdf/
H A DSkPDFCatalog.h71 /** Set substitute object for the passed object.
73 void setSubstitute(SkPDFObject* original, SkPDFObject* substitute);
75 /** Find and return any substitute object set for the passed object. If
80 /** Set file offsets for the resources of substitute objects.
83 * @return Total size of resources of substitute objects.
87 /** Emit the resources of substitute objects.
106 SubstituteMapping(SkPDFObject* original, SkPDFObject* substitute) argument
107 : fOriginal(original), fSubstitute(substitute) {
H A DSkPDFCatalog.cpp67 // If it's not in the main array, check if it's a substitute object.
141 SkPDFObject* substitute) {
143 // Sanity check: is the original already in substitute list?
167 SubstituteMapping newMapping(original, substitute);
170 // Add resource objects of substitute object to catalog.
140 setSubstitute(SkPDFObject* original, SkPDFObject* substitute) argument
/external/smack/src/org/xbill/DNS/
H A DGenerator.java97 substitute(String spec, long n) throws IOException { method in class:Generator
218 String namestr = substitute(namePattern, current);
220 String rdata = substitute(rdataPattern, current);
234 String namestr = substitute(namePattern, current);
236 String rdata = substitute(rdataPattern, current);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-apache-regexp.jar ... int options int subsOptions public java.lang.String substitute (java.lang.String, java.lang.String ...
H A Dant-apache-oro.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/icu4c/common/
H A Dlocdispnames.cpp299 const char *substitute,
337 /* no string from a resource bundle: convert the substitute */
338 length=(int32_t)uprv_strlen(substitute);
339 u_charsToUChars(substitute, dest, uprv_min(length, destCapacity));
295 _getStringOrCopyKey(const char *path, const char *locale, const char *tableKey, const char* subTableKey, const char *itemKey, const char *substitute, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
/external/mksh/src/
H A Deval.c106 substitute(const char *cp, int f) function
326 v_evaluate(&v, substitute(sp, 0),
408 evaluate(substitute(end, 0),
451 evaluate(substitute(stg = wdstrip(beg, 0), 0),
455 evaluate(substitute(stg = wdstrip(mid, 0), 0),
496 pat = substitute(tpat0, 0);
499 rrep = substitute(d, 0);
716 * Restore our position and substitute
/external/icu4c/test/intltest/
H A Dregextst.cpp1429 UnicodeString substitute = UNICODE_STRING_SIMPLE("--\\u0043--"); local
1431 UnicodeString result = matcher->replaceAll(substitute, status);
1437 UnicodeString substitute = UNICODE_STRING_SIMPLE("--\\U00010000--"); local
1439 UnicodeString result = matcher->replaceAll(substitute, status);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.variables_3.2.400.v20100505.jar ... variables.IStringVariableManager manager private java.util.HashSet substitute (java.lang.String, boolean, boolean, org.eclipse ...
H A Dorg.apache.lucene.analysis_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 255 milliseconds