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...]
ScanfFormatString.cpp 22 using clang::analyze_format_string::OptionalAmount;
133 const OptionalAmount &Amt = clang::analyze_format_string::ParseAmount(I, E);
134 if (Amt.getHowSpecified() != OptionalAmount::NotSpecified) {
135 assert(Amt.getHowSpecified() == OptionalAmount::Constant);
423 FieldWidth = OptionalAmount(OptionalAmount::Constant,
PrintfFormatString.cpp 22 using clang::analyze_format_string::OptionalAmount;
43 const OptionalAmount Amt = ParsePositionAmount(H, Start, Beg, E,
431 Precision.setHowSpecified(OptionalAmount::NotSpecified);
553 Precision.setHowSpecified(OptionalAmount::NotSpecified);
742 if (Precision.getHowSpecified() == OptionalAmount::NotSpecified)
772 if (FieldWidth.getHowSpecified() == OptionalAmount::NotSpecified)
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 254 class OptionalAmount {
258 OptionalAmount(HowSpecified howSpecified,
266 OptionalAmount(bool valid = true)
325 OptionalAmount FieldWidth;
358 const OptionalAmount &getFieldWidth() const {
362 void setFieldWidth(const OptionalAmount &Amt) {
415 using analyze_format_string::OptionalAmount;
425 OptionalAmount Precision;
470 void setPrecision(const OptionalAmount &Amt) {
475 const OptionalAmount &getPrecision() const
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 57 milliseconds