Home | History | Annotate | Download | only in Sema

Lines Matching refs:QualLoc

1152       typedef std::pair<DeclSpec::TQ, SourceLocation> QualLoc;
1153 QualLoc Quals[] = {
1154 QualLoc(DeclSpec::TQ_const, DS.getConstSpecLoc()),
1155 QualLoc(DeclSpec::TQ_volatile, DS.getVolatileSpecLoc()),
1156 QualLoc(DeclSpec::TQ_atomic, DS.getAtomicSpecLoc())
2045 SourceLocation QualLoc = QualKinds[I].Loc;
2046 if (!QualLoc.isInvalid()) {
2047 FixIts[NumQuals] = FixItHint::CreateRemoval(QualLoc);
2049 getSourceManager().isBeforeInTranslationUnit(QualLoc, Loc))
2050 Loc = QualLoc;