Home
last modified time | relevance | path

Searched refs:MayInline (Results 1 – 2 of 2) sorted by relevance

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DFunctionSummary.h45 unsigned MayInline : 1; variable
74 I->second.MayInline = 1; in markMayInline()
80 I->second.MayInline = 0; in markShouldNotInline()
90 return I->second.MayInline; in mayInline()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp817 Optional<bool> MayInline = Engine.FunctionSummaries->mayInline(D); in shouldInlineCall() local
818 if (MayInline.hasValue()) { in shouldInlineCall()
819 if (!MayInline.getValue()) in shouldInlineCall()
840 assert(!MayInline.hasValue() || MayInline.getValue()); in shouldInlineCall()