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

References

tools/clang/include/clang/AST/BuiltinTypes.def
  210 FLOATING_TYPE(LongDouble, LongDoubleTy)
tools/clang/lib/AST/ASTContext.cpp
 1235   InitBuiltinType(LongDoubleTy,        BuiltinType::LongDouble);
 1332   LongDoubleComplexTy = getComplexType(LongDoubleTy);
 5725   case LongDoubleRank: return LongDoubleTy;
 9504       Type = Context.LongDoubleTy;
10230     return LongDoubleTy;
tools/clang/lib/AST/PrintfFormatString.cpp
  589       return Ctx.LongDoubleTy;
tools/clang/lib/AST/ScanfFormatString.cpp
  325           return ArgType::PtrTo(Ctx.LongDoubleTy);
tools/clang/lib/CodeGen/CGBuiltin.cpp
 1424     Types[Context.LongDoubleTy] = "%Lf";
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
 3832       getContext().LongDoubleTy,       getContext().Float128Ty,
tools/clang/lib/CodeGen/TargetInfo.cpp
 2715     } else if (ET == getContext().LongDoubleTy) {
 3638           getContext().LongDoubleTy)
tools/clang/lib/Sema/SemaDeclCXX.cpp
14085           << ParamType << Context.LongDoubleTy << Param->getSourceRange();
tools/clang/lib/Sema/SemaExpr.cpp
 1124                                 RHSElemType == S.Context.LongDoubleTy);
 1125   Float128AndLongDouble |= (LHSElemType == S.Context.LongDoubleTy &&
 1132     (&S.Context.getFloatTypeSemantics(S.Context.LongDoubleTy) ==
 3431       CookedTy = Context.LongDoubleTy;
 3568       Ty = Context.LongDoubleTy;
tools/clang/lib/Sema/SemaOverload.cpp
 1822                                     ToType == S.Context.LongDoubleTy) ||
 1823                                    (FromType == S.Context.LongDoubleTy &&
 1826           (&S.Context.getFloatTypeSemantics(S.Context.LongDoubleTy) ==
 7938     ArithmeticTypes.push_back(S.Context.LongDoubleTy);
tools/clang/lib/Sema/SemaType.cpp
 1492       Result = Context.LongDoubleTy;
tools/clang/lib/Serialization/ASTReader.cpp
 7330       T = Context.LongDoubleTy;
tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
  575             Ctx.LongDoubleTy == CanRetTy ||
tools/lldb/source/Symbol/ClangASTContext.cpp
  904     if (QualTypeMatchesBitSize(bit_size, ast, ast->LongDoubleTy))
  906                           ast->LongDoubleTy.getAsOpaquePtr());
 1092           QualTypeMatchesBitSize(bit_size, ast, ast->LongDoubleTy))
 1093         return CompilerType(this, ast->LongDoubleTy.getAsOpaquePtr());
 1099       if (QualTypeMatchesBitSize(bit_size, ast, ast->LongDoubleTy))
 1100         return CompilerType(this, ast->LongDoubleTy.getAsOpaquePtr());
 2001     return ast->LongDoubleTy.getAsOpaquePtr();
 4946     else if (bit_size == ast->getTypeSize(ast->LongDoubleTy))
 4947       return ast->getFloatTypeSemantics(ast->LongDoubleTy);
tools/lldb/unittests/Symbol/TestClangASTContext.cpp
   85                                    context->LongDoubleTy));