Lines Matching refs:scoped_specified_t
29 enum class scoped_specified_t : int { enum
84 …scoped_specified_t InvalidBeforeRangeBegin = static_cast<scoped_specified_t>(-5); // expected-warn… in scopedSpecified()
85 scoped_specified_t ValidNegativeValue1 = static_cast<scoped_specified_t>(-4); // OK. in scopedSpecified()
86 scoped_specified_t ValidNegativeValue2 = static_cast<scoped_specified_t>(-3); // OK. in scopedSpecified()
87 …scoped_specified_t InvalidInsideRange1 = static_cast<scoped_specified_t>(-2); // expected-warning … in scopedSpecified()
88 …scoped_specified_t InvalidInsideRange2 = static_cast<scoped_specified_t>(-1); // expected-warning … in scopedSpecified()
89 …scoped_specified_t InvalidInsideRange3 = static_cast<scoped_specified_t>(0); // expected-warning {… in scopedSpecified()
90 scoped_specified_t ValidPositiveValue1 = static_cast<scoped_specified_t>(1); // OK. in scopedSpecified()
91 scoped_specified_t ValidPositiveValue2 = static_cast<scoped_specified_t>(2); // OK. in scopedSpecified()
92 …scoped_specified_t InvalidInsideRange4 = static_cast<scoped_specified_t>(3); // expected-warning {… in scopedSpecified()
93 scoped_specified_t ValidPositiveValue3 = static_cast<scoped_specified_t>(4); // OK. in scopedSpecified()
94 …scoped_specified_t InvalidAfterRangeEnd = static_cast<scoped_specified_t>(5); // expected-warning … in scopedSpecified()
140 …scoped_specified_t InvalidBeforeRangeBegin = (scoped_specified_t)(-5); // expected-warning {{The v… in scopedSpecifiedCStyle()
141 scoped_specified_t ValidNegativeValue1 = (scoped_specified_t)(-4); // OK. in scopedSpecifiedCStyle()
142 scoped_specified_t ValidNegativeValue2 = (scoped_specified_t)(-3); // OK. in scopedSpecifiedCStyle()
143 …scoped_specified_t InvalidInsideRange1 = (scoped_specified_t)(-2); // expected-warning {{The value… in scopedSpecifiedCStyle()
144 …scoped_specified_t InvalidInsideRange2 = (scoped_specified_t)(-1); // expected-warning {{The value… in scopedSpecifiedCStyle()
145 …scoped_specified_t InvalidInsideRange3 = (scoped_specified_t)(0); // expected-warning {{The value … in scopedSpecifiedCStyle()
146 scoped_specified_t ValidPositiveValue1 = (scoped_specified_t)(1); // OK. in scopedSpecifiedCStyle()
147 scoped_specified_t ValidPositiveValue2 = (scoped_specified_t)(2); // OK. in scopedSpecifiedCStyle()
148 …scoped_specified_t InvalidInsideRange4 = (scoped_specified_t)(3); // expected-warning {{The value … in scopedSpecifiedCStyle()
149 scoped_specified_t ValidPositiveValue3 = (scoped_specified_t)(4); // OK. in scopedSpecifiedCStyle()
150 …scoped_specified_t InvalidAfterRangeEnd = (scoped_specified_t)(5); // expected-warning {{The value… in scopedSpecifiedCStyle()
163 …auto value = static_cast<scoped_specified_t>(input); // OK. Being conservative, this is a possibly… in rangeConstrained1()
168 …auto value = static_cast<scoped_specified_t>(input); // expected-warning {{The value provided to t… in rangeConstrained2()
173 …auto value = static_cast<scoped_specified_t>(input); // expected-warning {{The value provided to t… in rangeConstrained3()
178 auto value = static_cast<scoped_specified_t>(input); // OK. Possibly 1. in rangeConstrained4()
183 auto value = static_cast<scoped_specified_t>(input); // OK. Strict inner matching. in rangeConstrained5()
188 …auto value = static_cast<scoped_specified_t>(input); // OK. The value is possibly 2 or 4, dont war… in rangeConstrained6()
193 …auto value = static_cast<scoped_specified_t>(input); // expected-warning {{The value provided to t… in rangeConstrained7()