Searched refs:IsExtension (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaCXXScopeSpec.cpp | 320 bool *IsExtension) { in isAcceptableNestedNameSpecifier() argument 344 if (IsExtension) in isAcceptableNestedNameSpecifier() 345 *IsExtension = true; in isAcceptableNestedNameSpecifier() 352 if (IsExtension) in isAcceptableNestedNameSpecifier() 353 *IsExtension = true; in isAcceptableNestedNameSpecifier() 578 bool IsExtension = false; in BuildCXXNestedNameSpecifier() local 579 bool AcceptSpec = isAcceptableNestedNameSpecifier(SD, &IsExtension); in BuildCXXNestedNameSpecifier() 580 if (!AcceptSpec && IsExtension) { in BuildCXXNestedNameSpecifier()
|
H A D | DeclSpec.cpp | 490 bool IsExtension = true) { in BadSpecifier() argument 495 DiagID = IsExtension ? diag::ext_warn_duplicate_declspec : in BadSpecifier() 1005 bool IsExtension = true; in SetTypeQual() local 1007 IsExtension = false; in SetTypeQual() 1008 return BadSpecifier(T, T, PrevSpec, DiagID, IsExtension); in SetTypeQual()
|
H A D | SemaOverload.cpp | 14544 bool IsExtension = in CreateOverloadedBinOp() local 14546 Diag(OpLoc, IsExtension ? diag::ext_ovl_rewrite_equalequal_not_bool in CreateOverloadedBinOp() 14551 if (!IsExtension) in CreateOverloadedBinOp()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | Lexer.cpp | 1546 bool IsStart, bool &IsExtension) { in isMathematicalExtensionID() argument 1553 IsExtension = true; in isMathematicalExtensionID() 1560 bool &IsExtension) { in isAllowedIDChar() argument 1575 IsExtension); in isAllowedIDChar() 1588 bool &IsExtension) { in isAllowedInitiallyIDChar() argument 1590 IsExtension = false; in isAllowedInitiallyIDChar() 1599 IsExtension); in isAllowedInitiallyIDChar() 1601 if (!isAllowedIDChar(C, LangOpts, IsExtension)) in isAllowedInitiallyIDChar() 1745 bool IsExtension; in diagnoseInvalidUnicodeCodepointInIdentifier() local 1746 bool IsIDStart = isAllowedInitiallyIDChar(CodePoint, LangOpts, IsExtension); in diagnoseInvalidUnicodeCodepointInIdentifier() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | IdentifierTable.h | 137 unsigned IsExtension : 1; 210 HasMacro(false), HadMacro(false), IsExtension(false), in IdentifierInfo() 405 bool isExtensionToken() const { return IsExtension; } in isExtensionToken() 407 IsExtension = Val; in setIsExtensionToken()
|