Home
last modified time | relevance | path

Searched refs:InList (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/AST/
DDeclObjC.cpp27 void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) { in set() argument
34 memcpy(List, InList, sizeof(void*)*Elts); in set()
37 void ObjCProtocolList::set(ObjCProtocolDecl* const* InList, unsigned Elts, in set() argument
44 set(InList, Elts, Ctx); in set()
/external/clang/include/clang/AST/
DDeclObjC.h49 void set(void *const* InList, unsigned Elts, ASTContext &Ctx);
60 void set(T* const* InList, unsigned Elts, ASTContext &Ctx) { in set() argument
61 ObjCListBase::set(reinterpret_cast<void*const*>(InList), Elts, Ctx); in set()
88 void set(ObjCProtocolDecl* const* InList, unsigned Elts,