Home
last modified time | relevance | path

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

/external/clang/test/Analysis/
Didentical-expressions.cpp15 int funcParam(int a) in funcParam() function
332 int res = (a+funcParam(a) != a+funcParam(a)); // no warning in checkNotEqualSameFunctionSameParam()
339 int res = (a+funcParam(a) != a+funcParam(b)); // no warning in checkNotEqualSameFunctionDifferentParam()
595 int res = (a+funcParam(a) == a+funcParam(a)); // no warning in checkEqualSameFunctionSameParam()
602 int res = (a+funcParam(a) == a+funcParam(b)); // no warning in checkEqualSameFunctionDifferentParam()
1106 …a = a > 5 ? a+funcParam(b) : a+funcParam(b); // expected-warning {{identical expressions on both s… in test_expr_positive_funcParam()
1112 a = a > 5 ? a+funcParam(a) : a+funcParam(b); // no warning in test_expr_negative_funcParam()
1227 funcParam(1); in test_identical_branches_func_arguments()
1229 funcParam(2); in test_identical_branches_func_arguments()