Home | History | Annotate | Download | only in Sema

Lines Matching refs:Ivar

5899     for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar; 
5900 Ivar = Ivar->getNextIvar()) {
5901 Results.AddResult(Result(Ivar, 0), CurContext, 0, false);
5903 // Determine whether we've seen an ivar with a name similar to the
5905 if ((PropertyName == Ivar->getIdentifier() ||
5906 NameWithPrefix == Ivar->getName() ||
5907 NameWithSuffix == Ivar->getName())) {
5915 Results.data()[Results.size() - 1].Declaration == Ivar)
5922 // Create ivar result _propName, that the user can use to synthesize
5923 // an ivar of the appropriate type.