Searched defs:TDT (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/AST/
H A DNSAPI.cpp287 const TypedefType *TDT = T->getAs<TypedefType>(); local
288 if (TDT) {
289 QualType TDTTy = QualType(TDT, 0);
377 while (const TypedefType *TDT = T->getAs<TypedefType>()) {
378 if (TDT->getDecl()->getDeclName().getAsIdentifierInfo() == II)
380 T = TDT->desugar();
H A DASTDiagnostic.cpp257 TemplateDiffTypes &TDT = *reinterpret_cast<TemplateDiffTypes*>(Val); local
259 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType));
261 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType));
263 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree,
264 TDT.PrintFromType, TDT.ElideType,
265 TDT.ShowColors, S)) {
266 NeedQuotes = !TDT.PrintTree;
267 TDT.TemplateDiffUsed = true;
273 if (TDT
[all...]
/external/clang/lib/Basic/
H A DDiagnostic.cpp841 TemplateDiffTypes TDT; local
842 TDT.FromType = getRawArg(ArgNo);
843 TDT.ToType = getRawArg(ArgNo2);
844 TDT.ElideType = getDiags()->ElideType;
845 TDT.ShowColors = getDiags()->ShowColors;
846 TDT.TemplateDiffUsed = false;
847 intptr_t val = reinterpret_cast<intptr_t>(&TDT);
855 TDT.PrintFromType = true;
856 TDT.PrintTree = true;
879 TDT
[all...]

Completed in 253 milliseconds