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

References

tools/clang/include/clang/AST/BuiltinTypes.def
  104 SIGNED_TYPE(SChar, SignedCharTy)
tools/clang/lib/AST/ASTContext.cpp
 1219   InitBuiltinType(SignedCharTy,        BuiltinType::SChar);
 1364                        SignedCharTy : BoolTy);
 7880   case TargetInfo::SignedChar: return SignedCharTy;
 9530       Type = Context.SignedCharTy;
tools/clang/lib/AST/ASTImporter.cpp
 1017       return Importer.getToContext().SignedCharTy;
tools/clang/lib/AST/FormatString.cpp
  393             return T == C.UnsignedCharTy || T == C.SignedCharTy ? Match
tools/clang/lib/AST/PrintfFormatString.cpp
  598         return ArgType::PtrTo(Ctx.SignedCharTy);
tools/clang/lib/AST/ScanfFormatString.cpp
  378           return ArgType::PtrTo(Ctx.SignedCharTy);
tools/clang/lib/CodeGen/CGBuiltin.cpp
 1411     Types[Context.SignedCharTy] = "%hhd";
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
 3825       getContext().SignedCharTy,       getContext().ShortTy,
tools/clang/lib/Sema/SemaChecking.cpp
 1620     return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
 1632     return IsPolyUnsigned ? Context.UnsignedCharTy : Context.SignedCharTy;
tools/clang/lib/Sema/SemaDecl.cpp
17440       BestType = Context.SignedCharTy;
tools/clang/lib/Sema/SemaOverload.cpp
 7966     ArithmeticTypes.push_back(S.Context.SignedCharTy);
tools/clang/lib/Sema/SemaType.cpp
 1282       Result = Context.SignedCharTy;
tools/clang/lib/Serialization/ASTReader.cpp
 7300       T = Context.SignedCharTy;
tools/lldb/source/Symbol/ClangASTContext.cpp
  884     if (QualTypeMatchesBitSize(bit_size, ast, ast->SignedCharTy))
  886                           ast->SignedCharTy.getAsOpaquePtr());
 1127           if (QualTypeMatchesBitSize(bit_size, ast, ast->SignedCharTy))
 1128             return CompilerType(this, ast->SignedCharTy.getAsOpaquePtr());
 1158       if (QualTypeMatchesBitSize(bit_size, ast, ast->SignedCharTy))
 1159         return CompilerType(this, ast->SignedCharTy.getAsOpaquePtr());
 1959     return ast->SignedCharTy.getAsOpaquePtr();
 2266       if (bit_size == ast->getTypeSize(ast->SignedCharTy))
 2268                             ast->SignedCharTy.getAsOpaquePtr());
tools/lldb/unittests/Symbol/TestClangASTContext.cpp
  102                                    context->SignedCharTy));