Home
last modified time | relevance | path

Searched refs:TestString (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dwrapper_function_utils_test.cpp21 constexpr const char *TestString = "test string"; variable
33 orc_rt_CreateWrapperFunctionResultFromString(TestString); in TEST()
35 EXPECT_EQ(R.size(), strlen(TestString) + 1); in TEST()
36 EXPECT_TRUE(strcmp(R.data(), TestString) == 0); in TEST()
42 auto R = WrapperFunctionResult::copyFrom(TestString, strlen(TestString) + 1); in TEST()
43 EXPECT_EQ(R.size(), strlen(TestString) + 1); in TEST()
44 EXPECT_TRUE(strcmp(R.data(), TestString) == 0); in TEST()
50 auto R = WrapperFunctionResult::copyFrom(TestString); in TEST()
51 EXPECT_EQ(R.size(), strlen(TestString) + 1); in TEST()
52 EXPECT_TRUE(strcmp(R.data(), TestString) == 0); in TEST()
[all …]
/freebsd/contrib/llvm-project/libc/include/llvm-libc-types/
H A DEFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.h54 EFI_TEXT_TEST_STRING TestString; member
/freebsd/sys/contrib/edk2/Include/Protocol/
H A DSimpleTextOut.h391 EFI_TEXT_TEST_STRING TestString; member
/freebsd/stand/efi/libefi/
H A Defi_console.c1402 status = conout->TestString(conout, buf); in efi_cons_efiputchar()