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 294 const TypedefType *TDT = T->getAs<TypedefType>();
295 if (TDT) {
296 QualType TDTTy = QualType(TDT, 0);
392 while (const TypedefType *TDT = T->getAs<TypedefType>()) {
393 if (TDT->getDecl()->getDeclName().getAsIdentifierInfo() == II)
395 T = TDT->desugar();
ASTDiagnostic.cpp 274 TemplateDiffTypes &TDT = *reinterpret_cast<TemplateDiffTypes*>(Val);
276 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType));
278 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType));
280 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree,
281 TDT.PrintFromType, TDT.ElideType,
282 TDT.ShowColors, OS)) {
283 NeedQuotes = !TDT.PrintTree;
284 TDT.TemplateDiffUsed = true;
290 if (TDT.PrintTree
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 834 TemplateDiffTypes TDT;
835 TDT.FromType = getRawArg(ArgNo);
836 TDT.ToType = getRawArg(ArgNo2);
837 TDT.ElideType = getDiags()->ElideType;
838 TDT.ShowColors = getDiags()->ShowColors;
839 TDT.TemplateDiffUsed = false;
840 intptr_t val = reinterpret_cast<intptr_t>(&TDT);
848 TDT.PrintFromType = true;
849 TDT.PrintTree = true;
871 TDT.PrintTree = false
    [all...]

Completed in 210 milliseconds