Home
last modified time | relevance | path

Searched refs:NotNull (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp1184 auto NotNull = [&](ArgNo ArgN) { in initFunctionSummaries() local
1369 .ArgConstraint(NotNull(ArgNo(0))) in initFunctionSummaries()
1370 .ArgConstraint(NotNull(ArgNo(3))) in initFunctionSummaries()
1501 .ArgConstraint(NotNull(ArgNo(0))) in initFunctionSummaries()
1527 .ArgConstraint(NotNull(ArgNo(0))) in initFunctionSummaries()
1537 .ArgConstraint(NotNull(ArgNo(0))) in initFunctionSummaries()
1599 .ArgConstraint(NotNull(ArgNo(0))) in initFunctionSummaries()
1744 .ArgConstraint(NotNull(ArgNo(0))) in initFunctionSummaries()
1756 .ArgConstraint(NotNull(ArgNo(1))) in initFunctionSummaries()
1795 .ArgConstraint(NotNull(ArgNo(0))) in initFunctionSummaries()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DStackLifetime.h145 std::function<bool(const IntrinsicInst *)> NotNull( in getMarkers()
147 return make_filter_range(Instructions, NotNull); in getMarkers()
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock_link_test.h164 using testing::NotNull;
514 ON_CALL(mock, VoidFromString(NotNull())).WillByDefault(Return()); in TEST()
H A Dgmock-matchers_test.cc117 using testing::NotNull;
1219 Matcher<int*> m1 = NotNull(); in TEST()
1225 Matcher<const char*> m2 = NotNull(); in TEST()
1232 const Matcher<linked_ptr<int> > m = NotNull(); in TEST()
1241 const Matcher<const linked_ptr<double>&> m = NotNull(); in TEST()
1251 const Matcher<std::function<void()>> m = NotNull(); in TEST()
1260 Matcher<int*> m = NotNull(); in TEST()
/freebsd-13.1/contrib/googletest/googlemock/
H A DCHANGES71 * NotNull() and IsNull() now work with smart pointers.
/freebsd-13.1/contrib/googletest/googlemock/docs/
H A DCookBook.md646 using ::testing::NotNull;
651 EXPECT_CALL(foo, DoThat("Hello", NotNull()));
659 using ::testing::NotNull;
661 EXPECT_CALL(foo, DoThat(_, NotNull()));
1079 AllOf(NotNull(), Pointee(m))
1665 using ::testing::NotNull;
1677 EXPECT_CALL(mutator, Mutate(NotNull(), 5))
2393 EXPECT_CALL(mock_buzzer_, DoShareBuzz(NotNull(), _));
3168 define `NotNull()` as an example:
3173 using ::testing::NotNull;
[all …]
H A DCheatSheet.md180 |`NotNull()` |`argument` is a non-null pointer (raw or smart).|
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h4385 inline PolymorphicMatcher<internal::NotNullMatcher > NotNull() {