Home
last modified time | relevance | path

Searched refs:ShortTy (Results 1 – 18 of 18) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDClangASTContext.cpp601 if (QualTypeMatchesBitSize (bit_size, ast, ast->ShortTy)) in GetBuiltinTypeForEncodingAndBitSize()
602 return ClangASTType (ast, ast->ShortTy.getAsOpaquePtr()); in GetBuiltinTypeForEncodingAndBitSize()
762 clang_type = ast->ShortTy.getAsOpaquePtr(); in GetBasicType()
925 QualTypeMatchesBitSize (bit_size, ast, ast->ShortTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
926 return ClangASTType (ast, ast->ShortTy.getAsOpaquePtr()); in GetBuiltinTypeForDWARFEncodingAndBitSize()
945 if (QualTypeMatchesBitSize (bit_size, ast, ast->ShortTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
946 return ClangASTType (ast, ast->ShortTy.getAsOpaquePtr()); in GetBuiltinTypeForDWARFEncodingAndBitSize()
1998 if (bit_size == ast->getTypeSize(ast->ShortTy)) in GetIntTypeFromBitSize()
1999 return ClangASTType(ast, ast->ShortTy.getAsOpaquePtr()); in GetIntTypeFromBitSize()
/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDScanfFormatString.cpp238 return ArgType::PtrTo(Ctx.ShortTy); in getArgType()
371 return ArgType::PtrTo(Ctx.ShortTy); in getArgType()
HDPrintfFormatString.cpp416 case LengthModifier::AsShort: return Ctx.ShortTy; in getArgType()
488 return ArgType::PtrTo(Ctx.ShortTy); in getArgType()
HDFormatString.cpp319 return T == C.ShortTy ? Match : NoMatch; in matchesType()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCodeGenTBAA.cpp119 return getTBAAInfo(Context.ShortTy); in getTBAAInfo()
HDCGObjCMac.cpp175 llvm::Type *ShortTy, *IntTy, *LongTy, *LongLongTy; member in __anonb2414f100111::ObjCCommonTypesHelper
4329 Values[2] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumClasses); in EmitModuleSymbols()
4330 Values[3] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumCategories); in EmitModuleSymbols()
4976 ShortTy = Types.ConvertType(Ctx.ShortTy); in ObjCCommonTypesHelper()
5210 LongTy, SelectorPtrTy, ShortTy, ShortTy, in ObjCTypesHelper()
HDItaniumCXXABI.cpp3144 getContext().SignedCharTy, getContext().ShortTy, in EmitFundamentalRTTIDescriptors()
HDCodeGenModule.cpp2681 CharUnits Align = getContext().getTypeAlignInChars(getContext().ShortTy); in GetAddrOfConstantCFString()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDBuiltinTypes.def108 SIGNED_TYPE(Short, ShortTy)
HDASTContext.h825 CanQualType SignedCharTy, ShortTy, IntTy, LongTy, LongLongTy, Int128Ty; variable
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
HDBasicObjCFoundationChecks.cpp388 case kCFNumberShortType: T = Ctx.ShortTy; break; in GetCFNumberSize()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDASTContext.cpp976 InitBuiltinType(ShortTy, BuiltinType::Short); in InitBuiltinTypes()
4585 return 3 + (getIntWidth(ShortTy) << 3); in getIntegerRank()
6526 case TargetInfo::SignedShort: return ShortTy; in getFromTargetType()
7955 Type = Context.ShortTy; in DecodeTypeFromStr()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaChecking.cpp612 return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy; in getNeonEltType()
624 return IsPolyUnsigned ? Context.UnsignedShortTy : Context.ShortTy; in getNeonEltType()
HDSemaDecl.cpp13490 Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy in getNextLargerIntegralType()
14080 BestType = Context.ShortTy; in ActOnEnumBody()
HDSemaType.cpp1274 case DeclSpec::TSW_short: Result = Context.ShortTy; break; in ConvertDeclSpecToType()
HDSemaExpr.cpp8840 else if (TypeSize == Context.getTypeSize(Context.ShortTy)) in GetSignedVectorType()
8841 return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements()); in GetSignedVectorType()
HDSemaOverload.cpp7079 &ASTContext::ShortTy, in getArithmeticType()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReader.cpp5713 case PREDEF_TYPE_SHORT_ID: T = Context.ShortTy; break; in GetType()