HomeSort by relevance Sort by last modified time
    Searched defs:TDT (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/AST/
NSAPI.cpp 287 const TypedefType *TDT = T->getAs<TypedefType>();
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();
ASTDiagnostic.cpp 257 TemplateDiffTypes &TDT = *reinterpret_cast<TemplateDiffTypes*>(Val);
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.PrintTree
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 841 TemplateDiffTypes TDT;
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.PrintTree = false
    [all...]

Completed in 28 milliseconds