HomeSort by: relevance | last modified time | path
    Searched defs:TDT (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
NSAPI.cpp 383 const TypedefType *TDT = T->getAs<TypedefType>();
384 if (TDT) {
385 QualType TDTTy = QualType(TDT, 0);
518 while (const TypedefType *TDT = T->getAs<TypedefType>()) {
521 TDT->getDecl()->getDeclName().getAsIdentifierInfo()->getName())
535 T = TDT->desugar();
575 while (const TypedefType *TDT = T->getAs<TypedefType>()) {
576 if (TDT->getDecl()->getDeclName().getAsIdentifierInfo() == II)
578 T = TDT->desugar();
ASTDiagnostic.cpp 370 TemplateDiffTypes &TDT = *reinterpret_cast<TemplateDiffTypes*>(Val);
372 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType));
374 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType));
376 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree,
377 TDT.PrintFromType, TDT.ElideType,
378 TDT.ShowColors, OS)) {
379 NeedQuotes = !TDT.PrintTree;
380 TDT.TemplateDiffUsed = true;
386 if (TDT.PrintTree
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Diagnostic.cpp 1016 TemplateDiffTypes TDT;
1017 TDT.FromType = getRawArg(ArgNo);
1018 TDT.ToType = getRawArg(ArgNo2);
1019 TDT.ElideType = getDiags()->ElideType;
1020 TDT.ShowColors = getDiags()->ShowColors;
1021 TDT.TemplateDiffUsed = false;
1022 intptr_t val = reinterpret_cast<intptr_t>(&TDT);
1030 TDT.PrintFromType = true;
1031 TDT.PrintTree = true;
1053 TDT.PrintTree = false
    [all...]

Completed in 16 milliseconds