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

References

tools/clang/include/clang/AST/ASTContext.h
 1574   QualType getWideCharType() const { return WideCharTy; }
tools/clang/lib/AST/ASTContext.cpp
 1279     WideCharTy = WCharTy;
 1282     WideCharTy = getFromTargetType(Target.getWCharType());
tools/clang/lib/AST/PrintfFormatString.cpp
  651       return ArgType(Ctx.WideCharTy, "wchar_t");
tools/clang/lib/Sema/SemaDeclCXX.cpp
14066         Context.hasSameType(ParamType, Context.WideCharTy) ||
14132           Context.hasSameType(InnerType, Context.WideCharTy) ||
tools/clang/lib/Sema/SemaExpr.cpp
 3229           Context.adjustStringLiteralBaseType(Context.WideCharTy.withConst());
 3282     Ty = Context.WideCharTy; // L'x' -> wchar_t in C and C++.