/third_party/node/deps/npm/node_modules/diff/lib/diff/ |
H A D | line.js | 72 function diffLines(oldStr, newStr, callback) { 73 return lineDiff.diff(oldStr, newStr, callback); 76 function diffTrimmedLines(oldStr, newStr, callback) { 92 return lineDiff.diff(oldStr, newStr, options);
|
H A D | css.js | 38 function diffCss(oldStr, newStr, callback) { 39 return cssDiff.diff(oldStr, newStr, callback);
|
H A D | character.js | 34 function diffChars(oldStr, newStr, options) { 35 return characterDiff.diff(oldStr, newStr, options);
|
H A D | sentence.js | 38 function diffSentences(oldStr, newStr, callback) { 39 return sentenceDiff.diff(oldStr, newStr, callback);
|
/third_party/node/deps/npm/node_modules/diff/lib/patch/ |
H A D | create.js | 32 function structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader, options) { 53 (oldStr, newStr, options); 192 var newEOFNewline = /\n$/.test(newStr); 269 function createTwoFilesPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader, options) { 270 return formatPatch(structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader, options)); 273 function createPatch(fileName, oldStr, newStr, oldHeader, newHeader, options) { 274 return createTwoFilesPatch(fileName, fileName, oldStr, newStr, oldHeader, newHeader, options);
|
/third_party/vk-gl-cts/framework/delibs/depool/ |
H A D | deMemPool.c | 553 char* newStr = (char*)deMemPool_alloc(pool, len+1); in deMemPool_strDup() local 554 if (newStr) in deMemPool_strDup() 555 memcpy(newStr, str, len+1); in deMemPool_strDup() 556 return newStr; in deMemPool_strDup() 569 char* newStr = (char*)deMemPool_alloc(pool, len + 1); in deMemPool_strnDup() local 573 if (newStr) in deMemPool_strnDup() 575 memcpy(newStr, str, len); in deMemPool_strnDup() 576 newStr[len] = 0; in deMemPool_strnDup() 578 return newStr; in deMemPool_strnDup()
|
/third_party/selinux/libsepol/cil/test/unit/ |
H A D | CuTest.c | 39 char* newStr = (char*) malloc( sizeof(char) * (size) ); in CuStrAlloc() local 40 return newStr; in CuStrAlloc() 46 char* newStr = CuStrAlloc(len + 1); in CuStrCopy() local 47 strcpy(newStr, old); in CuStrCopy() 48 return newStr; in CuStrCopy()
|
/third_party/node/deps/npm/node_modules/diff/lib/ |
H A D | index.es6.js | 308 function diffChars(oldStr, newStr, options) { 309 return characterDiff.diff(oldStr, newStr, options); 374 function diffWords(oldStr, newStr, options) { 378 return wordDiff.diff(oldStr, newStr, options); 380 function diffWordsWithSpace(oldStr, newStr, options) { 381 return wordDiff.diff(oldStr, newStr, options); 417 function diffLines(oldStr, newStr, callback) { 418 return lineDiff.diff(oldStr, newStr, callback); 420 function diffTrimmedLines(oldStr, newStr, callback) { 424 return lineDiff.diff(oldStr, newStr, option [all...] |
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/ |
H A D | header.cpp | 388 std::string newStr; variable 391 newStr += '\\'; 392 newStr += c; 394 newStr += c; 397 return newStr;
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/ |
H A D | header.cpp | 388 std::string newStr; variable 391 newStr += '\\'; 392 newStr += c; 394 newStr += c; 397 return newStr;
|
/third_party/spirv-headers/tools/buildHeaders/ |
H A D | header.cpp | 390 std::string newStr; variable 393 newStr += '\\'; 394 newStr += c; 396 newStr += c; 399 return newStr;
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | UTF16.java | 2003 * in source with newStr. If the string oldStr does not occur in the UTF16 format Unicode string 2006 * except that every occurrence of oldStr is replaced by an occurrence of newStr. 2025 * @param newStr The new string to replace oldStr 2026 * @return new String derived from source by replacing every occurrence of oldStr with newStr. 2030 public static String replace(String source, String oldStr, String newStr) { in replace() argument 2036 int newStrSize = newStr.length(); in replace() 2042 result.replace(resultIndex, endResultIndex, newStr); in replace()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | UTF16.java | 1933 * in source with newStr. If the string oldStr does not occur in the UTF16 format Unicode string 1936 * except that every occurrence of oldStr is replaced by an occurrence of newStr. 1955 * @param newStr The new string to replace oldStr 1956 * @return new String derived from source by replacing every occurrence of oldStr with newStr. 1959 public static String replace(String source, String oldStr, String newStr) { in replace() argument 1965 int newStrSize = newStr.length(); in replace() 1971 result.replace(resultIndex, endResultIndex, newStr); in replace()
|
/third_party/lzma/CPP/7zip/UI/FileManager/ |
H A D | ProgressDialog2.cpp | 646 static void GetChangedString(const UString &newStr, UString &prevStr, bool &hasChanged)
in GetChangedString() argument 648 hasChanged = !(prevStr == newStr);
in GetChangedString() 650 prevStr = newStr;
in GetChangedString()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | numbertest_decimalquantity.cpp | 75 UnicodeString newStr = fq.toString(); 80 UnicodeString(u"After conversion to exact BCD (double): ") + baseStr + u" vs " + newStr,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | FrameCapture.cpp | 6686 std::string newStr = str; in CaptureStringLimit() local 6687 newStr.resize(limit - 1); in CaptureStringLimit() 6688 CaptureString(newStr.c_str(), paramCapture); in CaptureStringLimit()
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |