Home
last modified time | relevance | path

Searched refs:substitutions (Results 1 - 25 of 33) sorted by relevance

12

/third_party/PyYAML/examples/yaml-highlight/
H A Dyaml_hl.py12 self.substitutions = {}
25 self.substitutions[cls, -1] = start
27 self.substitutions[cls, +1] = end
59 substitutions = self.style.substitutions
68 if (cls, -1) in substitutions:
69 markers.append([token.start_mark.index, +2, number, substitutions[cls, -1]])
70 if (cls, +1) in substitutions:
71 markers.append([token.end_mark.index, -2, number, substitutions[cls, +1]])
76 if (cls, -1) in substitutions
[all...]
/third_party/gn/examples/ios/build/config/ios/scripts/
H A Dmerge_plist.py7 substitutions $(VARIABLE) in the Property List string values.
72 def PerformSubstitutions(plist, substitutions):
73 """Performs variables substitutions in |plist| given by |substitutions|."""
77 result[key] = PerformSubstitutions(plist[key], substitutions)
81 return [ PerformSubstitutions(item, substitutions) for item in plist ]
91 expand = substitutions[match.group(1)]
99 """Performs variable substitutions in |plist| from |substitutions_path|."""
111 '-s', '--substitutions',
112 help='path to a JSON file containing variable substitutions')
[all...]
H A Dfind_app_identifier_prefix.py109 substitutions = GenerateSubsitutions(args.bundle_identifier, mobileprovision)
112 sys.stdout.write(json.dumps(substitutions))
115 output.write(json.dumps(substitutions))
/third_party/node/test/fixtures/wpt/streams/transform-streams/
H A Dlipfuzz.any.js5 constructor(substitutions) {
6 this.substitutions = substitutions;
37 let replacement = this.substitutions[p1];
46 const substitutions = {
140 const lft = new TransformStream(new LipFuzzTransformer(substitutions));
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstr_replace.cc27 // stores the result in *result_ptr. Returns the number of substitutions that
34 int substitutions = 0; in ApplySubstitutions() local
43 substitutions += 1; in ApplySubstitutions()
58 return substitutions; in ApplySubstitutions()
H A Dstr_replace.h21 // replacement function designed for large, arbitrary text substitutions,
27 // If the string being modified is known at compile-time, and the substitutions
58 // replaced text is not considered for any further substitutions.
102 // list of key/value pairs, returning the number of substitutions that occurred.
155 // out that most callers have small enough a list of substitutions that the
210 int substitutions = in StrReplaceAll() local
213 return substitutions; in StrReplaceAll()
/third_party/node/tools/gyp/pylib/gyp/
H A Dmac_tool.py452 substitutions, overrides = self._InstallProvisioningProfile(
456 entitlements, substitutions, overrides
477 A tuple containing two dictionary: variables substitutions and values
489 substitutions = self._GetSubstitutions(bundle_identifier, team_id + ".")
490 return substitutions, provisioning_data["Entitlements"]
611 """Constructs a dictionary of variable substitutions for Entitlements.plist.
618 Dictionary of substitutions to apply when generating Entitlements.plist.
637 def _InstallEntitlements(self, entitlements, substitutions, overrides):
647 substitutions: dictionary, variable substitutions
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dmac_tool.py452 substitutions, overrides = self._InstallProvisioningProfile(
456 entitlements, substitutions, overrides
477 A tuple containing two dictionary: variables substitutions and values
489 substitutions = self._GetSubstitutions(bundle_identifier, team_id + ".")
490 return substitutions, provisioning_data["Entitlements"]
611 """Constructs a dictionary of variable substitutions for Entitlements.plist.
618 Dictionary of substitutions to apply when generating Entitlements.plist.
637 def _InstallEntitlements(self, entitlements, substitutions, overrides):
647 substitutions: dictionary, variable substitutions
[all...]
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-string.c132 const ecma_value_t *substitutions; in ecma_builtin_string_object_raw() local
137 substitutions = args + 1; in ecma_builtin_string_object_raw()
142 substitutions = NULL; in ecma_builtin_string_object_raw()
243 ecma_string_t *next_sub_p = ecma_op_to_string (substitutions[next_index]); in ecma_builtin_string_object_raw()
/third_party/gn/src/gn/
H A Dfunction_toolchain.cc318 command [string with substitutions]
332 default_output_dir [string with substitutions]
360 depfile [string with substitutions]
378 description [string with substitutions, optional]
448 outputs [list of strings with substitutions]
477 partial_outputs [list of strings with substitutions]
496 link_output [string with substitutions]
497 depend_output [string with substitutions]
559 rspfile [string with substitutions]
565 rspfile_content [string with substitutions]
[all...]
/third_party/node/test/fixtures/wpt/resources/
H A Dtestharness.js4343 * render(template, substitutions) - take a template and an object mapping
4346 * substitute(template, substitutions) - take a template and variable mapping object,
4347 * make the variable substitutions and return the substituted template
4356 function substitute(template, substitutions)
4359 var replacement = template(substitutions);
4364 return substitute(replacement, substitutions);
4368 return substitute_single(template, substitutions);
4372 return substitute(x, substitutions);
4376 function substitute_single(template, substitutions)
4386 rv.push(String(substitutions[component
[all...]
/third_party/node/deps/v8/src/execution/arm64/
H A Dpointer-auth-arm64.cc78 uint8_t substitutions[16] = {0xb, 0x6, 0x8, 0xf, 0xc, 0x0, 0x9, 0xe, in PACSub() local
82 t_output |= static_cast<uint64_t>(substitutions[index]) << (4 * i); in PACSub()
89 uint8_t substitutions[16] = {0x5, 0xe, 0xd, 0x8, 0xa, 0xb, 0x1, 0x9, in PACInvSub() local
93 t_output |= static_cast<uint64_t>(substitutions[index]) << (4 * i); in PACInvSub()
/third_party/skia/third_party/externals/angle2/scripts/
H A Dgenerate_new_renderer.py262 substitutions = { variable
275 h_file.write(string.Template(h_file_template).substitute(substitutions))
276 cpp_file.write(string.Template(cpp_file_template).substitute(substitutions))
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-layout-common.hh3149 unsigned int count = substitutions.len; in find_substitute()
3152 const FeatureTableSubstitutionRecord &record = substitutions.arrayZ[i]; in find_substitute()
3162 + hb_iter (substitutions) in collect_lookups()
3172 for (const FeatureTableSubstitutionRecord& record : substitutions) in closure_features()
3178 for (const FeatureTableSubstitutionRecord& record : substitutions) in intersects_features()
3195 + substitutions.iter () in subset()
3196 | hb_apply (subset_record_array (l, &(out->substitutions), this)) in subset()
3199 return_trace (bool (out->substitutions)); in subset()
3207 substitutions.sanitize (c, this)); in sanitize()
3213 substitutions; member
3264 substitutions; global() member
[all...]
/third_party/python/Tools/msi/
H A Dbuildrelease.bat12 rem The following substitutions will be applied to the release URI:
24 rem The following substitutions will be applied to the download URL:
256 echo The following substitutions will be applied to the download URL:
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A Dvarsub.bat67 # Do variable substitutions, and output line
H A DdumpICUrules.bat269 # ignore CVS keyword substitutions
381 # ignore CVS keyword substitutions
/third_party/mesa3d/src/panfrost/bifrost/valhall/
H A Dvalhall.py325 substitutions = {
346 for i, j in substitutions.items():
/third_party/mesa3d/src/asahi/lib/
H A Dgen_pack.py161 substitutions = {
182 for i, j in substitutions.items():
/third_party/mesa3d/src/broadcom/cle/
H A Dgen_pack_header.py48 substitutions = {
69 for i, j in substitutions.items():
/third_party/gn/src/base/strings/
H A Dstring_util.cc936 size_t substitutions = subst.size(); in DoReplaceStringPlaceholders() local
937 DCHECK_LT(substitutions, 10U); in DoReplaceStringPlaceholders()
971 if (index < substitutions) in DoReplaceStringPlaceholders()
/third_party/mesa3d/src/panfrost/lib/genxml/
H A Dgen_pack.py223 substitutions = {
245 for i, j in substitutions.items():
/third_party/node/deps/v8/src/ast/
H A Dprettyprinter.cc560 for (Expression* substitution : *node->substitutions()) { in VisitTemplateLiteral()
1451 for (int i = 0; i < node->substitutions()->length();) { in VisitTemplateLiteral()
1452 PrintIndentedVisit("EXPR", node->substitutions()->at(i++)); in VisitTemplateLiteral()
H A Dast.h2693 const ZonePtrList<Expression>* substitutions() const { in substitutions() function in v8::internal::final
2701 const ZonePtrList<Expression>* substitutions, int pos) in TemplateLiteral()
2704 substitutions_(substitutions) {} in TemplateLiteral()
3317 const ZonePtrList<Expression>* substitutions, int pos) { in NewTemplateLiteral()
3318 return zone_->New<TemplateLiteral>(string_parts, substitutions, pos); in NewTemplateLiteral()
2700 TemplateLiteral(const ZonePtrList<const AstRawString>* parts, const ZonePtrList<Expression>* substitutions, int pos) TemplateLiteral() argument
3315 NewTemplateLiteral( const ZonePtrList<const AstRawString>* string_parts, const ZonePtrList<Expression>* substitutions, int pos) NewTemplateLiteral() argument
H A Dast-traversal-visitor.h553 for (Expression* sub : *expr->substitutions()) { in VisitTemplateLiteral()

Completed in 31 milliseconds

12