Searched defs:InList (Results 1 - 2 of 2) sorted by relevance
/external/clang/lib/AST/ |
H A D | DeclObjC.cpp | 27 void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) { argument 34 memcpy(List, InList, sizeof(void*)*Elts); 37 void ObjCProtocolList::set(ObjCProtocolDecl* const* InList, unsigned Elts, argument 44 set(InList, Elts, Ctx);
|
/external/clang/include/clang/AST/ |
H A D | DeclObjC.h | 49 void set(void *const* InList, unsigned Elts, ASTContext &Ctx); 60 void set(T* const* InList, unsigned Elts, ASTContext &Ctx) { argument 61 ObjCListBase::set(reinterpret_cast<void*const*>(InList), Elts, Ctx); 88 void set(ObjCProtocolDecl* const* InList, unsigned Elts,
|
Completed in 36 milliseconds