Home
last modified time | relevance | path

Searched refs:OperatorKind (Results 1 – 8 of 8) sorted by relevance

/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerHelpers.h76 class OperatorKind {
84 explicit OperatorKind(BinaryOperatorKind Bin) : Op{Bin}, IsBinary{true} {} in OperatorKind() function
85 explicit OperatorKind(UnaryOperatorKind Un) : IsBinary{false} { Op.Un = Un; } in OperatorKind() function
112 OperatorKind operationKindFromOverloadedOperator(OverloadedOperatorKind OOK,
/llvm-project/clang/include/clang/Sema/
H A DParsedTemplate.h200 const IdentifierInfo *Name, OverloadedOperatorKind OperatorKind, in Create()
208 OperatorKind, OpaqueTemplateName, TemplateKind, in Create()
241 OverloadedOperatorKind OperatorKind, in TemplateIdAnnotation()
248 Name(Name), Operator(OperatorKind), Template(OpaqueTemplateName), in TemplateIdAnnotation()
/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp152 OperatorKind operationKindFromOverloadedOperator(OverloadedOperatorKind OOK, in operationKindFromOverloadedOperator()
169 return OperatorKind(BinOpIt->second); \ in operationKindFromOverloadedOperator()
175 return OperatorKind(UnOpIt->second); \ in operationKindFromOverloadedOperator()
/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNSErrorChecker.cpp104 auto OperatorKind = D->getOverloadedOperator(); in hasReservedReturnType() local
105 return OperatorKind == OO_Delete || OperatorKind == OO_Array_Delete; in hasReservedReturnType()
/llvm-project/clang/lib/AST/
H A DExprCXX.cpp598 CXXOperatorCallExprBits.OperatorKind = OpKind;
600 (CXXOperatorCallExprBits.OperatorKind == static_cast<unsigned>(OpKind)) &&
601 "OperatorKind overflow!");
/llvm-project/clang/include/clang/AST/
H A DStmt.h760 unsigned OperatorKind : 6;
H A DExprCXX.h113 CXXOperatorCallExprBits.OperatorKind); in getOperator()
/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1730 E->CXXOperatorCallExprBits.OperatorKind = Record.readInt(); in VisitCXXConstructExpr()