Lines Matching refs:Amt
81 const OptionalAmount &Amt = ParseAmount(I, E); in ParsePositionAmount() local
83 if (Amt.getHowSpecified() == OptionalAmount::NotSpecified) { in ParsePositionAmount()
94 assert(Amt.getHowSpecified() == OptionalAmount::Constant); in ParsePositionAmount()
100 if (Amt.getConstantAmount() == 0) { in ParsePositionAmount()
108 return OptionalAmount(OptionalAmount::Arg, Amt.getConstantAmount() - 1, in ParsePositionAmount()
131 const OptionalAmount Amt = in ParseFieldWidth() local
135 if (Amt.isInvalid()) in ParseFieldWidth()
137 CS.setFieldWidth(Amt); in ParseFieldWidth()
150 const OptionalAmount &Amt = ParseAmount(I, E); in ParseArgPosition() local
158 if (Amt.getHowSpecified() == OptionalAmount::Constant && *(I++) == '$') { in ParseArgPosition()
163 if (Amt.getConstantAmount() == 0) { in ParseArgPosition()
168 FS.setArgIndex(Amt.getConstantAmount() - 1); in ParseArgPosition()