Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp117 bool IsNew; in ExecuteWorkList() local
118 ExplodedNode *Node = G.getNode(StartLoc, InitState, false, &IsNew); in ExecuteWorkList()
119 assert(IsNew); in ExecuteWorkList()
564 bool IsNew; in generateNode() local
565 ExplodedNode *Node = G.getNode(Loc, State, false, &IsNew); in generateNode()
570 if (IsNew) WList->enqueue(Node); in generateNode()
615 bool IsNew; in enqueueStmtNode() local
616 ExplodedNode *Succ = G.getNode(Loc, N->getState(), false, &IsNew); in enqueueStmtNode()
619 if (IsNew) in enqueueStmtNode()
694 bool IsNew; in generateNodeImpl() local
[all …]
H A DExplodedGraph.cpp395 bool* IsNew) { in getNode() argument
422 if (IsNew) *IsNew = true; in getNode()
425 if (IsNew) *IsNew = false; in getNode()
H A DHTMLDiagnostics.cpp306 auto [It, IsNew] = EmittedHashes.insert(IssueHash); in ReportDiag()
307 if (!IsNew) { in ReportDiag()
H A DBugReporter.cpp2665 bool IsNew; in BugPathGetter() local
2666 std::tie(PriorityEntry, IsNew) = PriorityMap.insert({Node, Priority}); in BugPathGetter()
2669 if (!IsNew) { in BugPathGetter()
H A DExprEngine.cpp2506 bool IsNew = false; in replayWithoutInlining() local
2507 ExplodedNode *NewNode = G.getNode(NewNodeLoc, NewNodeState, false, &IsNew); in replayWithoutInlining()
2510 if (!IsNew) in replayWithoutInlining()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DASTUtils.cpp291 auto [CacheIt, IsNew] = Cache.insert(std::make_pair(Callee, false)); in isACallToEnsureFn()
292 if (IsNew) in isACallToEnsureFn()
H A DRefCntblBaseVirtualDtorChecker.cpp43 auto [It, IsNew] = VisitedBody.insert(Body); in VisitBody()
44 if (!IsNew) // This body is recursive in VisitBody()
H A DPtrTypesSemantics.cpp529 auto [RecursiveIt, IsNew] = RecursiveFn.insert(std::make_pair(S, true)); in WithCachedResult()
530 if (!IsNew) in WithCachedResult()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp796 bool IsNew = false; in cloneConstantExprWithNewAddressSpace() local
806 IsNew = true; in cloneConstantExprWithNewAddressSpace()
813 IsNew = true; in cloneConstantExprWithNewAddressSpace()
823 if (!IsNew) in cloneConstantExprWithNewAddressSpace()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPLexerChange.cpp847 bool IsNew; in LeaveSubmodule() local
852 IsNew); in LeaveSubmodule()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h355 bool* IsNew = nullptr);
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1960 bool &IsNew) { in getConverterOperandID() argument
1961 IsNew = Table.insert(CachedHashString(Name)); in getConverterOperandID()
1963 unsigned ID = IsNew ? Table.size() - 1 : find(Table, Name) - Table.begin(); in getConverterOperandID()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1568 bool IsNew = ExitBlocks.insert(Succ).second; in computeExtractedFuncRetVals() local
1569 if (IsNew) in computeExtractedFuncRetVals()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h1462 ArrayRef<ModuleMacro *> Overrides, bool &IsNew);