Searched refs:NotNull (Results 1 – 8 of 8) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | StdLibraryFunctionsChecker.cpp | 1184 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 D | StackLifetime.h | 145 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 D | gmock_link_test.h | 164 using testing::NotNull; 514 ON_CALL(mock, VoidFromString(NotNull())).WillByDefault(Return()); in TEST()
|
| H A D | gmock-matchers_test.cc | 117 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 D | CHANGES | 71 * NotNull() and IsNull() now work with smart pointers.
|
| /freebsd-13.1/contrib/googletest/googlemock/docs/ |
| H A D | CookBook.md | 646 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 D | CheatSheet.md | 180 |`NotNull()` |`argument` is a non-null pointer (raw or smart).|
|
| /freebsd-13.1/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-matchers.h | 4385 inline PolymorphicMatcher<internal::NotNullMatcher > NotNull() {
|