Lines Matching refs:inlined
83 currently DISABLED in inlined functions, since different calls to the same
84 inlined function could provide different information, making it difficult to
98 If a call occurs within an inlined function, prints TRUE or FALSE according to
99 the value of its argument. If a call occurs outside an inlined function,
102 The intended use of this checker is to assert that a function is inlined at
104 function is never inlined (by passing 'false' and expecting no warning). The
107 You might wonder why we can't print TRUE if a function is ever inlined and
108 FALSE if it is not. The problem is that any inlined function could conceivably
116 int inlined() {
122 clang_analyzer_checkInlined(false); // no-warning (not inlined)
123 int value = inlined();
124 // This assertion will not be valid if the previous call was not inlined.