Lines Matching refs:getAPSIntVal
1460 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseUInt32()
1462 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1); in ParseUInt32()
1473 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseUInt64()
1475 Val = Lex.getAPSIntVal().getLimitedValue(); in ParseUInt64()
2688 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() || in ParseArrayVectorType()
2689 Lex.getAPSIntVal().getBitWidth() > 64) in ParseArrayVectorType()
2693 uint64_t Size = Lex.getAPSIntVal().getZExtValue(); in ParseArrayVectorType()
2974 ID.APSIntVal = Lex.getAPSIntVal(); in ParseValID()
3837 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseMDField()
3840 auto &U = Lex.getAPSIntVal(); in ParseMDField()
4017 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned()) { in ParseMDField()
4057 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned()) { in ParseMDField()
4094 auto &S = Lex.getAPSIntVal(); in ParseMDField()
4171 if (Lex.getAPSIntVal().isSigned()) { in ParseMDField()
4831 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseDIExpression()
4834 auto &U = Lex.getAPSIntVal(); in ParseDIExpression()
7838 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseFlag()
7840 Val = (unsigned)Lex.getAPSIntVal().getBoolValue(); in ParseFlag()