Searched defs:GetOrInsertNode (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Support/
H A DFoldingSet.cpp358 /// GetOrInsertNode - If there is an existing simple Node exactly
361 FoldingSetImpl::Node *FoldingSetImpl::GetOrInsertNode(FoldingSetImpl::Node *N) { function in class:FoldingSetImpl
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h71 /// 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);
425 /// GetOrInsertNode - If there is an existing simple Node exactly
428 T *GetOrInsertNode(Node *N) { function in class:llvm::FoldingSet
429 return static_cast<T *>(FoldingSetImpl::GetOrInsertNode(N));
505 /// GetOrInsertNode - If there is an existing simple Node exactly
508 T *GetOrInsertNode(Node *N) { function in class:llvm::ContextualFoldingSet
509 return static_cast<T *>(FoldingSetImpl::GetOrInsertNode(
[all...]

Completed in 168 milliseconds