Home
last modified time | relevance | path

Searched refs:TDT (Results 1 – 15 of 15) sorted by relevance

/external/clang/lib/Basic/
DDiagnostic.cpp865 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/
DDiagnostic.cpp1016 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/
DNSAPI.cpp395 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()
DASTDiagnostic.cpp339 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/
DNSAPI.cpp383 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()
DASTDiagnostic.cpp370 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()
DQualTypeNames.cpp323 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/
DAddUsing.cpp294 if (const auto *TDT = in prepare() local
296 MustInsertAfterLoc = TDT->getDecl()->getBeginLoc(); in prepare()
/external/clang/lib/Tooling/Core/
DQualTypeNames.cpp339 if (const auto *TDT = dyn_cast<TypedefType>(TypePtr)) { in createNestedNameSpecifierForScopeOf() local
340 Decl = TDT->getDecl(); in createNestedNameSpecifierForScopeOf()
/external/llvm-project/clang/tools/libclang/
DCXIndexDataConsumer.cpp347 if (const TypedefType *TDT = T->getAs<TypedefType>()) { in CXXBasesListInfo() local
348 BaseD = TDT->getDecl(); in CXXBasesListInfo()
/external/clang/tools/libclang/
DCXIndexDataConsumer.cpp344 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/
D2013-1_UNLOCODE_CodeListPart2.csv4871 ,"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",,,
D2013-1_UNLOCODE_CodeListPart3.csv12484 ,"US","TDT","Chester Depot","Chester Depot","VT","--3-----","RL","1201",,"4316N 07235W",
28473 ,"ZA","TDT","Tanda Tula","Tanda Tula",,"---4----","AI","0001",,,
D2013-1_UNLOCODE_CodeListPart1.csv22400 ,"DE","TDT","Neustadt","Neustadt","BE","--3-----","RQ","0901",,,
/external/one-true-awk/testdir/
Dfunstack.in13251 @Article{Wegbreit:1974:TDT,