Home
last modified time | relevance | path

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

/external/clang/lib/Lex/
DLiteralSupport.cpp529 MicrosoftInteger = 0; in NumericLiteralParser()
606 if (isLong || isLongLong || MicrosoftInteger) in NumericLiteralParser()
614 MicrosoftInteger = 8; in NumericLiteralParser()
619 MicrosoftInteger = 16; in NumericLiteralParser()
625 MicrosoftInteger = 32; in NumericLiteralParser()
631 MicrosoftInteger = 64; in NumericLiteralParser()
638 if (MicrosoftInteger) { in NumericLiteralParser()
670 MicrosoftInteger = 0; in NumericLiteralParser()
/external/clang/include/clang/Lex/
DLiteralSupport.h69 uint8_t MicrosoftInteger; // Microsoft suffix extension i8, i16, i32, or i64. variable
/external/clang/lib/Sema/
DSemaExpr.cpp3429 if (Literal.MicrosoftInteger) { in ActOnNumericConstant()
3430 if (Literal.MicrosoftInteger == 8 && !Literal.isUnsigned) { in ActOnNumericConstant()
3434 Width = Literal.MicrosoftInteger; in ActOnNumericConstant()