| /freebsd-12-stable/usr.bin/ident/tests/ |
| 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 $))
|
| D | test.out | 1 $Foo: bar $ 2 $Foo: bar $
|
| /freebsd-12-stable/contrib/googletest/googlemock/test/ |
| D | gmock-more-actions_test.cc | 179 class Foo { class 181 Foo() : value_(123) {} in Foo() function in testing::gmock_more_actions_test::Foo 341 Foo foo; in TEST() 342 Action<int(std::string, bool, int, int)> a1 = Invoke(&foo, &Foo::SumOfLast2); in TEST() 346 Invoke(&foo, &Foo::SumOfLast2); in TEST() 366 Foo foo; in TEST() 367 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT in TEST() 373 Foo foo; in TEST() 374 Action<short(long)> a = Invoke(&foo, &Foo::Unary); // NOLINT in TEST() 380 Foo foo; in TEST() [all …]
|
| D | gmock-nice-strict_test.cc | 73 class Foo { class 75 virtual ~Foo() {} in ~Foo() 81 class MockFoo : public Foo {
|
| D | gmock-actions_test.cc | 707 MOCK_METHOD0(Foo, MyNonDefaultConstructible()); 734 EXPECT_CALL(mock, Foo()) in TEST() 737 EXPECT_ANY_THROW(mock.Foo()); in TEST() 740 mock.Foo(); in TEST() 929 class Foo { class 931 Foo() : value_(123) {} in Foo() function in __anon0ea4590c0111::Foo 976 Foo foo; in TEST() 978 InvokeWithoutArgs(&foo, &Foo::Nullary); in TEST()
|
| /freebsd-12-stable/lib/csu/tests/ |
| D | cxx_constructors.cc | 54 struct Foo { struct 55 Foo() { in Foo() function 58 ~Foo() { in ~Foo() argument 63 extern Foo foo; 66 Foo foo;
|
| /freebsd-12-stable/lib/libc/tests/stdlib/ |
| D | cxa_thread_atexit_test.cc | 38 struct Foo { struct 39 Foo() { ATF_REQUIRE(fprintf(output, "Created\n") > 0); } in Foo() function 40 ~Foo() { ATF_REQUIRE(fprintf(output, "Destroyed\n") > 0); } in ~Foo() argument 47 thread_local static Foo foo; in ~Bar() argument 70 static thread_local Foo f; 71 static thread_local Foo g;
|
| D | cxa_thread_atexit_nothr_test.cc | 38 struct Foo { struct 39 Foo() { ATF_REQUIRE(fprintf(output, "Created\n") > 0); } in Foo() argument 40 ~Foo() { ATF_REQUIRE(fprintf(output, "Destroyed\n") > 0); } in ~Foo() argument 44 static thread_local Foo f; argument
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/ |
| 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-12-stable/contrib/googletest/googletest/test/ |
| D | googletest-list-tests-unittest_.cc | 43 TEST(Foo, Bar1) { in TEST() argument 46 TEST(Foo, Bar2) { in TEST() argument 49 TEST(Foo, DISABLED_Bar3) { in TEST() argument
|
| D | googletest-printers-test.cc | 561 struct Foo { struct 563 virtual ~Foo() {} in ~Foo() argument 571 EXPECT_TRUE(HasPrefix(Print(&Foo::value), in TEST() 572 Print(sizeof(&Foo::value)) + "-byte object ")); in TEST() 573 int Foo::*p = NULL; // NOLINT in TEST() 583 EXPECT_TRUE(HasPrefix(Print(&Foo::MyMethod), in TEST() 584 Print(sizeof(&Foo::MyMethod)) + "-byte object ")); in TEST() 586 HasPrefix(Print(&Foo::MyVirtualMethod), in TEST() 587 Print(sizeof((&Foo::MyVirtualMethod))) + "-byte object ")); in TEST() 588 int (Foo::*p)(char) = NULL; // NOLINT in TEST() [all …]
|
| D | googletest-break-on-failure-unittest_.cc | 51 TEST(Foo, Bar) { in TEST() argument
|
| /freebsd-12-stable/usr.bin/sed/tests/ |
| D | regress.sh | 67 REGRESSION_TEST(`icase2', `sed s/SED/Foo/I <${SRCDIR}/regress.in') 68 REGRESSION_TEST(`icase3', `sed s/SED/Foo/ <${SRCDIR}/regress.in') 69 REGRESSION_TEST(`icase4', `sed s/SED/Foo/i <${SRCDIR}/regress.in')
|
| D | regress.icase4.out | 4 of Foo(1)
|
| D | regress.icase2.out | 4 of Foo(1)
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| D | TrailingObjects.h | 221 template <typename... Tys> class Foo {}; 313 std::is_same<Foo<TrailingTys...>, Foo<Tys...>>::value, size_t> 325 std::is_same<Foo<TrailingTys...>, Foo<Tys...>>::value, size_t>
|
| /freebsd-12-stable/contrib/googletest/googlemock/include/gmock/ |
| D | gmock-generated-function-mockers.h.pump | 275 // Foo(1); 276 // Foo(2); 277 // Foo(3); 279 // and want to verify that Foo(1) and Foo(3) both invoke 280 // mock.Bar("a"), but Foo(2) doesn't invoke anything, you can write: 293 // Foo(1); 295 // Foo(2); 297 // Foo(3); 304 // Bar("a") is called by which call to Foo(). 314 // Foo(callback.AsStdFunction());
|
| /freebsd-12-stable/contrib/googletest/googlemock/docs/ |
| D | CookBook.md | 8 readability, it is recommended to write `using ::testing::Foo;` once in 9 your file before using the name `Foo` defined by Google Mock. We omit 26 class Foo { 38 class MockFoo : public Foo { 55 class Foo { 58 // Must be virtual as we'll inherit from Foo. 59 virtual ~Foo(); 70 class MockFoo : public Foo { 85 class MockFoo : public Foo { 87 using Foo::Add; [all …]
|
| D | DesignDoc.md | 77 ACTION(Foo) { 84 defines an action `Foo()` that invokes argument #2 (a function pointer) 177 ACTION(Foo) { 201 | `ACTION(Foo)` | `Foo()` | `FooAction` |
|
| D | CheatSheet.md | 9 class Foo { 11 virtual ~Foo(); 18 (note that `~Foo()` **must** be virtual) we can define its mock as 22 class MockFoo : public Foo { 68 MOCK_METHOD1_WITH_CALLTYPE(STDMETHODCALLTYPE, Foo, bool(int n)); 260 1. a native array passed by reference (e.g. in `Foo(const int (&a)[5])`), and 263 …expected container, respectively. For example, to compare two `Foo` containers where `Foo` doesn't… 402 EXPECT_CALL(mock, Foo("Hi", _, _)).WillOnce(Invoke(Distance)); 432 | `ACTION_Pk(Foo, p1, ..., pk) { statements; }` | Defines a parameterized action `Foo(p1, ..., pk)`…
|
| /freebsd-12-stable/contrib/gdb/gdb/ |
| D | PROBLEMS | 53 (gdb) print ('Foo::Bar') x 55 (gdb) print ('Foo::Bar' *) y 57 (gdb) print (Foo::Bar) x 59 (gdb) print (Foo::Bar *) y
|
| /freebsd-12-stable/usr.bin/join/tests/ |
| D | regress.1.in | 2 Foo,1
|
| D | regress.2.in | 2 Foo,Bar
|
| D | regress.out | 2 Foo,1,Bar
|
| /freebsd-12-stable/contrib/netbsd-tests/usr.bin/cut/ |
| D | d_utf8.in | 2 FooÄ:Bar:ÄBaz
|