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

/external/clang/include/clang/Sema/
H A DObjCMethodList.h1 //===--- ObjCMethodList.h - A singly linked list of methods -----*- C++ -*-===//
10 // This file defines ObjCMethodList, a singly-linked list of methods.
23 /// ObjCMethodList - a linked list of methods with different signatures.
24 struct ObjCMethodList { struct in namespace:clang
27 llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits;
29 ObjCMethodList() : Method(nullptr) { } function in struct:clang::ObjCMethodList
30 ObjCMethodList(ObjCMethodDecl *M, ObjCMethodList *C) function in struct:clang::ObjCMethodList
33 ObjCMethodList *getNext() const { return NextAndExtraBits.getPointer(); }
35 void setNext(ObjCMethodList *
[all...]

Completed in 48 milliseconds