Home
last modified time | relevance | path

Searched refs:isAddressOfOperand (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseExpr.cpp535 bool isAddressOfOperand, in ParseCastExpression() argument
540 isAddressOfOperand, in ParseCastExpression()
761 bool isAddressOfOperand, in ParseCastExpression() argument
851 return ParseCastExpression(isUnaryExpression, isAddressOfOperand); in ParseCastExpression()
1037 if (isAddressOfOperand && isPostfixExpressionSuffixStart()) in ParseCastExpression()
1038 isAddressOfOperand = false; in ParseCastExpression()
1049 Validator->IsAddressOfOperand = isAddressOfOperand; in ParseCastExpression()
1059 isAddressOfOperand, std::move(Validator), in ParseCastExpression()
1064 return ParseCastExpression(isUnaryExpression, isAddressOfOperand, in ParseCastExpression()
1334 Res = ParseCXXIdExpression(isAddressOfOperand); in ParseCastExpression()
[all …]
H A DParseExprCXX.cpp548 ExprResult Parser::tryParseCXXIdExpression(CXXScopeSpec &SS, bool isAddressOfOperand, in tryParseCXXIdExpression() argument
562 if (isAddressOfOperand && isPostfixExpressionSuffixStart()) in tryParseCXXIdExpression()
563 isAddressOfOperand = false; in tryParseCXXIdExpression()
567 isAddressOfOperand, nullptr, /*IsInlineAsmIdentifier=*/false, in tryParseCXXIdExpression()
616 ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) { in ParseCXXIdExpression() argument
626 tryParseCXXIdExpression(SS, isAddressOfOperand, Replacement); in ParseCXXIdExpression()
631 Result = tryParseCXXIdExpression(SS, isAddressOfOperand, Replacement); in ParseCXXIdExpression()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSemaInternal.h239 bool isAddressOfOperand() const { return CorrectionValidator->IsAddressOfOperand; } in isAddressOfOperand() function
H A DSema.h4179 bool isAddressOfOperand,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h1610 bool isAddressOfOperand,
1615 bool isAddressOfOperand = false,
1696 ExprResult tryParseCXXIdExpression(CXXScopeSpec &SS, bool isAddressOfOperand,
1698 ExprResult ParseCXXIdExpression(bool isAddressOfOperand = false);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplate.cpp605 bool isAddressOfOperand, in ActOnDependentIdExpression() argument
628 if (!MightBeCxx11UnevalField && !isAddressOfOperand && !IsEnum && in ActOnDependentIdExpression()
H A DSemaExprCXX.cpp7532 if (!Consumer.isAddressOfOperand()) in attemptRecovery()