Home
last modified time | relevance | path

Searched refs:TDT (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/Basic/
DDiagnostic.cpp843 TemplateDiffTypes TDT; in FormatDiagnostic() local
844 TDT.FromType = getRawArg(ArgNo); in FormatDiagnostic()
845 TDT.ToType = getRawArg(ArgNo2); in FormatDiagnostic()
846 TDT.ElideType = getDiags()->ElideType; in FormatDiagnostic()
847 TDT.ShowColors = getDiags()->ShowColors; in FormatDiagnostic()
848 TDT.TemplateDiffUsed = false; in FormatDiagnostic()
849 intptr_t val = reinterpret_cast<intptr_t>(&TDT); in FormatDiagnostic()
857 TDT.PrintFromType = true; in FormatDiagnostic()
858 TDT.PrintTree = true; in FormatDiagnostic()
881 TDT.PrintTree = false; in FormatDiagnostic()
[all …]
/external/clang/lib/AST/
DNSAPI.cpp294 const TypedefType *TDT = T->getAs<TypedefType>(); in getNSNumberFactoryMethodKind() local
295 if (TDT) { in getNSNumberFactoryMethodKind()
296 QualType TDTTy = QualType(TDT, 0); in getNSNumberFactoryMethodKind()
392 while (const TypedefType *TDT = T->getAs<TypedefType>()) { in isObjCTypedef() local
393 if (TDT->getDecl()->getDeclName().getAsIdentifierInfo() == II) in isObjCTypedef()
395 T = TDT->desugar(); in isObjCTypedef()
DASTDiagnostic.cpp257 TemplateDiffTypes &TDT = *reinterpret_cast<TemplateDiffTypes*>(Val); in FormatASTNodeDiagnosticArgument() local
259 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType)); in FormatASTNodeDiagnosticArgument()
261 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType)); in FormatASTNodeDiagnosticArgument()
263 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree, in FormatASTNodeDiagnosticArgument()
264 TDT.PrintFromType, TDT.ElideType, in FormatASTNodeDiagnosticArgument()
265 TDT.ShowColors, OS)) { in FormatASTNodeDiagnosticArgument()
266 NeedQuotes = !TDT.PrintTree; in FormatASTNodeDiagnosticArgument()
267 TDT.TemplateDiffUsed = true; in FormatASTNodeDiagnosticArgument()
273 if (TDT.PrintTree) in FormatASTNodeDiagnosticArgument()
278 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType; in FormatASTNodeDiagnosticArgument()
/external/clang/tools/libclang/
DIndexingContext.cpp133 if (const TypedefType *TDT = T->getAs<TypedefType>()) { in CXXBasesListInfo() local
134 BaseD = TDT->getDecl(); in CXXBasesListInfo()