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

References

tools/clang/include/clang/AST/ASTContext.h
 1705       return UnsignedLongLongTy;
tools/clang/include/clang/AST/BuiltinTypes.def
   93 UNSIGNED_TYPE(ULongLong, UnsignedLongLongTy)
tools/clang/lib/AST/ASTContext.cpp
 1230   InitBuiltinType(UnsignedLongLongTy,  BuiltinType::ULongLong);
 5866                                   LongLongTy, UnsignedLongLongTy };
 7889   case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
 9332     return UnsignedLongLongTy;
 9521       Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
tools/clang/lib/AST/FormatString.cpp
  408             return T == C.UnsignedLongLongTy ? Match : NoMatch;
tools/clang/lib/AST/PrintfFormatString.cpp
  544         return Ctx.UnsignedLongLongTy;
  555         return Ctx.UnsignedLongLongTy;
  557         return ArgType(Ctx.UnsignedLongLongTy, "unsigned __int64");
  564                    ? ArgType(Ctx.UnsignedLongLongTy, "unsigned __int64")
tools/clang/lib/AST/RecordLayoutBuilder.cpp
 1409     Context.UnsignedLongTy, Context.UnsignedLongLongTy
tools/clang/lib/AST/ScanfFormatString.cpp
  287           return ArgType::PtrTo(Ctx.UnsignedLongLongTy);
  289           return ArgType::PtrTo(ArgType(Ctx.UnsignedLongLongTy, "unsigned __int64"));
  299           return ArgType::PtrTo(Ctx.UnsignedLongLongTy);
tools/clang/lib/CodeGen/CGBuiltin.cpp
 1418     Types[Context.UnsignedLongLongTy] = "%llu";
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
 3829       getContext().UnsignedLongLongTy, getContext().Int128Ty,
tools/clang/lib/Sema/SemaChecking.cpp
 1629       return Flags.isUnsigned() ? Context.UnsignedLongLongTy
 1639       return Context.UnsignedLongLongTy;
tools/clang/lib/Sema/SemaDecl.cpp
16881     Context.UnsignedLongLongTy
17491       BestType = Context.UnsignedLongLongTy;
17494                            ? Context.UnsignedLongLongTy : Context.LongLongTy;
tools/clang/lib/Sema/SemaDeclCXX.cpp
14090           << ParamType << Context.UnsignedLongLongTy << Param->getSourceRange();
tools/clang/lib/Sema/SemaExpr.cpp
 3436       CookedTy = Context.UnsignedLongLongTy;
 3614       Ty = Context.UnsignedLongLongTy;
 3699             Ty = Context.UnsignedLongLongTy;
 3708         Ty = Context.UnsignedLongLongTy;
tools/clang/lib/Sema/SemaOverload.cpp
 2093       Context.LongLongTy, Context.UnsignedLongLongTy
 7952     ArithmeticTypes.push_back(S.Context.UnsignedLongLongTy);
tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  177       S.getASTContext().UnsignedLongLongTy, Align->getLocation());
tools/clang/lib/Sema/SemaType.cpp
 1406         Result = Context.UnsignedLongLongTy;
tools/clang/lib/Sema/TreeTransform.h
12914     SemaRef.Context.UnsignedLongLongTy, SemaRef.Context.UnsignedInt128Ty
tools/clang/lib/Serialization/ASTReader.cpp
 7294       T = Context.UnsignedLongLongTy;
tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
  577             Ctx.UnsignedLongLongTy == CanRetTy)))) {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
  310     return ast_ctx.UnsignedLongLongTy;
tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
  133     if (width == ast->getTypeSize(ast->UnsignedLongLongTy))
  135                           ast->UnsignedLongLongTy.getAsOpaquePtr());
tools/lldb/source/Symbol/ClangASTContext.cpp
  875     if (QualTypeMatchesBitSize(bit_size, ast, ast->UnsignedLongLongTy))
  877                           ast->UnsignedLongLongTy.getAsOpaquePtr());
 1172           if (QualTypeMatchesBitSize(bit_size, ast, ast->UnsignedLongLongTy))
 1173             return CompilerType(this, ast->UnsignedLongLongTy.getAsOpaquePtr());
 1199       if (QualTypeMatchesBitSize(bit_size, ast, ast->UnsignedLongLongTy))
 1200         return CompilerType(this, ast->UnsignedLongLongTy.getAsOpaquePtr());
 1987     return ast->UnsignedLongLongTy.getAsOpaquePtr();
 2302       if (bit_size == ast->getTypeSize(ast->UnsignedLongLongTy))
 2304                             ast->UnsignedLongLongTy.getAsOpaquePtr());
tools/lldb/unittests/Symbol/TestClangASTContext.cpp
  112                                    context->UnsignedLongLongTy));