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.cpp828 Optional<bool> MayInline = Engine.FunctionSummaries->mayInline(D); in shouldInlineCall() local
829 if (MayInline.hasValue()) { in shouldInlineCall()
830 if (!MayInline.getValue()) in shouldInlineCall()
851 assert(!MayInline.hasValue() || MayInline.getValue()); in shouldInlineCall()