Home
last modified time | relevance | path

Searched refs:WCharTy (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DBuiltinTypes.def72 SHARED_SINGLETON_TYPE(UNSIGNED_TYPE(WChar_U, WCharTy))
107 SHARED_SINGLETON_TYPE(SIGNED_TYPE(WChar_S, WCharTy))
H A DASTContext.h1121 CanQualType WCharTy; // [C++ 3.9.1p5]. variable
1832 QualType getWCharType() const { return WCharTy; } in getWCharType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp487 T == C.ShortTy || T == C.UnsignedShortTy || T == C.WCharTy || in matchesType()
515 if (T != C.WCharTy && T != C.WideCharTy) in matchesType()
H A DASTContext.cpp1299 InitBuiltinType(WCharTy, BuiltinType::WChar_S); in InitBuiltinTypes()
1301 InitBuiltinType(WCharTy, BuiltinType::WChar_U); in InitBuiltinTypes()
1303 WideCharTy = WCharTy; in InitBuiltinTypes()
6379 return WCharTy; in getSignedWCharType()
H A DASTImporter.cpp1139 return Importer.getToContext().WCharTy; in VisitBuiltinType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp139 if (width == ast.getTypeSize(ast.WCharTy)) in GetBuiltinTypeForPDBEncodingAndBitSize()
141 ast.WCharTy.getAsOpaquePtr()); in GetBuiltinTypeForPDBEncodingAndBitSize()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp1662 const QualType WCharTy = ACtx.WCharTy; in initFunctionSummaries() local
1680 const QualType Wchar_tPtrTy = getPointerTy(WCharTy); // wchar_t * in initFunctionSummaries()
1682 getPointerTy(getConstTy(WCharTy)); // const wchar_t * in initFunctionSummaries()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp4336 llvm::Type *WCharTy = ConvertType(getContext().WCharTy); in EmitBuiltinExpr() local
4354 getContext().getTypeAlignInChars(getContext().WCharTy); in EmitBuiltinExpr()
4355 Value *StrCh = Builder.CreateAlignedLoad(WCharTy, StrPhi, WCharAlign); in EmitBuiltinExpr()
4356 Value *FoundChr = Builder.CreateConstInBoundsGEP1_32(WCharTy, StrPhi, 0); in EmitBuiltinExpr()
4361 Value *NextStr = Builder.CreateConstInBoundsGEP1_32(WCharTy, StrPhi, 1); in EmitBuiltinExpr()
4382 llvm::Type *WCharTy = ConvertType(getContext().WCharTy); in EmitBuiltinExpr() local
4404 getContext().getTypeAlignInChars(getContext().WCharTy); in EmitBuiltinExpr()
4405 Value *DstCh = Builder.CreateAlignedLoad(WCharTy, DstPhi, WCharAlign); in EmitBuiltinExpr()
4406 Value *SrcCh = Builder.CreateAlignedLoad(WCharTy, SrcPhi, WCharAlign); in EmitBuiltinExpr()
4415 Value *NextDst = Builder.CreateConstInBoundsGEP1_32(WCharTy, DstPhi, 1); in EmitBuiltinExpr()
[all …]
H A DItaniumCXXABI.cpp4542 getContext().BoolTy, getContext().WCharTy, in EmitFundamentalRTTIDescriptors()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp965 QualTypeMatchesBitSize(bit_size, ast, ast.WCharTy) && in GetBuiltinTypeForDWARFEncodingAndBitSize()
968 return GetType(ast.WCharTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
1021 if (QualTypeMatchesBitSize(bit_size, ast, ast.WCharTy)) { in GetBuiltinTypeForDWARFEncodingAndBitSize()
1024 return GetType(ast.WCharTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp915 Result = Context.WCharTy; in ConvertDeclSpecToType()
H A DSemaOverload.cpp8852 ArithmeticTypes.push_back(S.Context.WCharTy); in InitArithmeticTypes()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp7217 T = Context.WCharTy; in GetType()