Home
last modified time | relevance | path

Searched refs:testChar (Results 1 – 5 of 5) sorted by relevance

/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/
Dthread_tss_test.cpp48 const char* testChar = "0"; variable
49 testChar = (char*)malloc(sizeof(testChar) + 1);
55 std::thread([&tssKey, testChar] { in __anon6b450b700102()
57 tss_set(tssKey, const_cast<char*>(testChar)); in __anon6b450b700102()
/third_party/icu/icu4c/source/test/cintltst/
Dcldrtest.c767 UChar32 testChar; in findStringSetMismatch() local
768 U16_NEXT(string, strIdx, langSize, testChar); in findStringSetMismatch()
769 if (!uset_contains(exemplarSet, testChar) in findStringSetMismatch()
770 …&& testChar != 0x0020 && testChar != 0x00A0 && testChar != 0x002e && testChar != 0x002c && testCha… in findStringSetMismatch()
771 …&& testChar != 0x005B && testChar != 0x005D && testChar != 0x2019 && testChar != 0x0f0b && testCha… in findStringSetMismatch()
772 if (!ignoreNumbers || (ignoreNumbers && (testChar < 0x30 || testChar > 0x39))) { in findStringSetMismatch()
775 *badCharPtr = testChar; in findStringSetMismatch()
/third_party/icu/icu4c/source/test/iotest/
Dfiletst.c1550 UChar testChar = 0xBEEF; in TestFileWriteRetval() local
1553 testChar = 0x65; /* 'A' - otherwise read test will fail */ in TestFileWriteRetval()
1569 u_memset(buffer, testChar, expected); in TestFileWriteRetval()
1589 if(gotChar != testChar) { in TestFileWriteRetval()
1590 … log_err("u_fgetc returned unexpected character U+%04X expected U+%04X\n", gotChar, testChar); in TestFileWriteRetval()
/third_party/icu/icu4c/source/test/intltest/
Dustrtest.cpp703 UChar testChar = 0x74; in TestSearching() local
763 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0) in TestSearching()
771 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0) in TestSearching()
779 …(startPos = test1.indexOf(testChar, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos… in TestSearching()
831 (startPos = test1.lastIndexOf(testChar, 5, startPos - 5)) != -1 ? ++occurrences : 0) in TestSearching()
/third_party/typescript/src/services/
Dcompletions.ts4586 const testChar = lowercaseCharacters.charCodeAt(characterIndex); constant
4587 if (strChar === testChar || strChar === toUpperCharCode(testChar)) {