Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp108 bool IsNew; in ExecuteWorkList() local
109 ExplodedNode *Node = G.getNode(StartLoc, InitState, false, &IsNew); in ExecuteWorkList()
110 assert(IsNew); in ExecuteWorkList()
499 bool IsNew; in generateNode() local
500 ExplodedNode *Node = G.getNode(Loc, State, false, &IsNew); in generateNode()
505 assert(IsNew); in generateNode()
510 if (IsNew) WList->enqueue(Node); in generateNode()
555 bool IsNew; in enqueueStmtNode() local
556 ExplodedNode *Succ = G.getNode(Loc, N->getState(), false, &IsNew); in enqueueStmtNode()
559 if (IsNew) in enqueueStmtNode()
[all …]
H A DExplodedGraph.cpp397 bool* IsNew) { in getNode() argument
424 if (IsNew) *IsNew = true; in getNode()
427 if (IsNew) *IsNew = false; in getNode()
H A DBugReporter.cpp2577 bool IsNew; in BugPathGetter() local
2578 std::tie(PriorityEntry, IsNew) = PriorityMap.insert({Node, Priority}); in BugPathGetter()
2581 if (!IsNew) { in BugPathGetter()
H A DExprEngine.cpp1942 bool IsNew = false; in replayWithoutInlining() local
1943 ExplodedNode *NewNode = G.getNode(NewNodeLoc, NewNodeState, false, &IsNew); in replayWithoutInlining()
1946 if (!IsNew) in replayWithoutInlining()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp675 bool IsNew = false; in cloneConstantExprWithNewAddressSpace() local
685 IsNew = true; in cloneConstantExprWithNewAddressSpace()
692 IsNew = true; in cloneConstantExprWithNewAddressSpace()
702 if (!IsNew) in cloneConstantExprWithNewAddressSpace()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DPPLexerChange.cpp800 bool IsNew; in LeaveSubmodule() local
805 Macro.getOverriddenMacros(), IsNew); in LeaveSubmodule()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h355 bool* IsNew = nullptr);
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1918 bool &IsNew) { in getConverterOperandID() argument
1919 IsNew = Table.insert(CachedHashString(Name)); in getConverterOperandID()
1921 unsigned ID = IsNew ? Table.size() - 1 : find(Table, Name) - Table.begin(); in getConverterOperandID()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DPreprocessor.h1153 ArrayRef<ModuleMacro *> Overrides, bool &IsNew);