Home
last modified time | relevance | path

Searched refs:MicrosoftInteger (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/Lex/
DLiteralSupport.cpp527 MicrosoftInteger = 0; in NumericLiteralParser()
612 if (isLong || isLongLong || MicrosoftInteger) in NumericLiteralParser()
620 MicrosoftInteger = 8; in NumericLiteralParser()
625 MicrosoftInteger = 16; in NumericLiteralParser()
628 MicrosoftInteger = 128; in NumericLiteralParser()
634 MicrosoftInteger = 32; in NumericLiteralParser()
640 MicrosoftInteger = 64; in NumericLiteralParser()
647 if (MicrosoftInteger) { in NumericLiteralParser()
678 MicrosoftInteger = 0; in NumericLiteralParser()
/external/clang/include/clang/Lex/
DLiteralSupport.h66 uint8_t MicrosoftInteger; // Microsoft suffix extension i8, i16, i32, or i64. variable
/external/clang/lib/Sema/
DSemaExpr.cpp3342 if (Literal.MicrosoftInteger == 128 && MaxWidth < 128 && in ActOnNumericConstant()
3366 if (Literal.MicrosoftInteger) { in ActOnNumericConstant()
3367 if (Literal.MicrosoftInteger > MaxWidth) { in ActOnNumericConstant()
3372 } else if (Literal.MicrosoftInteger == 8 && !Literal.isUnsigned) { in ActOnNumericConstant()
3376 Width = Literal.MicrosoftInteger; in ActOnNumericConstant()