Home | History | Annotate | Download | only in Parse

Lines Matching refs:selIdent

931       IdentifierInfo *SelIdent = ParseObjCSelectorPiece(SelLoc);
933 if (!SelIdent) {
942 DS.setSetterName(SelIdent);
951 DS.setGetterName(SelIdent);
1392 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(selLoc);
1395 if (!SelIdent && Tok.isNot(tok::colon)) { // missing selector name.
1409 Selector Sel = PP.getSelectorTable().getNullarySelector(SelIdent);
1452 KeyIdents.push_back(SelIdent);
1472 KeyIdents.push_back(SelIdent);
1489 SelIdent = ParseObjCSelectorPiece(selLoc);
1490 if (!SelIdent && Tok.isNot(tok::colon))
1492 if (!SelIdent) {
3120 IdentifierInfo *selIdent = ParseObjCSelectorPiece(Loc);
3129 KeyIdents.push_back(selIdent);
3198 selIdent = ParseObjCSelectorPiece(Loc);
3199 if (!selIdent && Tok.isNot(tok::colon))
3225 } else if (!selIdent) {
3249 KeyIdents.push_back(selIdent);
3518 IdentifierInfo *SelIdent = ParseObjCSelectorPiece(sLoc);
3519 if (!SelIdent && // missing selector name.
3523 KeyIdents.push_back(SelIdent);
3546 SelIdent = ParseObjCSelectorPiece(Loc);
3547 KeyIdents.push_back(SelIdent);
3548 if (!SelIdent && Tok.isNot(tok::colon) && Tok.isNot(tok::coloncolon))