Home
last modified time | relevance | path

Searched refs:IsNew (Results 1 – 12 of 12) 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()
516 bool IsNew; in generateNode() local
517 ExplodedNode *Node = G.getNode(Loc, State, false, &IsNew); in generateNode()
522 assert(IsNew); in generateNode()
527 if (IsNew) WList->enqueue(Node); in generateNode()
572 bool IsNew; in enqueueStmtNode() local
573 ExplodedNode *Succ = G.getNode(Loc, N->getState(), false, &IsNew); in enqueueStmtNode()
576 if (IsNew) in enqueueStmtNode()
[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.cpp308 auto [It, IsNew] = EmittedHashes.insert(IssueHash); in ReportDiag()
309 if (!IsNew) { in ReportDiag()
H A DBugReporter.cpp2623 bool IsNew; in BugPathGetter() local
2624 std::tie(PriorityEntry, IsNew) = PriorityMap.insert({Node, Priority}); in BugPathGetter()
2627 if (!IsNew) { in BugPathGetter()
H A DExprEngine.cpp2485 bool IsNew = false; in replayWithoutInlining() local
2486 ExplodedNode *NewNode = G.getNode(NewNodeLoc, NewNodeState, false, &IsNew); in replayWithoutInlining()
2489 if (!IsNew) in replayWithoutInlining()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DPtrTypesSemantics.cpp261 auto [It, IsNew] = Cache.insert(std::make_pair(S, false)); in WithCachedResult()
262 if (!IsNew) in WithCachedResult()
280 auto [RecursiveIt, IsNew] = RecursiveFn.insert(std::make_pair(D, true)); in IsFunctionTrivial()
281 if (!IsNew) in IsFunctionTrivial()
H A DRefCntblBaseVirtualDtorChecker.cpp43 auto [It, IsNew] = VisitedBody.insert(Body); in VisitBody()
44 if (!IsNew) // This body is recursive in VisitBody()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp737 bool IsNew = false; in cloneConstantExprWithNewAddressSpace() local
747 IsNew = true; in cloneConstantExprWithNewAddressSpace()
754 IsNew = true; in cloneConstantExprWithNewAddressSpace()
764 if (!IsNew) in cloneConstantExprWithNewAddressSpace()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPLexerChange.cpp853 bool IsNew; in LeaveSubmodule() local
858 IsNew); in LeaveSubmodule()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h354 bool* IsNew = nullptr);
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1966 bool &IsNew) { in getConverterOperandID() argument
1967 IsNew = Table.insert(CachedHashString(Name)); in getConverterOperandID()
1969 unsigned ID = IsNew ? Table.size() - 1 : find(Table, Name) - Table.begin(); in getConverterOperandID()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h1447 ArrayRef<ModuleMacro *> Overrides, bool &IsNew);