Home
last modified time | relevance | path

Searched refs:srcStr (Results 1 – 17 of 17) sorted by relevance

/third_party/icu/icu4c/source/test/intltest/
Dtransrt.cpp557 UnicodeString srcStr(c); in checkIrrelevants() local
558 UnicodeString targ = srcStr; in checkIrrelevants()
560 if (srcStr == targ) return TRUE; in checkIrrelevants()
567 UnicodeString srcStr, targ, reverse; in test2() local
635 UnicodeString srcStr((UChar32)c); in test2() local
636 UnicodeString targ = srcStr; in test2()
638 UnicodeString targ2 = srcStr; in test2()
641 logToRulesFails("Source-Target, toRules", srcStr, targ, targ2); in test2()
650 UnicodeString srcStr((UChar32)c); in test2() local
651 UnicodeString targ = srcStr; in test2()
[all …]
/third_party/ffmpeg/libswscale/tests/
Dswscale.c315 char srcStr[21]; in fileTest() local
326 srcStr, &srcW, &srcH, dstStr, &dstW, &dstH, in fileTest()
329 srcStr[0] = dstStr[0] = 0; in fileTest()
330 ret = sscanf(buf, "%20s -> %20s\n", srcStr, dstStr); in fileTest()
333 srcFormat = av_get_pix_fmt(srcStr); in fileTest()
/third_party/quickjs/
Dmessage_server.cpp44 bool DBG_CopyComponentNameFromAce(const char *srcStr, char *destStr, int maxLen) in DBG_CopyComponentNameFromAce() argument
46 if (strcpy_s(destStr, maxLen, srcStr) != 0) { in DBG_CopyComponentNameFromAce()
Dmessage_server.h34 bool DBG_CopyComponentNameFromAce(const char *srcStr, char *destStr, int maxLen);
/third_party/vk-gl-cts/framework/delibs/decpp/
DdeCommandLine.cpp297 std::string srcStr(src); in findNamedValueMatch() local
301 if (srcStr == getNamedValueName(curValue)) in findNamedValueMatch()
305 throw std::invalid_argument("unrecognized value '" + srcStr + "'"); in findNamedValueMatch()
/third_party/vk-gl-cts/modules/egl/
DteglImageTests.cpp205 const char* srcStr,
256 const char* srcStr, in checkCreate() argument
266 call << createImageName << "(" << dpyStr << ", " << ctxStr << ", " << srcStr << ", 0, DE_NULL)"; in checkCreate()
/third_party/skia/third_party/externals/icu/source/i18n/
Duspoof.cpp743 …UnicodeString srcStr = UnicodeString::fromUTF8(StringPiece(id, length>=0 ? length : static_cast<in… in uspoof_getSkeletonUTF8() local
745 uspoof_getSkeletonUnicodeString(sc, type, srcStr, destStr, status); in uspoof_getSkeletonUTF8()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Duspoof.cpp736 …UnicodeString srcStr = UnicodeString::fromUTF8(StringPiece(id, length>=0 ? length : static_cast<in… in uspoof_getSkeletonUTF8() local
738 uspoof_getSkeletonUnicodeString(sc, type, srcStr, destStr, status); in uspoof_getSkeletonUTF8()
/third_party/icu/icu4c/source/i18n/
Duspoof.cpp743 …UnicodeString srcStr = UnicodeString::fromUTF8(StringPiece(id, length>=0 ? length : static_cast<in… in uspoof_getSkeletonUTF8() local
745 uspoof_getSkeletonUnicodeString(sc, type, srcStr, destStr, status); in uspoof_getSkeletonUTF8()
/third_party/node/deps/icu-small/source/i18n/
Duspoof.cpp746 …UnicodeString srcStr = UnicodeString::fromUTF8(StringPiece(id, length>=0 ? length : static_cast<in… in uspoof_getSkeletonUTF8() local
748 uspoof_getSkeletonUnicodeString(sc, type, srcStr, destStr, status); in uspoof_getSkeletonUTF8()
/third_party/vk-gl-cts/modules/glshared/
DglsLifetimeTests.cpp111 const char* const srcStr = src.c_str(); in CheckedShader() local
112 setSources(1, &srcStr, DE_NULL); in CheckedShader()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fSeparateShaderTests.cpp1121 const char* const srcStr = src.c_str(); in createSingleShaderProgram() local
1123 const GLuint programName = glCreateShaderProgramv(glType, 1, &srcStr); in createSingleShaderProgram()
/third_party/icu/icu4c/source/common/
Dutext.cpp2362 const UChar *srcStr = (const UChar *)src->context; in ucstrTextClone() local
2369 copyStr[i] = srcStr[i]; in ucstrTextClone()
/third_party/skia/third_party/externals/icu/source/common/
Dutext.cpp2362 const UChar *srcStr = (const UChar *)src->context; in ucstrTextClone() local
2369 copyStr[i] = srcStr[i]; in ucstrTextClone()
/third_party/node/deps/icu-small/source/common/
Dutext.cpp2362 const UChar *srcStr = (const UChar *)src->context; in ucstrTextClone() local
2369 copyStr[i] = srcStr[i]; in ucstrTextClone()
/third_party/flutter/skia/third_party/externals/icu/source/common/
Dutext.cpp2360 const UChar *srcStr = (const UChar *)src->context; in ucstrTextClone() local
2367 copyStr[i] = srcStr[i]; in ucstrTextClone()
/third_party/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h4697 static char* VmaCreateStringCopy(const VkAllocationCallbacks* allocs, const char* srcStr) in VmaCreateStringCopy() argument
4699 if(srcStr != VMA_NULL) in VmaCreateStringCopy()
4701 const size_t len = strlen(srcStr); in VmaCreateStringCopy()
4703 memcpy(result, srcStr, len + 1); in VmaCreateStringCopy()