Lines Matching refs:getAPSIntVal
1130 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseUInt32()
1132 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1); in ParseUInt32()
1143 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseUInt64()
1145 Val = Lex.getAPSIntVal().getLimitedValue(); in ParseUInt64()
2062 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() || in ParseArrayVectorType()
2063 Lex.getAPSIntVal().getBitWidth() > 64) in ParseArrayVectorType()
2067 uint64_t Size = Lex.getAPSIntVal().getZExtValue(); in ParseArrayVectorType()
2363 ID.APSIntVal = Lex.getAPSIntVal(); in ParseValID()
3078 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseMDField()
3081 auto &U = Lex.getAPSIntVal(); in ParseMDField()
3184 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned()) in ParseMDField()
3217 auto &S = Lex.getAPSIntVal(); in ParseMDField()
3746 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseMDExpression()
3749 auto &U = Lex.getAPSIntVal(); in ParseMDExpression()