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

/external/clang/lib/AST/
H A DNSAPI.cpp395 const TypedefType *TDT = T->getAs<TypedefType>(); local
396 if (TDT) {
397 QualType TDTTy = QualType(TDT, 0);
490 while (const TypedefType *TDT = T->getAs<TypedefType>()) {
493 TDT->getDecl()->getDeclName().getAsIdentifierInfo()->getName())
507 T = TDT->desugar();
547 while (const TypedefType *TDT = T->getAs<TypedefType>()) {
548 if (TDT->getDecl()->getDeclName().getAsIdentifierInfo() == II)
550 T = TDT->desugar();
H A DASTDiagnostic.cpp339 TemplateDiffTypes &TDT = *reinterpret_cast<TemplateDiffTypes*>(Val); local
341 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType));
343 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType));
345 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree,
346 TDT.PrintFromType, TDT.ElideType,
347 TDT.ShowColors, OS)) {
348 NeedQuotes = !TDT.PrintTree;
349 TDT.TemplateDiffUsed = true;
355 if (TDT
[all...]
/external/clang/lib/Basic/
H A DDiagnostic.cpp865 TemplateDiffTypes TDT; local
866 TDT.FromType = getRawArg(ArgNo);
867 TDT.ToType = getRawArg(ArgNo2);
868 TDT.ElideType = getDiags()->ElideType;
869 TDT.ShowColors = getDiags()->ShowColors;
870 TDT.TemplateDiffUsed = false;
871 intptr_t val = reinterpret_cast<intptr_t>(&TDT);
879 TDT.PrintFromType = true;
880 TDT.PrintTree = true;
902 TDT
[all...]

Completed in 189 milliseconds