HomeSort by: relevance | last modified time | path
    Searched refs:ObjCTypeParamList (Results 1 - 18 of 18) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 309 ObjCTypeParamList *ObjCInterfaceDecl::getTypeParamList() const {
311 if (ObjCTypeParamList *written = getTypeParamListAsWritten())
323 if (ObjCTypeParamList *written = decl->getTypeParamListAsWritten())
330 void ObjCInterfaceDecl::setTypeParamList(ObjCTypeParamList *TPL) {
1460 // ObjCTypeParamList
1462 ObjCTypeParamList::ObjCTypeParamList(SourceLocation lAngleLoc,
1469 ObjCTypeParamList *ObjCTypeParamList::create(
1476 alignof(ObjCTypeParamList));
    [all...]
DeclPrinter.cpp 50 void PrintObjCTypeParams(ObjCTypeParamList *Params);
1240 void DeclPrinter::PrintObjCTypeParams(ObjCTypeParamList *Params) {
Type.cpp 1517 ObjCTypeParamList *dcTypeParams = nullptr;
1626 ObjCTypeParamList *superClassTypeParams = superClassDecl->getTypeParamList();
1641 ObjCTypeParamList *typeParams = classDecl->getTypeParamList();
ASTImporter.cpp 521 Expected<ObjCTypeParamList *>
522 ImportObjCTypeParamList(ObjCTypeParamList *list);
4879 Expected<ObjCTypeParamList *>
4880 ASTNodeImporter::ImportObjCTypeParamList(ObjCTypeParamList *list) {
4900 return ObjCTypeParamList::create(Importer.getToContext(),
ASTContext.cpp 9123 ObjCTypeParamList *typeParams = iface->getTypeParamList();
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h 657 class ObjCTypeParamList final
658 : private llvm::TrailingObjects<ObjCTypeParamList, ObjCTypeParamDecl *> {
664 ObjCTypeParamList(SourceLocation lAngleLoc,
672 static ObjCTypeParamList *create(ASTContext &ctx,
1220 ObjCTypeParamList *TypeParamList = nullptr;
1230 IdentifierInfo *Id, ObjCTypeParamList *typeParamList,
1264 ObjCTypeParamList *typeParamList,
1277 ObjCTypeParamList *getTypeParamList() const;
1283 void setTypeParamList(ObjCTypeParamList *TPL);
1287 ObjCTypeParamList *getTypeParamListAsWritten() const
    [all...]
ASTNodeTraverser.h 308 void dumpObjCTypeParamList(const ObjCTypeParamList *typeParams) {
RecursiveASTVisitor.h 1533 if (ObjCTypeParamList *typeParamList = D->getTypeParamList()) {
1547 if (ObjCTypeParamList *typeParamList = D->getTypeParamListAsWritten()) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CursorVisitor.h 228 bool VisitObjCTypeParamList(ObjCTypeParamList *typeParamList);
CIndex.cpp 1150 bool CursorVisitor::VisitObjCTypeParamList(ObjCTypeParamList *typeParamList) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclObjC.cpp 770 ObjCTypeParamList *Sema::actOnObjCTypeParamList(Scope *S,
802 return ObjCTypeParamList::create(Context, lAngleLoc, typeParams, rAngleLoc);
805 void Sema::popObjCTypeParamList(Scope *S, ObjCTypeParamList *typeParamList) {
829 ObjCTypeParamList *prevTypeParams,
830 ObjCTypeParamList *newTypeParams,
976 SourceLocation ClassLoc, ObjCTypeParamList *typeParamList,
1016 if (ObjCTypeParamList *prevTypeParamList = PrevIDecl->getTypeParamList()) {
1046 typeParamList = ObjCTypeParamList::create(Context,
1804 SourceLocation ClassLoc, ObjCTypeParamList *typeParamList,
3049 ArrayRef<ObjCTypeParamList *> TypeParamLists
    [all...]
SemaType.cpp 855 ObjCTypeParamList *typeParams = objcClass->getTypeParamList();
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseObjc.cpp 101 ObjCTypeParamList *Params;
111 void enter(ObjCTypeParamList *P) {
135 SmallVector<ObjCTypeParamList *, 8> ClassTypeParams;
148 ObjCTypeParamList *TypeParams = nullptr;
241 ObjCTypeParamList *typeParameterList = nullptr;
421 ObjCTypeParamList *Parser::parseObjCTypeParamListOrProtocolRefs(
555 ObjCTypeParamList *list = Actions.actOnObjCTypeParamList(
570 ObjCTypeParamList *Parser::parseObjCTypeParamList() {
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 50 class ObjCTypeParamList;
1606 ObjCTypeParamList *parseObjCTypeParamList();
1607 ObjCTypeParamList *parseObjCTypeParamListOrProtocolRefs(
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp 843 ObjCTypeParamList *TypeParams = Interface->getTypeParamList();
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 431 ObjCTypeParamList *ReadObjCTypeParamList();
1095 ObjCTypeParamList *ASTDeclReader::ReadObjCTypeParamList() {
1113 return ObjCTypeParamList::create(Reader.getContext(), lAngleLoc,
ASTWriterDecl.cpp 159 void AddObjCTypeParamList(ObjCTypeParamList *typeParams) {
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 9464 ObjCTypeParamList *actOnObjCTypeParamList(Scope *S, SourceLocation lAngleLoc,
9467 void popObjCTypeParamList(Scope *S, ObjCTypeParamList *typeParamList);
9471 SourceLocation ClassLoc, ObjCTypeParamList *typeParamList,
9511 SourceLocation ClassLoc, ObjCTypeParamList *typeParamList,
9537 ArrayRef<ObjCTypeParamList *> TypeParamLists,

Completed in 89 milliseconds