Searched refs:getNext (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A Dilist_node.h47 NodeTy *getNext() { return Next; } function in class:llvm::ilist_node
48 const NodeTy *getNext() const { return Next; } function in class:llvm::ilist_node
62 if (!Prev->getNext())
73 if (!Prev->getNext())
81 NodeTy *Next = getNext();
84 if (!Next->getNext())
92 const NodeTy *Next = getNext();
95 if (!Next->getNext())
H A DEquivalenceClasses.h89 assert(getNext() == 0 && "Already has a next pointer!");
96 assert(RHS.isLeader() && RHS.getNext() == 0 && "Not a singleton!");
104 const ECValue *getNext() const { function in class:llvm::EquivalenceClasses::ECValue
232 L2LV.Next = L2LV.getNext();
262 Node = Node->getNext();
H A Dilist.h16 // specialized, the list defaults to using the getPrev(), getNext() method calls
58 static NodeTy *getNext(NodeTy *N) { return N->getNext(); } function in struct:llvm::ilist_nextprev_traits
60 static const NodeTy *getNext(const NodeTy *N) { return N->getNext(); } function in struct:llvm::ilist_nextprev_traits
219 NodePtr = Traits::getNext(NodePtr);
436 NodeTy *NextNode = this->getNext(Node);
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DRegAllocRegistry.h45 RegisterRegAlloc *getNext() const { function in class:llvm::RegisterRegAlloc
46 return (RegisterRegAlloc *)MachinePassRegistryNode::getNext();
H A DSchedulerRegistry.h49 RegisterScheduler *getNext() const { function in class:llvm::RegisterScheduler
50 return (RegisterScheduler *)MachinePassRegistryNode::getNext();
H A DMachinePassRegistry.h69 MachinePassRegistryNode *getNext() const { return Next; } function in class:llvm::MachinePassRegistryNode
133 Node; Node = Node->getNext()) {
H A DMachineScheduler.h83 MachineSchedRegistry *getNext() const { function in class:llvm::MachineSchedRegistry
84 return (MachineSchedRegistry *)MachinePassRegistryNode::getNext();
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DMachinePassRegistry.cpp24 for(MachinePassRegistryNode *R = getList(); R; R = R->getNext()) {
51 *I = (*I)->getNext();
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DRedeclarable.h36 decl_type *getNext() const { return NextAndIsPrevious.getPointer(); } function in class:clang::Redeclarable::DeclLink
68 return RedeclLink.getNext();
101 return getFirstDeclaration()->RedeclLink.getNext();
106 return getFirstDeclaration()->RedeclLink.getNext();
147 decl_type *Next = Current->RedeclLink.getNext();
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DObjCMethodList.h33 ObjCMethodList *getNext() const { return NextAndExtraBits.getPointer(); } function in struct:clang::ObjCMethodList
H A DAttributeList.h323 AttributeList *getNext() const { return NextInPosition; } function in class:clang::AttributeList
631 next = next->getNext();
676 assert(newAttr->getNext() == 0);
685 while (AttributeList *next = lastInNewList->getNext())
/freebsd-10.0-release/contrib/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp45 if (RecordMatcher *RM = dyn_cast<RecordMatcher>(MC->getNext()))
50 if (CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(MC->getNext()))
60 MC->setNext(MC->getNext()->takeNext());
68 dyn_cast<MoveParentMatcher>(MC->getNext())) {
77 if (isa<EmitNodeMatcher>(N) && isa<MarkGlueResultsMatcher>(N->getNext()) &&
78 isa<CompleteMatchMatcher>(N->getNext()->getNext())) {
94 dyn_cast<CompleteMatchMatcher>(EN->getNext())) {
158 isa<CheckOpcodeMatcher>(N->getNext())) {
208 if (!CPPM->getNext()
[all...]
H A DDAGISelMatcher.cpp43 for (; Cur && Cur->getNext() != Other; Cur = Cur->getNext())
56 for (;; Other = Other->getNext()) {
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DYAMLParser.cpp260 Token getNext();
543 Token T = scanner.getNext();
624 llvm::yaml::Token T = scanner.getNext();
753 Token Scanner::getNext() { function in class:Scanner
1576 scanner->getNext();
1603 Token Node::getNext() { function in class:Node
1604 return Doc->getNext();
1813 getNext(); // skip TK_Key.
1848 getNext(); // skip TK_Value.
1882 getNext();
2029 Token Document::getNext() { function in class:Document
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Object/
H A DArchive.h98 Child getNext() const { function in class:llvm::object::Archive::Child
165 child = child.getNext();
186 Symbol getNext() const;
206 symbol = symbol.getNext();
H A DObjectFile.h71 if (error_code ec = Current.getNext(next))
106 error_code getNext(RelocationRef &Result) const;
149 error_code getNext(SectionRef &Result) const;
213 error_code getNext(SymbolRef &Result) const;
258 error_code getNext(LibraryRef &Result) const;
415 inline error_code SymbolRef::getNext(SymbolRef &Result) const { function in class:llvm::object::SymbolRef
478 inline error_code SectionRef::getNext(SectionRef &Result) const { function in class:llvm::object::SectionRef
557 inline error_code RelocationRef::getNext(RelocationRef &Result) const { function in class:llvm::object::RelocationRef
612 inline error_code LibraryRef::getNext(LibraryRef &Result) const { function in class:llvm::object::LibraryRef
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DUse.h114 Use *getNext() const { return Next; } function in class:llvm::Use
196 U = U->getNext();
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DArrayRecycler.h91 Capacity getNext() const { return Capacity(Index + 1); } function in class:llvm::ArrayRecycler::Capacity
H A DRecycler.h43 static RecyclerStruct *getNext(const RecyclerStruct *t) { return t->Next; } function in struct:llvm::ilist_traits
H A DYAMLParser.h130 Token getNext();
494 Token getNext();
H A DTargetRegistry.h215 // getNext - Return the next registered target.
216 const Target *getNext() const { return Next; } function in class:llvm::Target
458 Current = Current->getNext();
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmtAttr.cpp70 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h51 PointerRec *getNext() const { return NextInList; } function in class:llvm::AliasSet::PointerRec
211 CurNode = CurNode->getNext();
/freebsd-10.0-release/contrib/llvm/lib/Object/
H A DArchive.cpp178 return c.getNext();
238 Archive::Symbol Archive::Symbol::getNext() const { function in class:Archive::Symbol
/freebsd-10.0-release/contrib/llvm/lib/Target/
H A DTargetMachineC.cpp67 return wrap(unwrap(T)->getNext());

Completed in 324 milliseconds

12