aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/Analyses/PrintfFormatString.h
AgeCommit message (Expand)Author
2010-07-16Add most of the boilerplate support for scanf format string checking. This i...Ted Kremenek
2010-06-18Printf format strings: Added some more tests and fixed some minor bugs.Tom Care
2010-06-17Bug 7394 - Fixed toString representation of Precisions in format strings.Tom Care
2010-06-17Bug 7377: Fixed several bad printf format string bugs.Tom Care
2010-06-17Fix format string checking of '%c' by treating it as an integer conversion. ...Ted Kremenek
2010-06-16Extend format string type-checking to include '%p'. Fixes remaining cases PR...Ted Kremenek
2010-06-09Added FixIt support to printf format string checking.Tom Care
2010-02-27Add reference to positional arguments documentation.Ted Kremenek
2010-02-27For printf format string checking, add support for positional format strings.Ted Kremenek
2010-02-26For printf format string checking, move the tracking of the data argument ind...Ted Kremenek
2010-02-24Add support for '%C' and '%S' printf conversion specifiers.Ted Kremenek
2010-02-16Refactor the logic for printf argument type-checking into analyze_printf::Arg...Ted Kremenek
2010-02-16Added 'AsWideChar' flag to LengthModifier.Ted Kremenek
2010-02-11Patch by Cristian Draghici:Ted Kremenek
2010-02-04Move ParseFormatString() and FormatStringHandler back into the analyze_printf...Ted Kremenek
2010-02-04Convert flags in FormatSpecifier to be bitfields instead of doingTed Kremenek
2010-01-30Recognize 'q' as a format length modifier (from BSD).Daniel Dunbar
2010-01-30Silence clang++ warning.Benjamin Kramer
2010-01-29Per a suggestion from Cristian Draghici, add a method to FormatSpecifier that...Ted Kremenek
2010-01-29Enhancements to the alternate (WIP) format string checking:Ted Kremenek
2010-01-29Fix typo found by clang++. Yay for -Wuninitialized.Benjamin Kramer
2010-01-29Alternate format string checking: issue warnings for incomplete format specif...Ted Kremenek
2010-01-29Alternate format string checking: issue a warning for invalid conversion spec...Ted Kremenek
2010-01-29Alternate format string checking: warn of '%n' as being potentially insecure.Ted Kremenek
2010-01-29Add precision/field width checking to AlternateCheckPrintfString().Ted Kremenek
2010-01-28Add position of conversion specifier character to 'ConversionSpecifier'.Ted Kremenek
2010-01-28Rename namespace clang::printf to clang::analyze_printf to avoid problems whe...Ted Kremenek
2010-01-28Allow HandleFormatSpecifier() to indicate that no more processing of the form...Ted Kremenek
2010-01-28Add '@' conversion specifier.Ted Kremenek
2010-01-27Add skeleton for a more structured way to analyzing pring formatTed Kremenek