Home
last modified time | relevance | path

Searched refs:replaceAll (Results 1 – 25 of 89) sorted by relevance

1234

/third_party/node/test/parallel/
Dtest-node-output-sourcemaps.mjs8 return str.replaceAll(process.version, '*');
14 .replaceAll(snapshot.replaceWindowsPaths(process.cwd()), '')
15 .replaceAll('//', '*')
16 .replaceAll('/Users/bencoe/oss/coffee-script-test', '')
17 .replaceAll(/\/(\w)/g, '*$1')
18 .replaceAll('*test*', '*')
19 .replaceAll('*fixtures*source-map*', '*');
23 return result.replaceAll(regex, '');
Dtest-node-output-errors.mjs14 return str.replaceAll(process.version, '*');
23replaceAll(snapshot.replaceWindowsPaths(process.cwd()), '').replaceAll('//', '*').replaceAll(/\/(\…
27 …return normalize(str).replaceAll(/\d+:\d+/g, '*:*').replaceAll(/:\d+/g, ':*').replaceAll('*fixture…
Dtest-node-output-vm.mjs7 return str.replaceAll(process.version, '*');
12 …tr.replaceAll(snapshot.replaceWindowsPaths(process.cwd()), '').replaceAll('//', '*').replaceAll(/\…
Dtest-runner-output.mjs12 .replaceAll(/duration_ms: 0(\r?\n)/g, 'duration_ms: ZERO$1')
13 .replaceAll(/duration_ms: [0-9.]+/g, 'duration_ms: *')
14 .replaceAll(/duration_ms [0-9.]+/g, 'duration_ms *');
22 .replaceAll(/\(0(\r?\n)ms\)/g, '(ZEROms)')
23 .replaceAll(/[0-9.]+ms/g, '*ms')
24 .replaceAll(/duration_ms [0-9.]+/g, 'duration_ms *')
Dtest-node-output-console.mjs16 …return str.replaceAll(snapshot.replaceWindowsPaths(process.cwd()), '').replaceAll('/', '*').replac…
Dtest-runner-coverage.js37 return report.replaceAll('/', '\\');
61 return report.replaceAll('/', '\\');
169 report = report.replaceAll('/', '\\');
Dtest-crypto-x509.js121 assert.strictEqual(x509.toString().replaceAll('\r\n', '\n'),
122 cert.toString().replaceAll('\r\n', '\n'));
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl3cCullDistanceTests.cpp262 void CullDistance::Utilities::replaceAll(std::string& str, const std::string& from, const std::stri… in replaceAll() function in glcts::CullDistance::Utilities
1334 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_HEADER_DECLARATION"), in buildPO()
1346 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_ASSIGN_RETURN_VALUE"), in buildPO()
1371 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_SUM_SETTER"), in buildPO()
1373 CullDistance::Utilities::replaceAll( in buildPO()
1382 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_ASSIGN_RETURN_VALUE"), in buildPO()
1393 CullDistance::Utilities::replaceAll( in buildPO()
1396 CullDistance::Utilities::replaceAll( in buildPO()
1404 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_LAYOUT_IN"), in buildPO()
1406 CullDistance::Utilities::replaceAll(shader_source, std::string("TEMPLATE_LAYOUT_OUT"), in buildPO()
[all …]
/third_party/typescript/lib/
Dlib.es2021.string.d.ts27 replaceAll(searchValue: string | RegExp, replaceValue: string): string; method
34replaceAll(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string):… method
Dlib.esnext.string.d.ts27 replaceAll(searchValue: string | RegExp, replaceValue: string): string; method
34replaceAll(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string):… method
/third_party/typescript/src/lib/
Des2021.string.d.ts7 replaceAll(searchValue: string | RegExp, replaceValue: string): string; method
14replaceAll(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string):… method
/third_party/node/test/es-module/
Dtest-cjs-esm-warn.js28 stderr.replaceAll('\r', '').includes(
33 stderr.replaceAll('\r', '').includes(
/third_party/node/lib/internal/util/
Ddebuglog.js27 .replaceAll('*', '.*')
28 .replaceAll(',', '$|^');
/third_party/typescript/tests/baselines/reference/
DdoYouNeedToChangeYourTargetLibraryES2016Plus.js45 const testStringReplaceAll = "".replaceAll();
89 var testStringReplaceAll = "".replaceAll();
DdoYouNeedToChangeYourTargetLibraryES2016Plus.types261 const testStringReplaceAll = "".replaceAll();
263 >"".replaceAll() : any
264 >"".replaceAll : any
266 >replaceAll : any
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/
DStableAPI.java322 String initStr = initVal.getNodeValue().trim().replaceAll("\"", ""); in setVer()
516 … f.comparablePrototype = f.comparablePrototype.replaceAll(aliasList[i + 0], aliasList[i + 1]); in fromXml()
584 prototype = prototype.replaceAll(s, ""); in purifyPrototype()
589 prototype = prototype.replaceAll(replList[i + 0], replList[i + 1]); in purifyPrototype()
675 prototype = prototype.replaceAll(simplifyList[i + 0], simplifyList[i + 1]); in simplifyPrototype()
1077 …return s.replaceAll("&", "&amp;").replaceAll("<", "&lt;").replaceAll(">", "&gt;").replaceAll("\"",… in HTMLSafe()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/
DUnitsTest.java540 .replaceAll(" ", "") // Remove all the spaces.
541 .replaceAll(",", "") // Remove all the commas.
542 .replaceAll("\t", "")
545 this.category = fields[0].replaceAll(" ", "");
623 .replaceAll(" ", "") // Remove all the spaces.
624 .replaceAll(",", "") // Remove all the commas.
625 .replaceAll("\t", "")
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DInternalLocaleBuilder.java78 String var = variant.replaceAll(LanguageTag.SEP, BaseLocale.SEP); in setVariant()
124 String tp = type.replaceAll(BaseLocale.SEP, LanguageTag.SEP); in setUnicodeLocaleKeyword()
169 String val = value.replaceAll(BaseLocale.SEP, LanguageTag.SEP); in setExtension()
205 subtags = subtags.replaceAll(BaseLocale.SEP, LanguageTag.SEP); in setExtensions()
488 … sb.append(privuse.substring(privVarStart).replaceAll(LanguageTag.SEP, BaseLocale.SEP)); in getBaseLocale()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/
DInternalLocaleBuilder.java82 String var = variant.replaceAll(LanguageTag.SEP, BaseLocale.SEP); in setVariant()
128 String tp = type.replaceAll(BaseLocale.SEP, LanguageTag.SEP); in setUnicodeLocaleKeyword()
173 String val = value.replaceAll(BaseLocale.SEP, LanguageTag.SEP); in setExtension()
209 subtags = subtags.replaceAll(BaseLocale.SEP, LanguageTag.SEP); in setExtensions()
492 … sb.append(privuse.substring(privVarStart).replaceAll(LanguageTag.SEP, BaseLocale.SEP)); in getBaseLocale()
/third_party/node/deps/v8/src/builtins/
Dstring-replaceall.tq21 RequireObjectCoercible(flags, 'String.prototype.replaceAll');
29 'String.prototype.replaceAll');
38 RequireObjectCoercible(receiver, 'String.prototype.replaceAll');
/third_party/icu/icu4c/source/test/intltest/
Dregextst.cpp1345 dest = matcher->replaceAll("yz", status); in API_Replace()
1358 dest = matcher->replaceAll("yz", status); in API_Replace()
1371 dest = matcher->replaceAll("yz", status); in API_Replace()
1383 dest = matcher->replaceAll("", status); in API_Replace()
1396 dest = matcher->replaceAll("xyz", status); in API_Replace()
1437 UnicodeString result = matcher->replaceAll(substitute, status); in API_Replace()
1445 UnicodeString result = matcher->replaceAll(substitute, status); in API_Replace()
2463 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2470 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2491 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
[all …]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
DAltFormatsSchema.java114 FormatTemplate template = FormatTemplate.parse(altId.replaceAll("[0-9]|\\[[-0-9]+\\]", "X")); in parseAltFormat()
120 Ascii.toLowerCase(whitespace().removeFrom(altId.replaceAll("[X* ]*$", "")))); in parseAltFormat()
/third_party/typescript/tests/cases/compiler/
DdoYouNeedToChangeYourTargetLibraryES2016Plus.ts46 const testStringReplaceAll = "".replaceAll();
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/
DAsYouTypeFormatter.java249 String template = aPhoneNumber.replaceAll(numberPattern, numberFormat); in getFormattingTemplate()
251 template = template.replaceAll("9", DIGIT_PLACEHOLDER); in getFormattingTemplate()
430 String formattedNumber = m.replaceAll(numberFormat.getFormat()); in attemptToFormatAccruedDigits()
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DRegexUtilitiesTest.java88 replaceAll("\\\\U00([0-9a-fA-F]{6})", "\\\\x{$1}"); in TestCharacters()
201 … result = result.replaceAll("[0-9]+%", ""); // just so we can use the language subtag stuff

1234