Searched refs:getAPSIntVal (Results 1 – 2 of 2) sorted by relevance
75 const APSInt &getAPSIntVal() const { return APSIntVal; } in getAPSIntVal() function
1869 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in parseUInt32()1871 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1); in parseUInt32()1882 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in parseUInt64()1884 Val = Lex.getAPSIntVal().getLimitedValue(); in parseUInt64()3126 if (Lex.getAPSIntVal().getBitWidth() > BitWidth) in parseRangeAttr()3129 Val = Lex.getAPSIntVal().extend(BitWidth); in parseRangeAttr()3162 Val = Lex.getAPSIntVal().extend(64); in parseInitializesAttr()3546 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() || in parseArrayVectorType()3547 Lex.getAPSIntVal().getBitWidth() > 64) in parseArrayVectorType()3551 uint64_t Size = Lex.getAPSIntVal().getZExtValue(); in parseArrayVectorType()[all …]