Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
528 bool IsNew; in generateNode() local
529 ExplodedNode *Node = G.getNode(Loc, State, false, &IsNew); in generateNode()
534 assert(IsNew); in generateNode()
539 if (IsNew) WList->enqueue(Node); in generateNode()
584 bool IsNew; in enqueueStmtNode() local
585 ExplodedNode *Succ = G.getNode(Loc, N->getState(), false, &IsNew); in enqueueStmtNode()
588 if (IsNew) in enqueueStmtNode()
[all …]
H A DExplodedGraph.cpp396 bool* IsNew) { in getNode() argument
423 if (IsNew) *IsNew = true; in getNode()
426 if (IsNew) *IsNew = false; in getNode()
H A DBugReporter.cpp2603 bool IsNew; in BugPathGetter() local
2604 std::tie(PriorityEntry, IsNew) = PriorityMap.insert({Node, Priority}); in BugPathGetter()
2607 if (!IsNew) { in BugPathGetter()
H A DExprEngine.cpp2452 bool IsNew = false; in replayWithoutInlining() local
2453 ExplodedNode *NewNode = G.getNode(NewNodeLoc, NewNodeState, false, &IsNew); in replayWithoutInlining()
2456 if (!IsNew) in replayWithoutInlining()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp717 bool IsNew = false; in cloneConstantExprWithNewAddressSpace() local
727 IsNew = true; in cloneConstantExprWithNewAddressSpace()
734 IsNew = true; in cloneConstantExprWithNewAddressSpace()
744 if (!IsNew) in cloneConstantExprWithNewAddressSpace()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DPPLexerChange.cpp839 bool IsNew; in LeaveSubmodule() local
844 Macro.getOverriddenMacros(), IsNew); in LeaveSubmodule()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h353 bool* IsNew = nullptr);
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1935 bool &IsNew) { in getConverterOperandID() argument
1936 IsNew = Table.insert(CachedHashString(Name)); in getConverterOperandID()
1938 unsigned ID = IsNew ? Table.size() - 1 : find(Table, Name) - Table.begin(); in getConverterOperandID()
/openbsd-src/gnu/llvm/clang/include/clang/Lex/
H A DPreprocessor.h1427 ArrayRef<ModuleMacro *> Overrides, bool &IsNew);