Home
last modified time | relevance | path

Searched refs:replace (Results 226 - 250 of 1525) sorted by relevance

12345678910>>...61

/third_party/icu/icu4c/source/i18n/
H A Dfuncrepl.cpp80 int32_t FunctionReplacer::replace(Replaceable& text, in replace() function in FunctionReplacer
87 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor); in replace()
/third_party/node/deps/v8/third_party/test262-harness/src/
H A DparseTestRecord.py98 test = test.replace(frontmatter, '')
100 test = test.replace(header, '')
/third_party/node/deps/v8/tools/testrunner/outproc/
H A Dmessage.py51 pattern = pattern.replace('\\*', '.*')
52 pattern = pattern.replace('\\{NUMBER\\}', '\d+(?:\.\d*)?')
/third_party/node/test/parallel/
H A Dtest-https-foafssl.js43 const modulus = fixtures.readKey('rsa_cert_foafssl_b.modulus', 'ascii').replace(/\n/g, '');
44 const exponent = fixtures.readKey('rsa_cert_foafssl_b.exponent', 'ascii').replace(/\n/g, '');
/third_party/node/test/fixtures/wpt/encoding/legacy-mb-korean/euc-kr/
H A Deuckr-decoder.js16 stream = stream.replace(/%/g, " ");
17 stream = stream.replace(/[\s]+/g, " ").trim();
/third_party/node/test/fixtures/wpt/encoding/legacy-mb-tchinese/big5/
H A Dbig5-decoder.js16 stream = stream.replace(/%/g, " ");
17 stream = stream.replace(/[\s]+/g, " ").trim();
/third_party/node/test/fixtures/wpt/encoding/legacy-mb-japanese/euc-jp/
H A Deucjp-decoder.js16 stream = stream.replace(/%/g, " ");
17 stream = stream.replace(/[\s]+/g, " ").trim();
/third_party/node/deps/icu-small/source/i18n/
H A Dfuncrepl.cpp80 int32_t FunctionReplacer::replace(Replaceable& text, in replace() function in FunctionReplacer
87 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor); in replace()
/third_party/mesa3d/src/panfrost/bifrost/
H A Dbi_opt_constant_fold.c94 uint32_t replace = bi_fold_constant(ins, &unsupported); in bi_opt_constant_fold() local
99 bi_mov_i32_to(&b, ins->dest[0], bi_imm_u32(replace)); in bi_opt_constant_fold()
/third_party/node/deps/undici/src/node_modules/@fastify/busboy/lib/utils/
H A DparseParams.js165 tmp = decodeText(tmp.replace(RE_ENCODED, encodedReplacer),
182 tmp = decodeText(tmp.replace(RE_ENCODED, encodedReplacer),
/third_party/python/Tools/c-analyzer/c_parser/parser/
H A D_common.py22 return pattern.replace(old, f'( # <{group}>', 1)
93 abstract = declarator.replace(name, '')
/third_party/python/Tools/scripts/
H A Dupdate_file.py56 os.replace(tmpfile, filename)
65 os.replace(tmpfile, filename)
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_except.py56 comma.replace(Name("as", prefix=" "))
63 N.replace(new_N)
/third_party/python/Lib/distutils/command/
H A Dinstall_egg_info.py68 version = version.replace(' ','.')
77 return name.replace('-','_')
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dgen_vk_mandatory_format_support_table.py78 return str.replace("VK_FORMAT_FEATURE_", "").replace("_BIT", "")
/third_party/skia/third_party/externals/angle2/src/tests/gles_conformance_tests/
H A Dgenerate_gles_conformance_tests.py28 cleanName = cleanName.replace(replaceKey, replacements[replaceKey])
59 tests.append(os.path.relpath(os.path.realpath(sourceFile), rootDir).replace("\\", "/"))
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dfuncrepl.cpp80 int32_t FunctionReplacer::replace(Replaceable& text, in replace() function in FunctionReplacer
87 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor); in replace()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dcheck-symbols.py43 prefix = (symprefix + os.path.basename (so)).replace ('libharfbuzz', 'hb').replace ('-', '_').split ('.')[0]
H A Dhb-map.cc121 * @replace: Whether to replace an existing data with the same key
134 hb_bool_t replace) in hb_map_set_user_data()
136 return hb_object_set_user_data (map, key, data, destroy, replace); in hb_map_set_user_data()
130 hb_map_set_user_data(hb_map_t *map, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) hb_map_set_user_data() argument
/third_party/skia/tools/
H A DBUILD_simulator.py47 pattern5 = pattern4.replace(STAR_PLACEHOLDER, '[^/]*')
48 pattern6 = pattern5.replace(DOUBLE_STAR_PLACEHOLDER, '.*/')
/third_party/typescript/tests/ts_extra_tests/tool/
H A Dtest_helper.py83 file_or_dir_path = file_or_dir_path.replace('\\', '/')
101 line = line.replace('/', '\\')
/third_party/protobuf/python/docs/
H A Dgenerate_docs.py140 package_name = package_path.as_posix().replace("/", ".")
172 toctree = [module.replace(".", "/") for module in modules]
/third_party/skia/third_party/externals/abseil-cpp/
H A Dcreate_lts.py44 content = content.replace(key, value)
80 content = content.replace(content[begin:end + len(strip_end_tag)], '')
/third_party/json/tests/src/
H A Dunit-unicode4.cpp78 // dumping with ignore/replace must not throw in any case in check_utf8dump()
83 s_replaced = j.dump(-1, ' ', false, json::error_handler_t::replace); in check_utf8dump()
84 s_replaced2 = j2.dump(-1, ' ', false, json::error_handler_t::replace); in check_utf8dump()
85 s_replaced_ascii = j.dump(-1, ' ', true, json::error_handler_t::replace); in check_utf8dump()
86 s_replaced2_ascii = j2.dump(-1, ' ', true, json::error_handler_t::replace); in check_utf8dump()
101 // ignore and replace must create different dumps in check_utf8dump()
104 // check that replace string contains a replacement character in check_utf8dump()
H A Dunit-unicode5.cpp78 // dumping with ignore/replace must not throw in any case in check_utf8dump()
83 s_replaced = j.dump(-1, ' ', false, json::error_handler_t::replace); in check_utf8dump()
84 s_replaced2 = j2.dump(-1, ' ', false, json::error_handler_t::replace); in check_utf8dump()
85 s_replaced_ascii = j.dump(-1, ' ', true, json::error_handler_t::replace); in check_utf8dump()
86 s_replaced2_ascii = j2.dump(-1, ' ', true, json::error_handler_t::replace); in check_utf8dump()
101 // ignore and replace must create different dumps in check_utf8dump()
104 // check that replace string contains a replacement character in check_utf8dump()

Completed in 14 milliseconds

12345678910>>...61