/third_party/PyYAML/examples/yaml-highlight/ |
D | yaml_hl.py | 12 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: 77 markers.append([event.start_mark.index, +1, number, substitutions[cls, -1]]) [all …]
|
/third_party/gn/examples/ios/build/config/ios/templates/ |
D | merge_plist.gni | 24 # - substitutions (optional) 26 # a scope defining variable substitutions to perform when merging the 37 if (defined(invoker.substitutions)) { 39 "cannot define both substitutions and substitutions_json") 41 _substitutions_json = "$target_out_dir/$target_name/substitutions.json" 42 write_file(_substitutions_json, invoker.substitutions, "json") 60 "substitutions",
|
/third_party/node/test/fixtures/wpt/streams/transform-streams/ |
D | lipfuzz.any.js | 5 constructor(substitutions) { argument 6 this.substitutions = substitutions; 37 let replacement = this.substitutions[p1]; 46 const substitutions = { variable 140 const lft = new TransformStream(new LipFuzzTransformer(substitutions));
|
/third_party/gn/examples/ios/build/config/ios/scripts/ |
D | merge_plist.py | 68 def PerformSubstitutions(plist, substitutions): argument 73 result[key] = PerformSubstitutions(plist[key], substitutions) 77 return [ PerformSubstitutions(item, substitutions) for item in plist ] 87 expand = substitutions[match.group(1)] 126 if args.substitutions: 128 data, args.substitutions)
|
D | find_app_identifier_prefix.py | 109 substitutions = GenerateSubsitutions(args.bundle_identifier, mobileprovision) 112 sys.stdout.write(json.dumps(substitutions)) 115 output.write(json.dumps(substitutions))
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | str_replace.cc | 34 int substitutions = 0; in ApplySubstitutions() local 43 substitutions += 1; in ApplySubstitutions() 58 return substitutions; in ApplySubstitutions()
|
D | str_replace.h | 210 int substitutions = in StrReplaceAll() local 213 return substitutions; in StrReplaceAll()
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | mac_tool.py | 452 substitutions, overrides = self._InstallProvisioningProfile( 456 entitlements, substitutions, overrides 489 substitutions = self._GetSubstitutions(bundle_identifier, team_id + ".") 490 return substitutions, provisioning_data["Entitlements"] 637 def _InstallEntitlements(self, entitlements, substitutions, overrides): argument 661 data = self._ExpandVariables(data, substitutions) 669 def _ExpandVariables(self, data, substitutions): argument 682 for key, value in substitutions.items(): 686 return [self._ExpandVariables(v, substitutions) for v in data] 688 return {k: self._ExpandVariables(data[k], substitutions) for k in data}
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | mac_tool.py | 452 substitutions, overrides = self._InstallProvisioningProfile( 456 entitlements, substitutions, overrides 489 substitutions = self._GetSubstitutions(bundle_identifier, team_id + ".") 490 return substitutions, provisioning_data["Entitlements"] 637 def _InstallEntitlements(self, entitlements, substitutions, overrides): argument 661 data = self._ExpandVariables(data, substitutions) 669 def _ExpandVariables(self, data, substitutions): argument 682 for key, value in substitutions.items(): 686 return [self._ExpandVariables(v, substitutions) for v in data] 688 return {k: self._ExpandVariables(data[k], substitutions) for k in data}
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-string.c | 132 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/typescript/tests/baselines/reference/ |
D | stringRawType.types | 4 >String.raw : (template: { raw: readonly string[] | ArrayLike<string>; }, ...substitutions: any[]) … 6 >raw : (template: { raw: readonly string[] | ArrayLike<string>; }, ...substitutions: any[]) => stri…
|
/third_party/node/deps/v8/src/execution/arm64/ |
D | pointer-auth-arm64.cc | 78 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/gn/src/gn/ |
D | function_toolchain.cc | 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] 580 runtime_outputs [string list with substitutions]
|
/third_party/node/test/fixtures/wpt/resources/ |
D | testharness.js | 4356 function substitute(template, substitutions) argument 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) argument 4386 rv.push(String(substitutions[components[i + 1]])); 4408 var replacement = substitute(children[i], substitutions); 4466 function make_dom(template, substitutions, output_document) argument 4477 function render(template, substitutions, output_document) argument [all …]
|
/third_party/skia/third_party/externals/angle2/scripts/ |
D | generate_new_renderer.py | 262 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/ |
D | hb-ot-layout-common.hh | 3149 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 [all …]
|
/third_party/typescript/src/services/refactors/ |
D | extractSymbol.ts | 852 { usages: usagesInScope, typeParameterUsages, substitutions }: ScopeUsages, 915 … } = transformFunctionBody(node, exposedVariableDeclarations, writes, substitutions, !!(range.fact… 1168 { substitutions }: ScopeUsages, 1185 let initializer = transformConstantInitializer(skipParentheses(node), substitutions); 1409 …nly VariableDeclaration[], writes: readonly UsageEntry[] | undefined, substitutions: ReadonlyESMap… 1411 if (isBlock(body) && !hasWritesOrVariableDeclarations && substitutions.size === 0) { 1419 if (hasWritesOrVariableDeclarations || substitutions.size) { 1457 const substitution = substitutions.get(getNodeId(node).toString()); 1465 …function transformConstantInitializer(initializer: Expression, substitutions: ReadonlyESMap<string… 1466 return substitutions.size [all …]
|
/third_party/gn/examples/ios/build/config/ios/ |
D | BUILD.gn | 9 substitutions = {
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
D | lit.cfg | 23 config.substitutions.append((tool, substitution))
|
/third_party/python/Tools/msi/ |
D | buildrelease.bat | 12 rem The following substitutions will be applied to the release URI: 22 rem The following substitutions will be applied to the download URL: 234 echo The following substitutions will be applied to the download URL:
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
D | varsub.bat | 67 # Do variable substitutions, and output line
|
/third_party/typescript/src/lib/ |
D | es2015.core.d.ts | 538 raw(template: { raw: readonly string[] | ArrayLike<string>}, ...substitutions: any[]): string;
|
/third_party/typescript/lib/ |
D | lib.es2015.core.d.ts | 558 raw(template: { raw: readonly string[] | ArrayLike<string>}, ...substitutions: any[]): string;
|
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
D | valhall.py | 325 substitutions = { 346 for i, j in substitutions.items():
|
/third_party/glslang/Test/baseResults/ |
D | cppSimple.vert.out | 41 ERROR: 0:185: '#define' : Macro redefined; different substitutions: m7 42 ERROR: 0:192: '#define' : Macro redefined; different substitutions: m8 73 ERROR: 12:20045: '#define' : Macro redefined; different substitutions: SPACE_IN_MIDDLE
|