Searched refs:IsNew (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp108 bool IsNew; local
109 ExplodedNode *Node = G.getNode(StartLoc, InitState, false, &IsNew);
110 assert(IsNew);
498 bool IsNew; local
499 ExplodedNode *Node = G.getNode(Loc, State, false, &IsNew);
504 assert(IsNew);
509 if (IsNew) WList->enqueue(Node);
554 bool IsNew; local
555 ExplodedNode *Succ = G.getNode(Loc, N->getState(), false, &IsNew);
558 if (IsNew)
609 bool IsNew; local
650 bool IsNew; local
668 bool IsNew; local
[all...]
H A DExplodedGraph.cpp397 bool* IsNew) {
424 if (IsNew) *IsNew = true;
427 if (IsNew) *IsNew = false;
394 getNode(const ProgramPoint &L, ProgramStateRef State, bool IsSink, bool* IsNew) argument
H A DBugReporter.cpp2579 bool IsNew; local
2580 std::tie(PriorityEntry, IsNew) = PriorityMap.insert({Node, Priority});
2583 if (!IsNew) {
H A DExprEngine.cpp1937 bool IsNew = false; local
1938 ExplodedNode *NewNode = G.getNode(NewNodeLoc, NewNodeState, false, &IsNew);
1941 if (!IsNew)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp652 bool IsNew = false; local
662 IsNew = true;
669 IsNew = true;
677 // If !IsNew, we will replace the Value with itself. However, replaced values
679 if (!IsNew)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPLexerChange.cpp799 bool IsNew;
804 Macro.getOverriddenMacros(), IsNew);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h351 /// this pair exists, it is created. IsNew is set to true if
355 bool* IsNew = nullptr);
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1923 bool &IsNew) {
1924 IsNew = Table.insert(CachedHashString(Name));
1926 unsigned ID = IsNew ? Table.size() - 1 : find(Table, Name) - Table.begin();
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h1144 ArrayRef<ModuleMacro *> Overrides, bool &IsNew);

Completed in 286 milliseconds