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

  /external/clang/lib/Analysis/
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,
FormatString.cpp 23 using clang::analyze_format_string::OptionalAmount;
36 OptionalAmount
53 return OptionalAmount(OptionalAmount::Constant, accumulator, Beg, I - Beg,
59 return OptionalAmount();
62 OptionalAmount
68 return OptionalAmount(OptionalAmount::Arg, argIndex++, Beg, 0, false);
74 OptionalAmount
82 const OptionalAmount &Amt = ParseAmount(I, E)
    [all...]
PrintfFormatString.cpp 22 using clang::analyze_format_string::OptionalAmount;
43 const OptionalAmount Amt = ParsePositionAmount(H, Start, Beg, E,
410 Precision.setHowSpecified(OptionalAmount::NotSpecified);
532 Precision.setHowSpecified(OptionalAmount::NotSpecified);
721 if (Precision.getHowSpecified() == OptionalAmount::NotSpecified)
751 if (FieldWidth.getHowSpecified() == OptionalAmount::NotSpecified)
ScanfFormatString.cpp 22 using clang::analyze_format_string::OptionalAmount;
124 const OptionalAmount &Amt = clang::analyze_format_string::ParseAmount(I, E);
125 if (Amt.getHowSpecified() != OptionalAmount::NotSpecified) {
126 assert(Amt.getHowSpecified() == OptionalAmount::Constant);
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 246 class OptionalAmount {
250 OptionalAmount(HowSpecified howSpecified,
258 OptionalAmount(bool valid = true)
317 OptionalAmount FieldWidth;
350 const OptionalAmount &getFieldWidth() const {
354 void setFieldWidth(const OptionalAmount &Amt) {
407 using analyze_format_string::OptionalAmount;
417 OptionalAmount Precision;
462 void setPrecision(const OptionalAmount &Amt) {
467 const OptionalAmount &getPrecision() const
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 682 milliseconds