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

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/layout/
SingleSubstitutionSubtables.cpp 49 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);
MultipleSubstSubtables.cpp 48 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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep292.py 26 self.assertEqual(s.substitute(dict(who='tim', what='ham')),
28 self.assertRaises(KeyError, s.substitute, dict(who='tim'))
33 self.assertEqual(s.substitute(d), 'tim likes ham for dinner')
34 self.assertRaises(KeyError, s.substitute,
40 eq(s.substitute(dict(who='tim', what='ham')),
43 eq(s.substitute(dict(who='tim', what='ham')), 'tim likes $')
49 eq(s.substitute(d), '%(foo)s baz baz')
56 eq(s.substitute(d), 'tim has eaten 7 bags of ham today')
59 eq(s.substitute(d), 'tim has eaten 7 bags of ham today')
65 eq(s.substitute(d), "('tim', 'fred') ate ('ham', 'kung pao')"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep292.py 26 self.assertEqual(s.substitute(dict(who='tim', what='ham')),
28 self.assertRaises(KeyError, s.substitute, dict(who='tim'))
33 self.assertEqual(s.substitute(d), 'tim likes ham for dinner')
34 self.assertRaises(KeyError, s.substitute,
40 eq(s.substitute(dict(who='tim', what='ham')),
43 eq(s.substitute(dict(who='tim', what='ham')), 'tim likes $')
49 eq(s.substitute(d), '%(foo)s baz baz')
56 eq(s.substitute(d), 'tim has eaten 7 bags of ham today')
59 eq(s.substitute(d), 'tim has eaten 7 bags of ham today')
65 eq(s.substitute(d), "('tim', 'fred') ate ('ham', 'kung pao')"
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
code.py 17 def Append(self, line='', substitute=True, indent_level=None):
21 substitute: indicated whether this line should be affected by
22 code.Substitute().
27 substitute=substitute))
49 if line.substitute:
55 self.Append(line.value, line.substitute)
94 Unaffected by code.Substitute().
105 self.Append(comment_prefix + line, substitute=False)
106 self.Append(comment_prefix + comment, substitute=False
    [all...]
code_test.py 87 c.Substitute({'var1': 'one', 'var2': 'two'})
91 c.Substitute({'var1': 'one', 'var2': 'two', 'var3': 'three'})
99 # No unnamed placeholders allowed when substitute is run
102 self.assertRaises(TypeError, c.Substitute, ('var1', 'one'))
105 self.assertRaises(TypeError, c.Substitute, {'var1': 'one'})
108 self.assertRaises(TypeError, c.Substitute, {'var1': 'one'})
111 self.assertRaises(KeyError, c.Substitute, {'clearlynotvar1': 'one'})
155 c.Substitute({})
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFCatalog.h 71 /** 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)
107 : fOriginal(original), fSubstitute(substitute) {
  /external/skia/src/pdf/
SkPDFCatalog.h 71 /** 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)
107 : fOriginal(original), fSubstitute(substitute) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
TestR.java 4 * Test class used as a substitute for com.xtremelabs.robolectric.res.ResourceLoader's
  /external/chromium_org/tools/grit/grit/tool/
build_unittest.py 31 self.input = util.PathFromRoot('grit/testdata/substitute.grd')
41 self.input = util.PathFromRoot('grit/testdata/substitute.grd')
46 expected_dep_file = os.path.join(output_dir, 'substitute.grd.d')
57 util.PathFromRoot('grit/testdata/substitute.xmb'))
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
HardwareLayerEnabler.java 9 * A backwards-compatible substitute for {@link ViewPropertyAnimator#withLayer()}.
  /external/chromium_org/mojo/public/bindings/generators/
mojom_cpp_generator.py 33 self.lines.append(self.template.substitute(map))
164 return cls.ptr_getter_template.substitute(subs)
166 return cls.handle_getter_template.substitute(subs)
168 return cls.getter_template.substitute(subs)
174 return cls.ptr_setter_template.substitute(subs)
176 return cls.setter_template.substitute(subs)
210 return cls.wrapper_obj_getter_template.substitute(subs)
212 return cls.wrapper_handle_getter_template.substitute(subs)
214 return cls.wrapper_getter_template.substitute(subs)
220 return cls.wrapper_obj_setter_template.substitute(subs
    [all...]
  /external/chromium_org/tools/cr/
main.py 70 print context.Substitute('No command specified.')
75 print context.Substitute(
78 print context.Substitute(
82 print context.Substitute(
88 print context.Substitute(
  /external/harfbuzz/src/
harfbuzz-gsub-private.h 54 HB_UShort* Substitute; /* array of substitute glyph IDs */
56 Substitute array */
81 HB_UShort* Substitute; /* string of glyph IDs to
82 substitute */
84 Substitute array */
131 to substitute */
441 HB_UShort* Substitute; /* array of substitute Glyph ID */
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-gsub-private.h 54 HB_UShort* Substitute; /* array of substitute glyph IDs */
56 Substitute array */
81 HB_UShort* Substitute; /* string of glyph IDs to
82 substitute */
84 Substitute array */
131 to substitute */
441 HB_UShort* Substitute; /* array of substitute Glyph ID */
  /external/chromium_org/chrome_frame/
chrome_frame_helper_dll.cc 10 // EVENT_OBJECT_CREATE accessibility events. This is a poor substitute to
  /external/chromium_org/tools/cr/cr/actions/
gyp.py 20 print context.Substitute('Invoking gyp with {GYP_GENERATOR_FLAGS}')
  /external/clang/test/CodeGenObjC/
debug-info-instancetype.m 3 // Substitute the actual type for a method returning instancetype.
  /external/openssh/
fixpaths 3 # fixpaths - substitute makefile variables into text files
  /external/chromium_org/tools/gyp/test/compiler-override/
gyptest-compiler-global-settings.py 34 output.write(s.substitute(replacements))
50 output.write(s.substitute(replacements))
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
ClassCacheTest.java 13 // Substitute this LOCK with your monitor (could be you object you are
52 // Substitute this LOCK with your monitor (could be you object you are
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
substitute.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 #include <google/protobuf/stubs/substitute.h>
44 // to Substitute().
53 string Substitute(
85 << "strings::Substitute format string invalid: asked for \"$"
98 << "Invalid strings::Substitute() format string: \""
substitute.h 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 // from google3/strings/substitute.h
46 // strings::Substitute()
52 // return strings::Substitute("My name is $0 $1 and I am $2 years old.",
73 // SubstituteAndAppend() is like Substitute() but appends the result to
81 // Substitute() is significantly faster than StringPrintf(). For very
140 LIBPROTOBUF_EXPORT string Substitute(
  /external/protobuf/src/google/protobuf/stubs/
substitute.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 #include <google/protobuf/stubs/substitute.h>
44 // to Substitute().
53 string Substitute(
85 << "strings::Substitute format string invalid: asked for \"$"
98 << "Invalid strings::Substitute() format string: \""
substitute.h 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 // from google3/strings/substitute.h
46 // strings::Substitute()
52 // return strings::Substitute("My name is $0 $1 and I am $2 years old.",
73 // SubstituteAndAppend() is like Substitute() but appends the result to
81 // Substitute() is significantly faster than StringPrintf(). For very
140 LIBPROTOBUF_EXPORT string Substitute(

Completed in 677 milliseconds

1 2 3 4 5 6 7 8 91011>>