cppcheck-lib.cfg: Enhance Cppcheck library configuration (#2009)
This commit is contained in:
parent
d11d6f112e
commit
a997a30824
|
@ -4,41 +4,69 @@
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- static bool Match(const Token *tok, const char pattern[], unsigned int varid = 0); -->
|
||||||
<function name="Token::Match">
|
<function name="Token::Match">
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
|
<returnValue type="bool"/>
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<arg nr="1">
|
<arg nr="1" direction="in">
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
<arg nr="2">
|
<arg nr="2" direction="in">
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
<not-null/>
|
<not-null/>
|
||||||
<strz/>
|
<strz/>
|
||||||
</arg>
|
</arg>
|
||||||
<arg nr="3" default="0">
|
<arg nr="3" default="0" direction="in">
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
<not-bool/>
|
<not-bool/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- static bool simpleMatch(const Token *tok, const char pattern[]); -->
|
||||||
<function name="Token::simpleMatch">
|
<function name="Token::simpleMatch">
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
|
<returnValue type="bool"/>
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<arg nr="1">
|
<arg nr="1" direction="in">
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
<arg nr="2">
|
<arg nr="2" direction="in">
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
<not-null/>
|
<not-null/>
|
||||||
<strz/>
|
<strz/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
<function name="Token::linkAt,Token::strAt,Token::tokAt">
|
<!-- const Token *linkAt(int index) const; -->
|
||||||
|
<!-- const Token *tokAt(int index) const; -->
|
||||||
|
<function name="Token::linkAt,Token::tokAt">
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
|
<returnValue type="const Token *"/>
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<arg nr="1">
|
<const/>
|
||||||
|
<arg nr="1" direction="in">
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
<valid>-50:50</valid>
|
<valid>-50:50</valid>
|
||||||
<not-bool/>
|
<not-bool/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- const std::string &strAt(int index) const; -->
|
||||||
|
<function name="Token::strAt">
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<returnValue type="const std::string &"/>
|
||||||
|
<use-retval/>
|
||||||
|
<const/>
|
||||||
|
<arg nr="1" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
<valid>-50:50</valid>
|
||||||
|
<not-bool/>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
|
<!-- const ValueType *valueType() const; -->
|
||||||
|
<function name="Token::valueType">
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<returnValue type="const ValueType *"/>
|
||||||
|
<use-retval/>
|
||||||
|
<const/>
|
||||||
|
<leak-ignore/>
|
||||||
|
</function>
|
||||||
</def>
|
</def>
|
||||||
|
|
Loading…
Reference in New Issue