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

1 2

  /external/chromium_org/tools/json_schema_compiler/
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({})
cc_generator.py 242 .Substitute({'namespace': cpp_namespace, 'name': classname}))
283 c.Substitute({
514 .Substitute({
557 c.Substitute({'value_var': value_var, 'i': i, 'key': param.name})
725 return c.Eblock('}').Substitute({
792 .Substitute({'src_var': src_var, 'key': type_.name})
    [all...]
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...]
  /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 */
harfbuzz-gsub.c 211 ss->ssf.ssf2.Substitute = NULL;
213 if ( ALLOC_ARRAY( ss->ssf.ssf2.Substitute, count, HB_UShort ) )
216 s = ss->ssf.ssf2.Substitute;
253 FREE( ss->ssf.ssf2.Substitute );
299 value = ss->ssf.ssf2.Substitute[index];
341 s->Substitute = NULL;
345 if ( ALLOC_ARRAY( s->Substitute, count, HB_UShort ) )
348 sub = s->Substitute;
368 FREE( s->Substitute );
498 s = ms->Sequence[index].Substitute;
    [all...]
  /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 */
harfbuzz-gsub.c 211 ss->ssf.ssf2.Substitute = NULL;
213 if ( ALLOC_ARRAY( ss->ssf.ssf2.Substitute, count, HB_UShort ) )
216 s = ss->ssf.ssf2.Substitute;
253 FREE( ss->ssf.ssf2.Substitute );
299 value = ss->ssf.ssf2.Substitute[index];
341 s->Substitute = NULL;
345 if ( ALLOC_ARRAY( s->Substitute, count, HB_UShort ) )
348 sub = s->Substitute;
368 FREE( s->Substitute );
498 s = ms->Sequence[index].Substitute;
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
subprocess.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
47 #include <google/protobuf/stubs/substitute.h>
245 *error = strings::Substitute(
435 *error = strings::Substitute(
441 *error = strings::Substitute(
mock_code_generator.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 #include <google/protobuf/stubs/substitute.h>
234 return strings::Substitute("$0: $1, $2, $3, $4\n",
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
44 #include <google/protobuf/stubs/substitute.h>
242 *error = strings::Substitute(
432 *error = strings::Substitute(
438 *error = strings::Substitute(
mock_code_generator.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
40 #include <google/protobuf/stubs/substitute.h>
203 return strings::Substitute("$0: $1, $2, $3\n",
  /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(
  /external/chromium_org/tools/grit/grit/format/
rc.py 370 message = substituter.Substitute(message)
394 text = substituter.Substitute(text)
  /external/protobuf/src/google/protobuf/compiler/java/
java_helpers.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 #include <google/protobuf/stubs/substitute.h>
305 return strings::Substitute(
317 return strings::Substitute(
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42 #include <google/protobuf/stubs/substitute.h>
319 return strings::Substitute(
332 return strings::Substitute(
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_helpers.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 #include <google/protobuf/stubs/substitute.h>
328 return strings::Substitute(
340 return strings::Substitute(
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_primitive_field.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
45 #include <google/protobuf/stubs/substitute.h>
260 default_value = strings::Substitute(
268 default_value = strings::Substitute(
  /external/chromium_org/tools/playback_benchmark/
common.js 157 // Substitute window functions with overrides.
172 // Substitute window functions of static frames when DOM content is loaded.
181 // Substitute window functions of dynamically added frames.
  /external/chromium_org/tools/grit/grit/node/
structure.py 266 text = self.substituter.Substitute(text)
267 return self.GetRoot().GetSubstituter().Substitute(text)
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42 #include <google/protobuf/stubs/substitute.h>
290 return strings::Substitute(
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 580 """Substitute Decimals for floats in a string of statements.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 580 """Substitute Decimals for floats in a string of statements.

Completed in 606 milliseconds

1 2