Home
last modified time | relevance | path

Searched refs:Foo (Results 1 – 25 of 78) sorted by relevance

1234

/freebsd-12-stable/usr.bin/ident/tests/
Dtest.in2 $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 $))
Dtest.out1 $Foo: bar $
2 $Foo: bar $
/freebsd-12-stable/contrib/googletest/googlemock/test/
Dgmock-more-actions_test.cc179 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 …]
Dgmock-nice-strict_test.cc73 class Foo { class
75 virtual ~Foo() {} in ~Foo()
81 class MockFoo : public Foo {
Dgmock-actions_test.cc707 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/
Dcxx_constructors.cc54 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/
Dcxa_thread_atexit_test.cc38 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;
Dcxa_thread_atexit_nothr_test.cc38 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/
DSemaFixItUtils.h61 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/
Dgoogletest-list-tests-unittest_.cc43 TEST(Foo, Bar1) { in TEST() argument
46 TEST(Foo, Bar2) { in TEST() argument
49 TEST(Foo, DISABLED_Bar3) { in TEST() argument
Dgoogletest-printers-test.cc561 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 …]
Dgoogletest-break-on-failure-unittest_.cc51 TEST(Foo, Bar) { in TEST() argument
/freebsd-12-stable/usr.bin/sed/tests/
Dregress.sh67 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')
Dregress.icase4.out4 of Foo(1)
Dregress.icase2.out4 of Foo(1)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
DTrailingObjects.h221 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/
Dgmock-generated-function-mockers.h.pump275 // 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/
DCookBook.md8 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 …]
DDesignDoc.md77 ACTION(Foo) {
84 defines an action `Foo()` that invokes argument #2 (a function pointer)
177 ACTION(Foo) {
201 | `ACTION(Foo)` | `Foo()` | `FooAction` |
DCheatSheet.md9 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/
DPROBLEMS53 (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/
Dregress.1.in2 Foo,1
Dregress.2.in2 Foo,Bar
Dregress.out2 Foo,1,Bar
/freebsd-12-stable/contrib/netbsd-tests/usr.bin/cut/
Dd_utf8.in2 FooÄ:Bar:ÄBaz

1234