Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-tidy/readability/
DFunctionCognitiveComplexityCheck.cpp223 std::stack<OBO, SmallVector<OBO, 4>> BinaryOperatorsStack; member in clang::tidy::readability::__anon7c293f010111::FunctionASTVisitor
312 #define CurrentBinaryOperator BinaryOperatorsStack.top()
321 if (BinaryOperatorsStack.empty()) in TraverseBinaryOperator()
322 BinaryOperatorsStack.emplace(); in TraverseBinaryOperator()
349 if (!Node || BinaryOperatorsStack.empty() || !CurrentBinaryOperator) in TraverseCallExpr()
353 BinaryOperatorsStack.emplace(); in TraverseCallExpr()
356 BinaryOperatorsStack.pop(); in TraverseCallExpr()