Lines Matching refs:makeWrappedStmts

125   makeWrappedStmts(const std::string &SrcCode0, const std::string &SrcCode1,  in makeWrappedStmts()  function
1833 auto t = makeWrappedStmts("lbl: &&lbl;", "lbl: &&lbl;", Lang_CXX03, in TEST_F()
1839 auto t = makeWrappedStmts("lbl1: lbl2: &&lbl1;", "lbl1: lbl2: &&lbl2;", in TEST_F()
1879 auto t = makeWrappedStmts("1 + 1", "1 + 1", Lang_CXX03, binaryOperator()); in TEST_F()
1884 auto t = makeWrappedStmts("1 + 1", "1 - 1", Lang_CXX03, binaryOperator()); in TEST_F()
1903 auto t = makeWrappedStmts("'a'", "'a'", Lang_CXX03, characterLiteral()); in TEST_F()
1908 auto t = makeWrappedStmts("'a'", "'b'", Lang_CXX03, characterLiteral()); in TEST_F()
1913 auto t = makeWrappedStmts("__is_lvalue_expr(1)", "__is_lvalue_expr(1)", in TEST_F()
1919 auto t = makeWrappedStmts("__is_lvalue_expr(1)", "__is_rvalue_expr(1)", in TEST_F()
1925 auto t = makeWrappedStmts("1.0", "1.0", Lang_CXX03, fallbackExprMatcher()); in TEST_F()
1930 auto t = makeWrappedStmts("0x10.1p0", "16.0625", Lang_CXX17, in TEST_F()
1937 auto t = makeWrappedStmts("1.0", "1.0f", Lang_CXX03, fallbackExprMatcher()); in TEST_F()
1942 auto t = makeWrappedStmts("1.01", "1.0", Lang_CXX03, fallbackExprMatcher()); in TEST_F()
1947 auto t = makeWrappedStmts("_Generic(0u, unsigned int: 0, float: 1)", in TEST_F()
1954 auto t = makeWrappedStmts("_Generic(0u, unsigned int: 0, float: 1)", in TEST_F()
1961 auto t = makeWrappedStmts("_Generic(0u, unsigned int: 0, float: 1)", in TEST_F()
2013 auto t = makeWrappedStmts("1", "1", Lang_CXX03, integerLiteral()); in TEST_F()
2018 auto t = makeWrappedStmts("1", "0x1", Lang_CXX03, integerLiteral()); in TEST_F()
2024 auto t = makeWrappedStmts("1", "2", Lang_CXX03, integerLiteral()); in TEST_F()
2029 auto t = makeWrappedStmts("1", "1L", Lang_CXX03, integerLiteral()); in TEST_F()
2051 makeWrappedStmts("@\"a\"", "@\"a\"", Lang_OBJCXX, fallbackExprMatcher()); in TEST_F()
2057 makeWrappedStmts("@\"a\"", "@\"b\"", Lang_OBJCXX, fallbackExprMatcher()); in TEST_F()
2062 auto t = makeWrappedStmts("\"a\"", "\"a\"", Lang_CXX03, stringLiteral()); in TEST_F()
2067 auto t = makeWrappedStmts("\"a\"", "\"b\"", Lang_CXX03, stringLiteral()); in TEST_F()
2072 auto t = makeWrappedStmts("\"a\"", "\"aa\"", Lang_CXX03, stringLiteral()); in TEST_F()
2077 auto t = makeWrappedStmts("__is_pod(int)", "__is_pod(int)", Lang_CXX03, in TEST_F()
2083 auto t = makeWrappedStmts("__is_pod(int)", "__is_pod(long)", Lang_CXX03, in TEST_F()
2089 auto t = makeWrappedStmts( in TEST_F()
2095 auto t = makeWrappedStmts("__is_constructible(int)", in TEST_F()
2101 auto t = makeWrappedStmts("sizeof(int)", "sizeof(int)", Lang_CXX03, in TEST_F()
2107 auto t = makeWrappedStmts("sizeof(int)", "alignof(long)", Lang_CXX11, in TEST_F()
2113 auto t = makeWrappedStmts("sizeof(int)", "sizeof(long)", Lang_CXX03, in TEST_F()
2119 auto t = makeWrappedStmts("+1", "+1", Lang_CXX03, unaryOperator()); in TEST_F()
2124 auto t = makeWrappedStmts("+1", "-1", Lang_CXX03, unaryOperator()); in TEST_F()