Searched refs:nonconst (Results 1 – 10 of 10) sorted by relevance
4 int nonconst = 8; // expected-note 3 {{here}} variable5 enum NonConstE : unsigned char { NCE = nonconst }; // expected-error {{enumerator value is not a co…6 template<int = nonconst> struct NonConstT {}; // expected-error {{non-type template argument is not…8 switch (nonconst) { in NonConstF()9 …case nonconst: // expected-error {{case value is not a constant expression}} expected-note {{read … in NonConstF()
4 int nonconst(void);38 __assume(nonconst()); in test1()41 __builtin_assume(nonconst()); in test1()
4 int nonconst(void);12 …__assume(nonconst() > 2); //expected-warning {{the argument to '__assume' has side effects that wi… in foo()21 …__builtin_assume(nonconst() > 2); //expected-warning {{the argument to '__builtin_assume' has side… in foo()
65 const int nonconst = 1.0; // expected-note {{declared here}} variable66 int arr[nonconst]; // expected-warning {{folded to constant array as an extension}} expected-note {…
2 ; to be nonconst.
1328 char nonconst[] = "nonconst"; in TEST() local1329 EXPECT_EQ("nonconst", format("{0}", nonconst)); in TEST()
1743 // from basic_string which doesn't have nonconst .data() member like other contiguous containers