Searched refs:return_four (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/clang/test/SemaCXX/ |
D | warn-comma-operator.cpp | 10 int return_four() { return 5; } in return_four() function 46 if (return_four(), 5) {} in test_compare() 52 if (return_four() == 5) {} in test_compare() 57 return return_four(), return_four(); in test_plus() 63 return return_four() + return_four(); in test_plus() 69 for (x = 0; return_four(), x;) {} in test_parentheses() 75 for (x = 0; (return_four()), (x) ;) {} in test_parentheses() 93 x = (return_four(), x); in test_conditions() 99 int y = (return_four(), x); in test_conditions() 105 for (; return_four(), x;) {} in test_conditions() [all …]
|
/external/clang/test/SemaCXX/ |
D | warn-comma-operator.cpp | 82 int return_four() { return 5; } in return_four() function 86 cout << 5 << return_four(); in test4() 87 cout << 5, return_four(); in test4() 96 if (return_four(), 5) {} in test5() 102 if (return_four() == 5) {} in test5() 107 return return_four(), return_four(); in test6() 113 return return_four() + return_four(); in test6() 121 Concat((return_four() , 5)); in test7() 127 Concat(return_four() , 5); in test7() 133 for (x = 0; return_four(), x;) {} in test8() [all …]
|