Home
last modified time | relevance | path

Searched refs:NodeID (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp67 template <class T> struct NodeID;
70 const std::string NodeID<Expr>::value = "expr";
71 const std::string NodeID<Decl>::value = "decl";
76 const StringRef ID = NodeID<T>::value; in tryEachMatch()
143 NodeID<Expr>::value, in isUnevaluated()
168 .bind(NodeID<Expr>::value)), in isUnevaluated()
283 .bind(NodeID<Expr>::value)), in findMemberMutation()
292 .bind(NodeID<Expr>::value)), in findArrayElementMutation()
305 .bind(NodeID<Expr>::value)), in findCastMutation()
360 .bind(NodeID<Decl>::value))), in findReferenceMutation()
[all …]
H A DThreadSafetyTIL.cpp273 N->NodeID = P->SizeOfSubTree; in computeNodeSize()
283 N->NodeID += P->NodeID; // Fix NodeIDs relative to starting node. in computeNodeID()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h71 PDFileEntry(llvm::FoldingSetNodeID &NodeID) : NodeID(NodeID) {} in PDFileEntry() argument
79 const llvm::FoldingSetNodeID NodeID; variable
82 void Profile(llvm::FoldingSetNodeID &ID) { ID = NodeID; } in Profile()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp502 llvm::FoldingSetNodeID NodeID; in addDiagnostic() local
503 NodeID.Add(PD); in addDiagnostic()
505 PDFileEntry *Entry = Set.FindNodeOrInsertPos(NodeID, InsertPos); in addDiagnostic()
508 Entry = new (Entry) PDFileEntry(NodeID); in addDiagnostic()
523 llvm::FoldingSetNodeID NodeID; in getFiles() local
524 NodeID.Add(PD); in getFiles()
526 PDFileEntry *Entry = Set.FindNodeOrInsertPos(NodeID, InsertPos); in getFiles()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1510 int NodeID = 0; member
1521 return OtherNode.NodeID > NodeID && in isParentOf()
1522 OtherNode.NodeID < NodeID + SizeOfSubTree; in isParentOf()
1526 return OtherNode.NodeID >= NodeID && in isParentOfOrEqual()
1527 OtherNode.NodeID < NodeID + SizeOfSubTree; in isParentOfOrEqual()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1165 unsigned NodeID; member
1170 RootData(unsigned id): NodeID(id), in RootData()
1173 unsigned getSparseSetIndex() const { return NodeID; } in getSparseSetIndex()
1263 unsigned TreeID = SubtreeClasses[Root.NodeID]; in finalize()