Home
last modified time | relevance | path

Searched refs:Call (Results 1 – 25 of 544) sorted by path

12345678910>>...22

/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/begin/
H A Dtst.begin.d.out3 Call exit
/freebsd/contrib/atf/atf-sh/
H A Dlibatf-sh.subr778 # Call the test program's hook to register all available test cases.
/freebsd/contrib/bearssl/T0/
H A DT0Comp.cs553 wordBuilder.Call(cpu.Pop().ToXT()); in T0Comp()
1448 wordBuilder.Call(tt); in CompileStep()
H A DWordBuilder.cs201 internal void Call(string target) in Call() method in WordBuilder
285 internal void Call(TPointerXT xt) in Call() method in WordBuilder
/freebsd/contrib/bearssl/src/ssl/
H A Dssl_hs_server.t0579 \ Call policy handler to get cipher suite, hash function identifier and
906 \ Call policy handler to obtain the cipher suite and other
/freebsd/contrib/bmake/
H A DChangeLog3007 o Call Job_SetPrefix() from Job_Init() so makefiles have
3092 Call meta_mode_init() to process .MAKE.MODE.
4488 * compat.c, main.c: Call PrintOnError() when we are going to bail.
H A Dbmake.cat11002 Call stat(2) with each word as pathname; use `st_mtime' as the new
/freebsd/contrib/dialog/
H A Daclocal.m41636 dnl termcap/termlib to be linked as well. Call CF_CURSES_CPPFLAGS first.
3721 dnl Call CF_CURSES_CPPFLAGS first, or CF_NCURSES_CPPFLAGS. We don't use
6106 dnl Call this macro before CF_ENABLE_WARNINGS for configure scripts which use
/freebsd/contrib/dialog/samples/copifuncs/
H A Dcopi.ifmcfg410 # Call options (time, address and nodelist flag dependent)
12 # Possible options are "[No]Call", "[No]Hold", "[No]PUA", "[No]EMSI",
/freebsd/contrib/diff/
H A DChangeLog2269 * cmp.c, diff.c, diff3.c, sdiff.c, (main): Call initialize_main first.
3266 * context.c (pr_context_hunk, pr_unidiff_hunk): Call begin_output.
3447 (output_diff3): REV_MAPPING is now an arg. Call changed.
3451 REV_MAPPING is now an arg. Call changed.
3698 (main): Call it.
/freebsd/contrib/expat/
H A DChanges555 #442 CMake: Call "enable_language(CXX)" prior to tinkering
/freebsd/contrib/file/
H A Daclocal.m451 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
/freebsd/contrib/file/magic/Magdir/
H A Dbioinformatics68 # BCF (Binary Call Format), version 1
76 >>&(&-0x04) lelong >0 SAMtools BCF (Binary Call Format)
85 # BCF (Binary Call Format), version 2.1
89 0 string BCF\2\1 Binary Call Format (BCF) version 2.1
98 # BCF (Binary Call Format), version 2.2
102 0 string BCF\2\2 Binary Call Format (BCF) version 2.2
110 # VCF (Variant Call Format)
113 0 search ##fileformat=VCFv Variant Call Format (VCF)
/freebsd/contrib/googletest/docs/
H A Dgmock_cheat_sheet.md229 MOCK_METHOD(R, Call, (A1, ..., An));
H A Dgmock_cook_book.md353 <tr><th colspan=2>Method with Call Type</th></tr>
363 <tr><th colspan=2>Const Method with Call Type</th></tr>
3012 // Call() and has type F.
3018 EXPECT_CALL(check, Call("1"));
3019 EXPECT_CALL(check, Call("2"));
3023 check.Call("1");
3025 check.Call("2");
3847 EXPECT_CALL(mock, Call).WillOnce([] { return 17; });
4305 R Call(T1, ..., Tn);
4309 forwarding to Call:
[all …]
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h488 Result Call(Args... args) && {
1439 .Call(std::get<I>(
1596 .Call(static_cast<InitialActionArgType<Args>>(args)...);
1598 return std::move(remaining_actions).Call(std::forward<Args>(args)...);
H A Dgmock-spec-builders.h1103 return std::move(*once_action).Call(std::forward<Args>(args)...); in operator()
1915 return this->Call(std::forward<Args>(args)...); in AsStdFunction()
1920 R Call(Args... args) { in Call() function
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc700 EXPECT_CALL(mock, Call) in TEST()
797 EXPECT_CALL(mock, Call) in TEST()
1359 EXPECT_CALL(mock, Call) in TEST()
1378 EXPECT_CALL(mock, Call) in TEST()
1396 EXPECT_CALL(mock, Call) in TEST()
1415 EXPECT_CALL(mock, Call) in TEST()
1430 EXPECT_CALL(mock, Call) in TEST()
1458 EXPECT_CALL(mock, Call) in TEST()
1577 EXPECT_CALL(mock, Call) in TEST()
2008 EXPECT_CALL(mock, Call) in TEST()
[all …]
H A Dgmock-function-mocker_test.cc783 EXPECT_CALL(foo, Call()); in TEST()
784 foo.Call(); in TEST()
790 EXPECT_EQ(1, foo.Call()); in TEST()
791 EXPECT_EQ(2, foo.Call()); in TEST()
796 EXPECT_CALL(foo, Call(1)); in TEST()
797 foo.Call(1); in TEST()
804 EXPECT_EQ(1, foo.Call(false, 42)); in TEST()
805 EXPECT_EQ(2, foo.Call(false, 42)); in TEST()
806 EXPECT_EQ(3, foo.Call(true, 120)); in TEST()
823 EXPECT_CALL(foo, Call(1)).WillOnce(Return(-1)); in TEST()
[all …]
H A Dgmock-matchers-comparisons_test.cc963 MOCK_METHOD1(Call, void(MoveOnly));
975 EXPECT_CALL(helper, Call(Eq(ByRef(m)))); in TEST()
976 helper.Call(MoveOnly(0)); in TEST()
977 EXPECT_CALL(helper, Call(Ne(ByRef(m)))); in TEST()
978 helper.Call(MoveOnly(1)); in TEST()
979 EXPECT_CALL(helper, Call(Le(ByRef(m)))); in TEST()
980 helper.Call(MoveOnly(0)); in TEST()
981 EXPECT_CALL(helper, Call(Lt(ByRef(m)))); in TEST()
982 helper.Call(MoveOnly(-1)); in TEST()
984 helper.Call(MoveOnly(0)); in TEST()
[all …]
H A Dgmock-matchers-containers_test.cc75 helper.Call(MakeUniquePtrs({1, 2})); in TEST()
1465 helper.Call(MakeUniquePtrs({1, 2})); in TEST()
1638 helper.Call(MakeUniquePtrs({1, 2})); in TEST()
1640 helper.Call(MakeUniquePtrs({2})); in TEST()
1766 helper.Call(MakeUniquePtrs({1})); in TEST()
1768 helper.Call(MakeUniquePtrs({2})); in TEST()
1807 helper.Call(MakeUniquePtrs({1, 2})); in TEST()
1810 helper.Call(MakeUniquePtrs({3, 4})); in TEST()
1917 helper.Call(MakeUniquePtrs({2, 1})); in TEST()
1970 helper.Call(MakeUniquePtrs({2, 1})); in TEST_F()
[all …]
H A Dgmock-matchers-misc_test.cc171 EXPECT_CALL(helper, Call(IsEmpty())); in TEST()
172 helper.Call({}); in TEST()
H A Dgmock-matchers_test.h99 MOCK_METHOD1(Call, void(std::vector<std::unique_ptr<int>>));
H A Dgmock-spec-builders_test.cc842 EXPECT_CALL(mock, Call) // in TEST()
/freebsd/contrib/libevent/
H A DChangeLog242 o Call underlying bev ctrl GET_FD on filtered bufferevents (ebfac517)
466 o Call underlying bev ctrl SET_FD on filtered bufferevents (c2aa7dc Mark Ellzey)

12345678910>>...22