/freebsd/crypto/openssl/test/ |
H A D | ssl_test_ctx_test.cnf | 37 UnknownOption = Foo 46 ExpectedResult = Foo 49 ExpectedServerAlert = Foo 52 Protocol = Foo 58 VerifyCallback = Foo 64 ServerName = Foo 70 ServerNameCallback = Foo 73 SessionTicketExpected = Foo 76 CompressionExpected = Foo 79 SessionIdExpected = Foo [all …]
|
/freebsd/usr.bin/ident/tests/ |
H A D | test.in | 2 $Foo: bar $ (OK traditional) 3 $$Foo: bar $ 6 $ Foo : bar $ (WRONG -- NON ALPHANUM BEFORE :) 7 $ Foo : bar $ (WRONG -- NON ALPHANUM BEFORE :) 8 $Foo: bar $ (WRONG -- NO SPACE AFTER :) 9 $Foo:bar $ (WRONG -- NO SPACE AFTER :) 10 $Foo: bar$ (WRONG -- NO SPACE BEFORE $))
|
H A D | test.out | 1 $Foo: bar $ 2 $Foo: bar $
|
/freebsd/lib/csu/tests/ |
H A D | cxx_constructors.cc | 51 struct Foo { struct 52 Foo() { in Foo() argument 55 ~Foo() { in ~Foo() argument 60 extern Foo foo; 63 Foo foo;
|
/freebsd/lib/libc/tests/stdlib/ |
H A D | cxa_thread_atexit_test.cc | 35 struct Foo { struct 36 Foo() { ATF_REQUIRE(fprintf(output, "Created\n") > 0); } in Foo() function 37 ~Foo() { ATF_REQUIRE(fprintf(output, "Destroyed\n") > 0); } in ~Foo() argument 44 thread_local static Foo foo; in ~Bar() argument 67 static thread_local Foo f; 68 static thread_local Foo g;
|
H A D | cxa_thread_atexit_nothr_test.cc | 35 struct Foo { struct 36 Foo() { ATF_REQUIRE(fprintf(output, "Created\n") > 0); } in Foo() function 37 ~Foo() { ATF_REQUIRE(fprintf(output, "Destroyed\n") > 0); } in ~Foo() argument 41 static thread_local Foo f; argument
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaFixItUtils.h | 61 ConversionFixItGenerator(TypeComparisonFuncTy Foo): NumConversionsFixed(0), in ConversionFixItGenerator() 63 CompareTypes(Foo) {} in ConversionFixItGenerator() 70 void setConversionChecker(TypeComparisonFuncTy Foo) { in setConversionChecker() 71 CompareTypes = Foo; in setConversionChecker()
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-more-actions_test.cc | 149 class Foo { class 151 Foo() : value_(123) {} in Foo() function in testing::gmock_more_actions_test::Foo 312 Foo foo; in TEST() 313 Action<int(std::string, bool, int, int)> a1 = Invoke(&foo, &Foo::SumOfLast2); in TEST() 316 Action<int(char, double, int, int)> a2 = Invoke(&foo, &Foo::SumOfLast2); in TEST() 336 Foo foo; in TEST() 337 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT in TEST() 343 Foo foo; in TEST() 344 Action<short(long)> a = Invoke(&foo, &Foo::Unary); // NOLINT in TEST() 350 Foo foo; in TEST() [all …]
|
H A D | gmock-nice-strict_test.cc | 79 class Foo { class 81 virtual ~Foo() = default; 87 class MockFoo : public Foo {
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-list-tests-unittest_.cc | 45 TEST(Foo, Bar1) {} in TEST() argument 47 TEST(Foo, Bar2) {} in TEST() argument 49 TEST(Foo, DISABLED_Bar3) {} in TEST() argument
|
H A D | gtest_xml_outfile2_test_.cc | 69 enum Foo { in TEST_F() enum 72 Foo enum_prop = NINE; in TEST_F()
|
H A D | googletest-printers-test.cc | 777 struct Foo { struct 779 virtual ~Foo() = default; 787 EXPECT_TRUE(HasPrefix(Print(&Foo::value), in TEST() 788 Print(sizeof(&Foo::value)) + "-byte object ")); in TEST() 789 int Foo::*p = NULL; // NOLINT in TEST() 798 EXPECT_TRUE(HasPrefix(Print(&Foo::MyMethod), in TEST() 799 Print(sizeof(&Foo::MyMethod)) + "-byte object ")); in TEST() 801 HasPrefix(Print(&Foo::MyVirtualMethod), in TEST() 802 Print(sizeof((&Foo::MyVirtualMethod))) + "-byte object ")); in TEST() 803 int (Foo::*p)(char) = NULL; // NOLINT in TEST() [all …]
|
H A D | googletest-break-on-failure-unittest_.cc | 50 TEST(Foo, Bar) { EXPECT_EQ(2, 3); } in TEST() argument
|
/freebsd/usr.bin/sed/tests/ |
H A D | regress.sh | 66 REGRESSION_TEST(`icase2', `sed s/SED/Foo/I <${SRCDIR}/regress.in') 67 REGRESSION_TEST(`icase3', `sed s/SED/Foo/ <${SRCDIR}/regress.in') 68 REGRESSION_TEST(`icase4', `sed s/SED/Foo/i <${SRCDIR}/regress.in')
|
H A D | regress.icase2.out | 4 of Foo(1)
|
H A D | regress.icase4.out | 4 of Foo(1)
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | TrailingObjects.h | 93 // ExtractSecondType<Foo..., int>::type 221 template <typename... Tys> class Foo {}; 313 std::is_same_v<Foo<TrailingTys...>, Foo<Tys...>>, size_t> 325 std::is_same_v<Foo<TrailingTys...>, Foo<Tys...>>, size_t>
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_cook_book.md | 9 recommended to write `using ::testing::Foo;` once in your file before using the 10 name `Foo` defined by gMock. We omit such `using` statements in this section for 93 class Foo { 105 class MockFoo : public Foo { 122 class Foo { 125 // Must be virtual as we'll inherit from Foo. 126 virtual ~Foo(); 137 class MockFoo : public Foo { 153 class MockFoo : public Foo { 155 using Foo::Add; [all …]
|
H A D | gmock_cheat_sheet.md | 10 class Foo { 12 virtual ~Foo(); 20 (note that `~Foo()` **must** be virtual) we can define its mock as 25 class MockFoo : public Foo { 87 MOCK_METHOD(bool, Foo, (int n), (Calltype(STDMETHODCALLTYPE)));
|
H A D | faq.md | 110 patterns to create different implementations' instances, e.g. `new Foo` vs 154 particular, it prevents you from writing `Foo<sizeof(htonl(x))>()`, where `Foo` 168 class Foo { 177 const int Foo::kBar; // No initializer here. 191 class Foo { 376 ASSERT_EQ(1, Foo()) << "blah blah" << foo; 480 // Verifies that Foo(0), Foo(1), ..., and Foo(4) all die. 482 EXPECT_DEATH_M(Foo(i), "Foo has \\d+ errors", 631 ## Is it OK if I have two separate `TEST(Foo, Bar)` test methods defined in different namespaces?
|
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/ |
H A D | string_pool_test.cpp | 37 auto Foo = SP.intern("foo"); in TEST() local 38 EXPECT_EQ(*Foo, "foo") << "Equality on dereferenced string failed"; in TEST()
|
/freebsd/usr.bin/join/tests/ |
H A D | regress.1.in | 2 Foo,1
|
H A D | regress.2.in | 2 Foo,Bar
|
H A D | regress.out | 2 Foo,1,Bar
|
/freebsd/contrib/netbsd-tests/usr.bin/cut/ |
H A D | d_utf8.in | 2 FooÄ:Bar:ÄBaz
|