HomeSort by relevance Sort by last modified time
    Searched refs:ObjCMethodList (Results 1 - 8 of 8) sorted by null

  /external/clang/include/clang/Sema/
ObjCMethodList.h 1 //===--- 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 {
27 llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits;
29 ObjCMethodList() : Method(nullptr) { }
30 ObjCMethodList(ObjCMethodDecl *M, ObjCMethodList *C)
33 ObjCMethodList *getNext() const { return NextAndExtraBits.getPointer(); }
35 void setNext(ObjCMethodList *L) { NextAndExtraBits.setPointer(L);
    [all...]
ExternalSemaSource.h 29 struct ObjCMethodList;
Sema.h 39 #include "clang/Sema/ObjCMethodList.h"
873 typedef std::pair<ObjCMethodList, ObjCMethodList> GlobalMethods;
    [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaExprObjC.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp     [all...]

Completed in 588 milliseconds