Home | History | Annotate | Download | only in Sema

Lines Matching full:ivar

5998     for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar; 
5999 Ivar = Ivar->getNextIvar()) {
6000 Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), nullptr),
6003 // Determine whether we've seen an ivar with a name similar to the
6005 if ((PropertyName == Ivar->getIdentifier() ||
6006 NameWithPrefix == Ivar->getName() ||
6007 NameWithSuffix == Ivar->getName())) {
6015 Results.data()[Results.size() - 1].Declaration == Ivar)
6022 // Create ivar result _propName, that the user can use to synthesize
6023 // an ivar of the appropriate type.