/external/clang/lib/Basic/ |
D | Diagnostic.cpp | 865 TemplateDiffTypes TDT; in FormatDiagnostic() local 866 TDT.FromType = getRawArg(ArgNo); in FormatDiagnostic() 867 TDT.ToType = getRawArg(ArgNo2); in FormatDiagnostic() 868 TDT.ElideType = getDiags()->ElideType; in FormatDiagnostic() 869 TDT.ShowColors = getDiags()->ShowColors; in FormatDiagnostic() 870 TDT.TemplateDiffUsed = false; in FormatDiagnostic() 871 intptr_t val = reinterpret_cast<intptr_t>(&TDT); in FormatDiagnostic() 879 TDT.PrintFromType = true; in FormatDiagnostic() 880 TDT.PrintTree = true; in FormatDiagnostic() 902 TDT.PrintTree = false; in FormatDiagnostic() [all …]
|
/external/llvm-project/clang/lib/Basic/ |
D | Diagnostic.cpp | 1016 TemplateDiffTypes TDT; in FormatDiagnostic() local 1017 TDT.FromType = getRawArg(ArgNo); in FormatDiagnostic() 1018 TDT.ToType = getRawArg(ArgNo2); in FormatDiagnostic() 1019 TDT.ElideType = getDiags()->ElideType; in FormatDiagnostic() 1020 TDT.ShowColors = getDiags()->ShowColors; in FormatDiagnostic() 1021 TDT.TemplateDiffUsed = false; in FormatDiagnostic() 1022 intptr_t val = reinterpret_cast<intptr_t>(&TDT); in FormatDiagnostic() 1030 TDT.PrintFromType = true; in FormatDiagnostic() 1031 TDT.PrintTree = true; in FormatDiagnostic() 1053 TDT.PrintTree = false; in FormatDiagnostic() [all …]
|
/external/clang/lib/AST/ |
D | NSAPI.cpp | 395 const TypedefType *TDT = T->getAs<TypedefType>(); in getNSNumberFactoryMethodKind() local 396 if (TDT) { in getNSNumberFactoryMethodKind() 397 QualType TDTTy = QualType(TDT, 0); in getNSNumberFactoryMethodKind() 490 while (const TypedefType *TDT = T->getAs<TypedefType>()) { in GetNSIntegralKind() local 493 TDT->getDecl()->getDeclName().getAsIdentifierInfo()->getName()) in GetNSIntegralKind() 507 T = TDT->desugar(); in GetNSIntegralKind() 547 while (const TypedefType *TDT = T->getAs<TypedefType>()) { in isObjCTypedef() local 548 if (TDT->getDecl()->getDeclName().getAsIdentifierInfo() == II) in isObjCTypedef() 550 T = TDT->desugar(); in isObjCTypedef()
|
D | ASTDiagnostic.cpp | 339 TemplateDiffTypes &TDT = *reinterpret_cast<TemplateDiffTypes*>(Val); in FormatASTNodeDiagnosticArgument() local 341 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType)); in FormatASTNodeDiagnosticArgument() 343 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType)); in FormatASTNodeDiagnosticArgument() 345 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree, in FormatASTNodeDiagnosticArgument() 346 TDT.PrintFromType, TDT.ElideType, in FormatASTNodeDiagnosticArgument() 347 TDT.ShowColors, OS)) { in FormatASTNodeDiagnosticArgument() 348 NeedQuotes = !TDT.PrintTree; in FormatASTNodeDiagnosticArgument() 349 TDT.TemplateDiffUsed = true; in FormatASTNodeDiagnosticArgument() 355 if (TDT.PrintTree) in FormatASTNodeDiagnosticArgument() 360 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType; in FormatASTNodeDiagnosticArgument()
|
/external/llvm-project/clang/lib/AST/ |
D | NSAPI.cpp | 383 const TypedefType *TDT = T->getAs<TypedefType>(); in getNSNumberFactoryMethodKind() local 384 if (TDT) { in getNSNumberFactoryMethodKind() 385 QualType TDTTy = QualType(TDT, 0); in getNSNumberFactoryMethodKind() 516 while (const TypedefType *TDT = T->getAs<TypedefType>()) { in GetNSIntegralKind() local 519 TDT->getDecl()->getDeclName().getAsIdentifierInfo()->getName()) in GetNSIntegralKind() 533 T = TDT->desugar(); in GetNSIntegralKind() 573 while (const TypedefType *TDT = T->getAs<TypedefType>()) { in isObjCTypedef() local 574 if (TDT->getDecl()->getDeclName().getAsIdentifierInfo() == II) in isObjCTypedef() 576 T = TDT->desugar(); in isObjCTypedef()
|
D | ASTDiagnostic.cpp | 370 TemplateDiffTypes &TDT = *reinterpret_cast<TemplateDiffTypes*>(Val); in FormatASTNodeDiagnosticArgument() local 372 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType)); in FormatASTNodeDiagnosticArgument() 374 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType)); in FormatASTNodeDiagnosticArgument() 376 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree, in FormatASTNodeDiagnosticArgument() 377 TDT.PrintFromType, TDT.ElideType, in FormatASTNodeDiagnosticArgument() 378 TDT.ShowColors, OS)) { in FormatASTNodeDiagnosticArgument() 379 NeedQuotes = !TDT.PrintTree; in FormatASTNodeDiagnosticArgument() 380 TDT.TemplateDiffUsed = true; in FormatASTNodeDiagnosticArgument() 386 if (TDT.PrintTree) in FormatASTNodeDiagnosticArgument() 391 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType; in FormatASTNodeDiagnosticArgument()
|
D | QualTypeNames.cpp | 323 if (const auto *TDT = dyn_cast<TypedefType>(TypePtr)) { in createNestedNameSpecifierForScopeOf() local 324 Decl = TDT->getDecl(); in createNestedNameSpecifierForScopeOf()
|
/external/llvm-project/clang-tools-extra/clangd/refactor/tweaks/ |
D | AddUsing.cpp | 294 if (const auto *TDT = in prepare() local 296 MustInsertAfterLoc = TDT->getDecl()->getBeginLoc(); in prepare()
|
/external/clang/lib/Tooling/Core/ |
D | QualTypeNames.cpp | 339 if (const auto *TDT = dyn_cast<TypedefType>(TypePtr)) { in createNestedNameSpecifierForScopeOf() local 340 Decl = TDT->getDecl(); in createNestedNameSpecifierForScopeOf()
|
/external/llvm-project/clang/tools/libclang/ |
D | CXIndexDataConsumer.cpp | 347 if (const TypedefType *TDT = T->getAs<TypedefType>()) { in CXXBasesListInfo() local 348 BaseD = TDT->getDecl(); in CXXBasesListInfo()
|
/external/clang/tools/libclang/ |
D | CXIndexDataConsumer.cpp | 344 if (const TypedefType *TDT = T->getAs<TypedefType>()) { in CXXBasesListInfo() local 345 BaseD = TDT->getDecl(); in CXXBasesListInfo()
|
/external/cldr/tools/java/org/unicode/cldr/util/data/external/ |
D | 2013-1_UNLOCODE_CodeListPart2.csv | 4871 ,"GB","TDT","Thames Ditton","Thames Ditton","SRY","--3-----","AF","9704",,, 15136 ,"IT","TDT","Tione di Trento","Tione di Trento","32","--3-----","RQ","0901",,"4602N 01043E", 17186 ,"JP","TDT","Tairadate","Tairadate","02","1-------","AF","9907",,,
|
D | 2013-1_UNLOCODE_CodeListPart3.csv | 12484 ,"US","TDT","Chester Depot","Chester Depot","VT","--3-----","RL","1201",,"4316N 07235W", 28473 ,"ZA","TDT","Tanda Tula","Tanda Tula",,"---4----","AI","0001",,,
|
D | 2013-1_UNLOCODE_CodeListPart1.csv | 22400 ,"DE","TDT","Neustadt","Neustadt","BE","--3-----","RQ","0901",,,
|
/external/one-true-awk/testdir/ |
D | funstack.in | 13251 @Article{Wegbreit:1974:TDT,
|