Home | History | Annotate | Download | only in ADT

Lines Matching defs:GetOrInsertNode

71 ///    MyNode *M = MyFoldingSet.GetOrInsertNode(N);
154 /// GetOrInsertNode - If there is an existing simple Node exactly
157 Node *GetOrInsertNode(Node *N);
172 Node *Inserted = GetOrInsertNode(N);
440 /// GetOrInsertNode - If there is an existing simple Node exactly
443 T *GetOrInsertNode(Node *N) {
444 return static_cast<T *>(FoldingSetImpl::GetOrInsertNode(N));
519 /// GetOrInsertNode - If there is an existing simple Node exactly
522 T *GetOrInsertNode(Node *N) {
523 return static_cast<T *>(FoldingSetImpl::GetOrInsertNode(N));
608 /// GetOrInsertNode - If there is an existing simple Node exactly
611 T *GetOrInsertNode(T *N) {
612 T *Result = Set.GetOrInsertNode(N);