Searched refs:UnsignedIntTy (Results 1 - 21 of 21) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp318 return ast_ctx.UnsignedIntTy;
346 return ast_ctx.UnsignedIntTy; // FIXME: the spec is fairly vague here.
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DPrintfFormatString.cpp446 return Ctx.UnsignedIntTy;
448 return ArgType(Ctx.UnsignedIntTy, "unsigned __int32");
464 : ArgType(Ctx.UnsignedIntTy, "unsigned __int32");
H A DFormatString.cpp321 return T == C.UnsignedIntTy ? Match : NoMatch;
H A DScanfFormatString.cpp273 return ArgType::PtrTo(Ctx.UnsignedIntTy);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h121 QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp879 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy));
882 Context->UnsignedIntTy, SourceLocation());
2751 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy));
2754 Context->UnsignedIntTy, SourceLocation());
2809 Context->UnsignedIntTy, SourceLocation());
2877 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy));
2880 Context->UnsignedIntTy, SourceLocation());
2959 Context->UnsignedIntTy, SourceLocation());
7652 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy));
7655 Context->UnsignedIntTy, SourceLocatio
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp765 if (QualTypeMatchesBitSize (bit_size, ast, ast->UnsignedIntTy))
766 return CompilerType (ast, ast->UnsignedIntTy);
950 clang_type = ast->UnsignedIntTy.getAsOpaquePtr();
1041 if (QualTypeMatchesBitSize (bit_size, ast, ast->UnsignedIntTy))
1042 return CompilerType (ast, ast->UnsignedIntTy);
1181 if (QualTypeMatchesBitSize (bit_size, ast, ast->UnsignedIntTy))
1182 return CompilerType (ast, ast->UnsignedIntTy);
1192 if (QualTypeMatchesBitSize (bit_size, ast, ast->UnsignedIntTy))
1193 return CompilerType (ast, ast->UnsignedIntTy);
2258 if (bit_size == ast->getTypeSize(ast->UnsignedIntTy))
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp1016 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt);
4131 return UnsignedIntTy;
4742 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy;
4774 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy,
4793 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy;
5393 PointeeTy = UnsignedIntTy;
6272 FieldTypes[0] = Context->UnsignedIntTy;
6276 FieldTypes[1] = Context->UnsignedIntTy;
6645 case TargetInfo::UnsignedInt: return UnsignedIntTy;
7984 return UnsignedIntTy;
[all...]
H A DRecordLayoutBuilder.cpp1382 Context.UnsignedCharTy, Context.UnsignedShortTy, Context.UnsignedIntTy,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp3170 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
3261 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
3299 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
3336 getContext().UnsignedIntTy, getContext().LongTy,
H A DCodeGenModule.cpp2916 llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy);
3029 FieldTypes[2] = Context.UnsignedIntTy;
3074 llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy);
H A DCGBuiltin.cpp991 CGM.EmitConstantExpr(E->getArg(0), getContext().UnsignedIntTy, this);
997 CGM.EmitConstantExpr(E->getArg(0), getContext().UnsignedIntTy, this);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSema.cpp229 Context.getAtomicType(Context.UnsignedIntTy));
H A DSemaChecking.cpp657 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
4191 .Case("UInt32", Context.UnsignedIntTy)
4273 ICE->getType() == S.Context.UnsignedIntTy) {
H A DSemaOverload.cpp1880 Context.IntTy, Context.UnsignedIntTy,
7213 &ASTContext::UnsignedIntTy,
H A DSemaDecl.cpp13882 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy,
14492 BestType = Context.UnsignedIntTy;
14496 ? Context.UnsignedIntTy : Context.IntTy;
H A DSemaType.cpp1313 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
H A DSemaExpr.cpp3378 Ty = Context.UnsignedIntTy;
H A DTreeTransform.h11202 SemaRef.Context.UnsignedIntTy, SemaRef.Context.UnsignedLongTy,
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTContext.h890 CanQualType UnsignedCharTy, UnsignedShortTy, UnsignedIntTy, UnsignedLongTy; member in class:clang::ASTContext::DynTypedNodeList
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp5972 T = Context.UnsignedIntTy;

Completed in 381 milliseconds