Lines Matching +full:no +full:- +full:std
1 …-analyze -analyzer-checker=core,unix.Malloc,cplusplus.NewDelete,debug.ExprInspection -analyzer-con…
2 …-analyze -analyzer-checker=core,unix.Malloc,cplusplus.NewDelete,debug.ExprInspection -analyzer-con…
4 // expected-no-diagnostics
6 #include "../Inputs/system-header-simulator-cxx-std-suppression.h"
8 void testList_pop_front(std::list<int> list) { in testList_pop_front()
10 list.pop_front(); // no-warning in testList_pop_front()
14 std::basic_string<uint8_t> v; in testBasicStringSuppression()
15 v.push_back(1); // no-warning in testBasicStringSuppression()
19 std::basic_string<char32_t> v; in testBasicStringSuppression_append()
20 v += 'c'; // no-warning in testBasicStringSuppression_append()
23 void testBasicStringSuppression_assign(std::basic_string<char32_t> &v, in testBasicStringSuppression_assign()
24 const std::basic_string<char32_t> &v2) { in testBasicStringSuppression_assign()
25 v = v2; // no-warning in testBasicStringSuppression_assign()
30 std::__independent_bits_engine<MyEngine, unsigned int> x(e, 64); // no-warning in testSuppression_independent_bits_engine()
34 std::shared_ptr<int> p(new int(1)); in testSuppression_std_shared_pointer()
36 p = nullptr; // no-warning in testSuppression_std_shared_pointer()