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

Completed in 527 milliseconds