Searched refs:getAPSIntVal (Results 1 – 2 of 2) sorted by relevance
62 const APSInt &getAPSIntVal() const { return APSIntVal; } in getAPSIntVal() function
1879 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in parseUInt32()1881 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1); in parseUInt32()1892 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in parseUInt64()1894 Val = Lex.getAPSIntVal().getLimitedValue(); in parseUInt64()3094 if (Lex.getAPSIntVal().getBitWidth() > BitWidth) in parseRangeAttr()3097 Val = Lex.getAPSIntVal().extend(BitWidth); in parseRangeAttr()3130 Val = Lex.getAPSIntVal().extend(64); in parseInitializesAttr()3447 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() || in parseArrayVectorType()3448 Lex.getAPSIntVal().getBitWidth() > 64) in parseArrayVectorType()3452 uint64_t Size = Lex.getAPSIntVal().getZExtValue(); in parseArrayVectorType()[all …]