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

References

tools/clang/include/clang/AST/ASTContext.h
 1714       return LongLongTy;
tools/clang/include/clang/AST/BuiltinTypes.def
  119 SIGNED_TYPE(LongLong, LongLongTy)
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
   88         StateMgr(stateMgr), ArrayIndexTy(context.LongLongTy),
tools/clang/lib/AST/ASTContext.cpp
 1223   InitBuiltinType(LongLongTy,          BuiltinType::LongLong);
 5778     return 6 + (getIntWidth(LongLongTy) << 3);
 5866                                   LongLongTy, UnsignedLongLongTy };
 7888   case TargetInfo::SignedLongLong: return LongLongTy;
 9521       Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
tools/clang/lib/AST/FormatString.cpp
  410             return T == C.LongLongTy ? Match : NoMatch;
tools/clang/lib/AST/PrintfFormatString.cpp
  508         return Ctx.LongLongTy;
  520         return Ctx.LongLongTy;
  522         return ArgType(Ctx.LongLongTy, "__int64");
  529                    ? ArgType(Ctx.LongLongTy, "__int64")
  605         return ArgType::PtrTo(Ctx.LongLongTy);
tools/clang/lib/AST/ScanfFormatString.cpp
  247           return ArgType::PtrTo(Ctx.LongLongTy);
  249           return ArgType::PtrTo(ArgType(Ctx.LongLongTy, "__int64"));
  258           return ArgType::PtrTo(Ctx.LongLongTy);
  385           return ArgType::PtrTo(Ctx.LongLongTy);
  387           return ArgType::PtrTo(ArgType(Ctx.LongLongTy, "__int64"));
tools/clang/lib/CodeGen/CGBuiltin.cpp
 1417     Types[Context.LongLongTy] = "%lld";
tools/clang/lib/CodeGen/CodeGenTBAA.cpp
  139       return getTypeInfo(Context.LongLongTy);
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
 3693     OffsetFlagsTy = CGM.getContext().LongLongTy;
 3828       getContext().UnsignedLongTy,     getContext().LongLongTy,
tools/clang/lib/Sema/SemaChecking.cpp
 1630                                 : Context.LongLongTy;
 6490     TheCall->setType(Context.LongLongTy);
tools/clang/lib/Sema/SemaDecl.cpp
16877     Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy
17459         BestType = Context.LongLongTy;
17494                            ? Context.UnsignedLongLongTy : Context.LongLongTy;
tools/clang/lib/Sema/SemaExpr.cpp
 3697             Ty = Context.LongLongTy;
11102     assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
11104     return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
11107   if (TypeSize == Context.getTypeSize(Context.LongLongTy))
11108     return Context.getVectorType(Context.LongLongTy, VTy->getNumElements(),
14555     Ty = Context.LongLongTy;
tools/clang/lib/Sema/SemaOverload.cpp
 2093       Context.LongLongTy, Context.UnsignedLongLongTy
 7947     ArithmeticTypes.push_back(S.Context.LongLongTy);
tools/clang/lib/Sema/SemaType.cpp
 1387         Result = Context.LongLongTy;
tools/clang/lib/Serialization/ASTReader.cpp
 7315       T = Context.LongLongTy;
tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
  388     case kCFNumberLongLongType: T = Ctx.LongLongTy; break;
tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
  576             Ctx.LongLongTy == CanRetTy ||
tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
  487   QualType LongLongTy = ACtx.LongLongTy;
tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
  124   DefinedSVal V = getSValBuilder().makeIntVal(Val, getASTContext().LongLongTy);
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
  299     return ast_ctx.LongLongTy;
tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
  125     if (width == ast->getTypeSize(ast->LongLongTy))
  127                           ast->LongLongTy.getAsOpaquePtr());
tools/lldb/source/Symbol/ClangASTContext.cpp
  893     if (QualTypeMatchesBitSize(bit_size, ast, ast->LongLongTy))
  894       return CompilerType(clang_ast_context, ast->LongLongTy.getAsOpaquePtr());
 1116             QualTypeMatchesBitSize(bit_size, ast, ast->LongLongTy))
 1117           return CompilerType(this, ast->LongLongTy.getAsOpaquePtr());
 1146       if (QualTypeMatchesBitSize(bit_size, ast, ast->LongLongTy))
 1147         return CompilerType(this, ast->LongLongTy.getAsOpaquePtr());
 1985     return ast->LongLongTy.getAsOpaquePtr();
 2279       if (bit_size == ast->getTypeSize(ast->LongLongTy))
 2281                             ast->LongLongTy.getAsOpaquePtr());
tools/lldb/unittests/Symbol/TestClangASTContext.cpp
   90                                    context->LongLongTy));