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

References

tools/clang/include/clang/Basic/TargetInfo.h
  299   IntType getWCharType() const { return WCharType; }
  560   unsigned getWCharWidth() const { return getTypeWidth(WCharType); }
  561   unsigned getWCharAlign() const { return getTypeAlign(WCharType); }
tools/clang/lib/Basic/TargetInfo.cpp
   92   WCharType = SignedInt;
  337   case 1: WCharType = Opts.WCharIsSigned ? SignedChar : UnsignedChar; break;
  338   case 2: WCharType = Opts.WCharIsSigned ? SignedShort : UnsignedShort; break;
  339   case 4: WCharType = Opts.WCharIsSigned ? SignedInt : UnsignedInt; break;
tools/clang/lib/Basic/Targets/AArch64.cpp
   44       WCharType = UnsignedInt;
tools/clang/lib/Basic/Targets/ARM.cpp
   33     WCharType = UnsignedInt;
   78   WCharType = SignedInt;
 1199   this->WCharType = TargetInfo::UnsignedShort;
tools/clang/lib/Basic/Targets/NVPTX.cpp
  130   WCharType = HostTarget->getWCharType();
tools/clang/lib/Basic/Targets/OSTargets.h
  547     this->WCharType = TargetInfo::UnsignedShort;
  643       this->WCharType = this->WIntType = this->SignedInt;
  645       this->WCharType = this->WIntType = this->SignedLong;
  709       this->WCharType = this->UnsignedInt;
  711       this->WCharType = this->UnsignedShort;
  736     this->WCharType = TargetInfo::UnsignedShort;
tools/clang/lib/Basic/Targets/RISCV.h
   42     WCharType = SignedInt;
tools/clang/lib/Basic/Targets/X86.h
  518     this->WCharType = TargetInfo::UnsignedShort;
  786     this->WCharType = TargetInfo::UnsignedShort;
tools/clang/lib/Basic/Targets/XCore.h
   37     WCharType = UnsignedChar;