reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/AST/FormatString.cpp
  379       if (T == argTy)
  391             if (T == C.UnsignedShortTy || T == C.ShortTy)
  391             if (T == C.UnsignedShortTy || T == C.ShortTy)
  393             return T == C.UnsignedCharTy || T == C.SignedCharTy ? Match
  393             return T == C.UnsignedCharTy || T == C.SignedCharTy ? Match
  396             return T == C.UnsignedShortTy ? Match : NoMatch;
  398             return T == C.ShortTy ? Match : NoMatch;
  400             return T == C.UnsignedIntTy ? Match : NoMatch;
  402             return T == C.IntTy ? Match : NoMatch;
  404             return T == C.UnsignedLongTy ? Match : NoMatch;
  406             return T == C.LongTy ? Match : NoMatch;
  408             return T == C.UnsignedLongLongTy ? Match : NoMatch;
  410             return T == C.LongLongTy ? Match : NoMatch;
  498   if (T.isNull())
  501   QualType Vec = C.getExtVectorType(T, NumElts);
  516       Res = T;