Home | History | Annotate | Download | only in Sema

Lines Matching full:ivar

6066     for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar; 
6067 Ivar = Ivar->getNextIvar()) {
6068 Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), 0),
6071 // Determine whether we've seen an ivar with a name similar to the
6073 if ((PropertyName == Ivar->getIdentifier() ||
6074 NameWithPrefix == Ivar->getName() ||
6075 NameWithSuffix == Ivar->getName())) {
6083 Results.data()[Results.size() - 1].Declaration == Ivar)
6090 // Create ivar result _propName, that the user can use to synthesize
6091 // an ivar of the appropriate type.