Home
last modified time | relevance | path

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

/external/clang/lib/Basic/
DDiagnostic.cpp834 TemplateDiffTypes TDT; in FormatDiagnostic() local
835 TDT.FromType = getRawArg(ArgNo); in FormatDiagnostic()
836 TDT.ToType = getRawArg(ArgNo2); in FormatDiagnostic()
837 TDT.ElideType = getDiags()->ElideType; in FormatDiagnostic()
838 TDT.ShowColors = getDiags()->ShowColors; in FormatDiagnostic()
839 TDT.TemplateDiffUsed = false; in FormatDiagnostic()
840 intptr_t val = reinterpret_cast<intptr_t>(&TDT); in FormatDiagnostic()
848 TDT.PrintFromType = true; in FormatDiagnostic()
849 TDT.PrintTree = true; in FormatDiagnostic()
871 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.cpp274 TemplateDiffTypes &TDT = *reinterpret_cast<TemplateDiffTypes*>(Val); in FormatASTNodeDiagnosticArgument() local
276 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType)); in FormatASTNodeDiagnosticArgument()
278 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType)); in FormatASTNodeDiagnosticArgument()
280 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree, in FormatASTNodeDiagnosticArgument()
281 TDT.PrintFromType, TDT.ElideType, in FormatASTNodeDiagnosticArgument()
282 TDT.ShowColors, OS)) { in FormatASTNodeDiagnosticArgument()
283 NeedQuotes = !TDT.PrintTree; in FormatASTNodeDiagnosticArgument()
284 TDT.TemplateDiffUsed = true; in FormatASTNodeDiagnosticArgument()
290 if (TDT.PrintTree) in FormatASTNodeDiagnosticArgument()
295 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType; in FormatASTNodeDiagnosticArgument()
/external/clang/tools/libclang/
DIndexingContext.cpp132 if (const TypedefType *TDT = T->getAs<TypedefType>()) { in CXXBasesListInfo() local
133 BaseD = TDT->getDecl(); in CXXBasesListInfo()