HomeSort by relevance Sort by last modified time
    Searched refs:OptionalAmount (Results 1 - 6 of 6) sorted by null

  /external/clang/lib/Analysis/
FormatString.cpp 22 using clang::analyze_format_string::OptionalAmount;
35 OptionalAmount
52 return OptionalAmount(OptionalAmount::Constant, accumulator, Beg, I - Beg,
58 return OptionalAmount();
61 OptionalAmount
67 return OptionalAmount(OptionalAmount::Arg, argIndex++, Beg, 0, false);
73 OptionalAmount
81 const OptionalAmount &Amt = ParseAmount(I, E)
    [all...]
FormatStringParsing.h 28 OptionalAmount ParseAmount(const char *&Beg, const char *E);
29 OptionalAmount ParseNonPositionAmount(const char *&Beg, const char *E,
32 OptionalAmount ParsePositionAmount(FormatStringHandler &H,
PrintfFormatString.cpp 21 using clang::analyze_format_string::OptionalAmount;
42 const OptionalAmount Amt = ParsePositionAmount(H, Start, Beg, E,
450 Precision.setHowSpecified(OptionalAmount::NotSpecified);
631 if (Precision.getHowSpecified() == OptionalAmount::NotSpecified)
658 if (FieldWidth.getHowSpecified() == OptionalAmount::NotSpecified)
ScanfFormatString.cpp 21 using clang::analyze_format_string::OptionalAmount;
123 const OptionalAmount &Amt = clang::analyze_format_string::ParseAmount(I, E);
124 if (Amt.getHowSpecified() != OptionalAmount::NotSpecified) {
125 assert(Amt.getHowSpecified() == OptionalAmount::Constant);
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 236 class OptionalAmount {
240 OptionalAmount(HowSpecified howSpecified,
248 OptionalAmount(bool valid = true)
307 OptionalAmount FieldWidth;
340 const OptionalAmount &getFieldWidth() const {
344 void setFieldWidth(const OptionalAmount &Amt) {
392 using analyze_format_string::OptionalAmount;
402 OptionalAmount Precision;
447 void setPrecision(const OptionalAmount &Amt) {
452 const OptionalAmount &getPrecision() const
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 231 milliseconds