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