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

Declarations

tools/clang/include/clang/AST/Type.h
 1956   bool isAnyCharacterType() const;

References

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 5069     return Node->isAnyCharacterType();
tools/clang/lib/AST/ExprCXX.cpp
  970   if (ParamTy->isAnyCharacterType())
tools/clang/lib/AST/PrintfFormatString.cpp
  709   if (QT->isPointerType() && (QT->getPointeeType()->isAnyCharacterType())) {
tools/clang/lib/AST/ScanfFormatString.cpp
  438   if (PT->isAnyCharacterType()) {
tools/clang/lib/Sema/SemaCast.cpp
 1836   if (DestTy->isAnyCharacterType() || DestTy->isVoidType() ||
 1837       SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) {
tools/clang/lib/Sema/SemaExpr.cpp
 9541   if (!StringType->getPointeeType()->isAnyCharacterType())
 9548   if (!CharType->isAnyCharacterType() &&
tools/clang/lib/Sema/SemaOverload.cpp
 2081   if (FromType->isAnyCharacterType() && !FromType->isCharType() &&
tools/clang/lib/Sema/SemaTemplate.cpp
 7082   if (T->isAnyCharacterType()) {
tools/clang/tools/extra/clang-tidy/boost/UseToStringCheck.cpp
   19   return Node.isIntegerType() && !Node.isAnyCharacterType() &&
tools/clang/tools/extra/clang-tidy/misc/ThrowByValueCatchByReferenceCheck.cpp
  148     if (!PT->getPointeeType()->isAnyCharacterType())