Home
last modified time | relevance | path

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

/freebsd/contrib/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,
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedTemplate.h199 const IdentifierInfo *Name, OverloadedOperatorKind OperatorKind, in Create()
207 OperatorKind, OpaqueTemplateName, TemplateKind, in Create()
240 OverloadedOperatorKind OperatorKind, in TemplateIdAnnotation()
247 Name(Name), Operator(OperatorKind), Template(OpaqueTemplateName), in TemplateIdAnnotation()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp160 OperatorKind operationKindFromOverloadedOperator(OverloadedOperatorKind OOK, in operationKindFromOverloadedOperator()
177 return OperatorKind(BinOpIt->second); \ in operationKindFromOverloadedOperator()
183 return OperatorKind(UnOpIt->second); \ in operationKindFromOverloadedOperator()
/freebsd/contrib/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()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp599 CXXOperatorCallExprBits.OperatorKind = OpKind;
601 (CXXOperatorCallExprBits.OperatorKind == static_cast<unsigned>(OpKind)) &&
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h785 unsigned OperatorKind : 6;
H A DExprCXX.h115 CXXOperatorCallExprBits.OperatorKind); in getOperator()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1735 E->CXXOperatorCallExprBits.OperatorKind = Record.readInt(); in VisitCXXOperatorCallExpr()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp16521 Sema &SemaRef, FunctionDecl *FnDecl, AllocationOperatorKind OperatorKind, in CheckOperatorNewDeleteTypes() argument
16547 if (OperatorKind == AllocationOperatorKind::New) { in CheckOperatorNewDeleteTypes()