Home
last modified time | relevance | path

Searched refs:replace (Results 201 - 225 of 1525) sorted by relevance

12345678910>>...61

/third_party/node/deps/v8/third_party/inspector_protocol/
H A Droll.py172 contents = contents.replace('CRDTP_EXPORT ', '')
173 contents = contents.replace(
176 contents = contents.replace(
/third_party/node/deps/npm/node_modules/debug/src/
H A Dcommon.js91 args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
179 namespaces = split[i].replace(/\*/g, '.*?');
244 .replace(/\.\*\?$/, '*');
/third_party/node/deps/npm/node_modules/aproba/
H A Dindex.js42 addSchema(schema.replace(/E.*$/, 'E'), arity)
43 addSchema(schema.replace(/E/, 'Z'), arity)
83 return list.join(', ').replace(/, ([^,]+)$/, ' or $1')
/third_party/mindspore/
H A Dbuild_helper.py119 md5_path = os.path.join(out_path, pf.replace(".patch", ".md5"))
139 if not os.path.exists(os.path.join(patch_path, md5_file.replace(".md5", ".patch"))):
143 if (origin_v != compute_md5(os.path.join(patch_path, md5_file.replace(".md5", ".patch")))):
/third_party/python/Lib/
H A Dfnmatch.py106 stuff = stuff.replace('\\', r'\\')
129 stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-')
H A Dmailbox.py219 data = data.replace(b'\n', linesep)
232 message = message.replace(b'\nFrom ', b'\n>From ')
233 message = message.replace(b'\n', linesep)
255 line = line.replace(b'\n', linesep)
391 return f.read().replace(linesep, b'\n')
495 hostname = hostname.replace('/', r'\057')
497 hostname = hostname.replace(':', r'\072')
781 from_line = self._file.readline().replace(linesep, b'')
783 msg = self._message_factory(string.replace(linesep, b'\n'))
799 return string.replace(linese
[all...]
H A Dsysconfig.py341 tmpv = v.replace('$$', '')
353 done[n] = v.replace('$$', '$')
662 _CONFIG_VARS['py_version_nodot_plat'] = sys.winver.replace('.', '')
761 osname = osname.lower().replace('/', '')
762 machine = machine.replace(' ', '_')
763 machine = machine.replace('/', '-')
H A Ddifflib.py164 # 'replace' a[i1:i2] should be replaced by b[j1:j2]
501 'replace': a[i1:i2] should be replaced by b[j1:j2]
516 replace a[3:4] (x) b[2:3] (y)
533 tag = 'replace'
563 ('replace', 19, 20, 20, 21),
568 ('replace', 34, 35, 30, 31),
861 if tag == 'replace':
944 # no identical pair either -- treat it as a straight replace
967 if tag == 'replace':
1156 if tag in {'replace', 'delet
[all...]
/third_party/vixl/tools/
H A Dgenerate_simulator_traces.py129 return test.lower().replace('_', '-') + '.h'
132 return test.lower().replace('_', '-') + '-trace-aarch64.h'
216 test_name = test_name.replace('and_', 'and')
H A Dverify_assembler_traces.py360 (m.group('instruction'), m.group('encoding').replace(" ", "").split(","))
395 match_object.group('encoding').replace(" ", "").split(",")
422 """.format(instruction=vixl_instructions[i].replace("\n", "; "),
/third_party/python/PCbuild/
H A Dprepare_ssl.py82 src = src.replace('$(SRC_D)', '.').strip('"')
83 dest = dest.strip('"').replace('$(INCO_D)', dir)
100 os.replace('ms\\uplink.c', 'ms\\uplink.c.orig')
/third_party/skia/gn/
H A Dgn_meta_sln.py68 projName = nameObj.group(1).replace('/', '.')
162 newProjLines.append(projConfigLine.replace("GN",
165 newProjLines.append(line.replace(projConfigs[0][0],
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dmsvs.py172 path = path.replace("/", "\\")
175 path = path.replace("\\", "/")
280 value = value.replace("/", "\\")
282 value = [i.replace("/", "\\") for i in value]
381 i.replace("$(IntDir)", '`cygpath -m "${INTDIR}"`') for i in direct_cmd
384 i.replace("$(OutDir)", '`cygpath -m "${OUTDIR}"`') for i in direct_cmd
387 i.replace("$(InputDir)", '`cygpath -m "${INPUTDIR}"`') for i in direct_cmd
391 i.replace("$(InputPath)", '`cygpath -m "${INPUTPATH}"`')
394 direct_cmd = ['\\"%s\\"' % i.replace('"', '\\\\\\"') for i in direct_cmd]
418 command = [cmd[0].replace("/", "\\")]
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dmsvs.py172 path = path.replace("/", "\\")
175 path = path.replace("\\", "/")
280 value = value.replace("/", "\\")
282 value = [i.replace("/", "\\") for i in value]
381 i.replace("$(IntDir)", '`cygpath -m "${INTDIR}"`') for i in direct_cmd
384 i.replace("$(OutDir)", '`cygpath -m "${OUTDIR}"`') for i in direct_cmd
387 i.replace("$(InputDir)", '`cygpath -m "${INPUTDIR}"`') for i in direct_cmd
391 i.replace("$(InputPath)", '`cygpath -m "${INPUTPATH}"`')
394 direct_cmd = ['\\"%s\\"' % i.replace('"', '\\\\\\"') for i in direct_cmd]
415 command = ["type"] if cmd[0] == "cat" else [cmd[0].replace("/", "\\")]
[all...]
/third_party/skia/third_party/externals/angle2/scripts/
H A Dgenerate_entry_points.py1586 param_type = param_type.replace("*", "")
1587 param_type = param_type.replace("&", "")
1588 param_type = param_type.replace("const", "")
1589 param_type = param_type.replace("struct", "")
1676 return type.replace("**", "* const *")
1678 return type.replace("*", "*const ") if "[]" in type else "const " + type
2121 return "const " + param_type.replace("ConstPointerPointer", "") + " * const *"
2124 return "const " + param_type.replace("ConstPointer", "") + " *"
2127 return param_type.replace("PointerPointer", "") + " **"
2130 return param_type.replace("Pointe
[all...]
/drivers/peripheral/thermal/interfaces/hdi_service/src/
H A Dthermal_hdf_config.cpp164 THERMAL_HILOGI(COMP_HDI, "ParsePollingNode ParsePollingNodetztype: %{public}s, replace: %{public}s", in ParsePollingNode()
165 tz.type.c_str(), tz.replace.c_str()); in ParsePollingNode()
266 auto replace = xmlGetProp(node, BAD_CAST("replace")); in GetThermalZoneNodeInfo() local
267 if (replace != nullptr) { in GetThermalZoneNodeInfo()
268 tz.replace = std::string(reinterpret_cast<char*>(replace)); in GetThermalZoneNodeInfo()
270 xmlFree(replace); in GetThermalZoneNodeInfo()
/third_party/libevdev/doc/html/search/
H A Dsearch.js222 var searchValue = this.DOMSearchField().value.replace(/ +/g, "");
285 var searchValue = this.DOMSearchField().value.replace(/ +/g, "");
335 var searchValue = this.DOMSearchField().value.replace(/^ +/, "");
503 search = search.replace(/^ +/, ""); // strip leading spaces
504 search = search.replace(/ +$/, ""); // strip trailing spaces
518 rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_'
/third_party/rust/crates/clap/clap_complete/src/
H A Ddynamic.rs152 let escaped_name = name.replace('-', "_"); in register()
196 .replace("NAME", &escaped_name) in register()
197 .replace("EXECUTABLES", &executables) in register()
198 .replace("OPTIONS", options) in register()
199 .replace("COMPLETER", &completer) in register()
200 .replace("UPPER", &upper_name); in register()
/third_party/skia/third_party/externals/oboe/docs/reference/search/
H A Dsearch.js220 var searchValue = this.DOMSearchField().value.replace(/ +/g, "");
283 var searchValue = this.DOMSearchField().value.replace(/ +/g, "");
333 var searchValue = this.DOMSearchField().value.replace(/^ +/, "");
501 search = search.replace(/^ +/, ""); // strip leading spaces
502 search = search.replace(/ +$/, ""); // strip trailing spaces
516 rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_'
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/
H A Dhdf_linux_scann.py254 parent_path, i).replace("/", os.path.sep))
288 info = info.replace(".o", ".c")
293 makefile_path.replace("\\", '/').
297 info = info.replace(prefix4_field.group(),
354 makefile_path.replace("\\", '/').split("/")[:-1])
355 enable_dict[key_enable] = line.replace(
443 str1 = str1.replace(k, v)
/third_party/node/deps/v8/src/runtime/
H A Druntime-strings.cc71 Handle<String> replace, bool* found, int recursion_limit) { in StringReplaceOneCharWithString()
82 if (!StringReplaceOneCharWithString(isolate, first, search, replace, found, in StringReplaceOneCharWithString()
89 if (!StringReplaceOneCharWithString(isolate, second, search, replace, found, in StringReplaceOneCharWithString()
104 isolate, cons1, isolate->factory()->NewConsString(first, replace), in StringReplaceOneCharWithString()
117 Handle<String> replace = args.at<String>(2); in RUNTIME_FUNCTION() local
124 if (StringReplaceOneCharWithString(isolate, subject, search, replace, &found, in RUNTIME_FUNCTION()
132 if (StringReplaceOneCharWithString(isolate, subject, search, replace, &found, in RUNTIME_FUNCTION()
419 // Equivalent to global replacement `string.replace(/"/g, "&quot")`, but this in RUNTIME_FUNCTION()
69 StringReplaceOneCharWithString( Isolate* isolate, Handle<String> subject, Handle<String> search, Handle<String> replace, bool* found, int recursion_limit) StringReplaceOneCharWithString() argument
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_pipeline_cache.c178 /* Consumes references to both search and replace and produces a reference */
183 struct vk_pipeline_cache_object *replace) in vk_pipeline_cache_replace_object()
185 assert(object_keys_equal(search, replace)); in vk_pipeline_cache_replace_object()
197 entry->key = vk_pipeline_cache_object_ref(replace); in vk_pipeline_cache_replace_object()
203 vk_pipeline_cache_object_ref(replace); in vk_pipeline_cache_replace_object()
204 _mesa_set_add_pre_hashed(cache->object_cache, hash, replace); in vk_pipeline_cache_replace_object()
211 vk_pipeline_cache_object_unref(replace); in vk_pipeline_cache_replace_object()
214 return replace; in vk_pipeline_cache_replace_object()
180 vk_pipeline_cache_replace_object(struct vk_pipeline_cache *cache, uint32_t hash, struct vk_pipeline_cache_object *search, struct vk_pipeline_cache_object *replace) vk_pipeline_cache_replace_object() argument
/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dmod.rs1380 let mut stack = vec![mem::replace(self, empty_ast())]; in drop()
1391 stack.push(mem::replace(&mut x.ast, empty_ast())); in drop()
1394 stack.push(mem::replace(&mut x.ast, empty_ast())); in drop()
1441 let mut stack = vec![mem::replace(self, empty_set())]; in drop()
1452 stack.push(mem::replace(&mut x.kind, empty_set())); in drop()
1459 stack.push(mem::replace(&mut op.lhs, empty_set())); in drop()
1460 stack.push(mem::replace(&mut op.rhs, empty_set())); in drop()
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DCaseFoldTransliterator.java95 /* replace by the mapping string */ in handleTransliterate()
96 delta=iter.replace(result.toString()); in handleTransliterate()
99 /* replace by single-code point mapping */ in handleTransliterate()
100 delta=iter.replace(UTF16.valueOf(c)); in handleTransliterate()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCaseFoldTransliterator.java96 /* replace by the mapping string */ in handleTransliterate()
97 delta=iter.replace(result.toString()); in handleTransliterate()
100 /* replace by single-code point mapping */ in handleTransliterate()
101 delta=iter.replace(UTF16.valueOf(c)); in handleTransliterate()

Completed in 20 milliseconds

12345678910>>...61