Home
last modified time | relevance | path

Searched refs:Templated (Results 1 – 22 of 22) sorted by relevance

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dreadability-deleted-default.cpp61 template <typename T> class Templated { class
64 Templated() = default;
65 Templated(Templated &&Other) = default;
66 Templated(const Templated &Other) = default;
67 Templated &operator=(Templated &&Other) = default;
68 Templated &operator=(const Templated &Other) = default;
123 Templated<const int> V1; in Foo()
124 Templated<int>::InnerTemplated V2; in Foo()
125 Templated<float>::InnerNotTemplated V3; in Foo()
/external/llvm-project/clang-tools-extra/clang-move/
DMove.h35 bool Templated) { in reportDeclaration() argument
36 DeclarationList.emplace_back(DeclarationName, Type, Templated); in reportDeclaration()
40 Declaration(llvm::StringRef QName, llvm::StringRef Kind, bool Templated) in Declaration()
41 : QualifiedName(QName), Kind(Kind), Templated(Templated) {} in Declaration()
44 return std::tie(LHS.QualifiedName, LHS.Kind, LHS.Templated) ==
45 std::tie(RHS.QualifiedName, RHS.Kind, RHS.Templated);
49 bool Templated = false; // Whether the declaration is templated. member
DMove.cpp883 bool Templated = Decl->isTemplated(); in onEndOfTranslationUnit() local
886 Reporter->reportDeclaration(QualifiedName, "Variable", Templated); in onEndOfTranslationUnit()
889 Reporter->reportDeclaration(QualifiedName, "Function", Templated); in onEndOfTranslationUnit()
892 Reporter->reportDeclaration(QualifiedName, "Class", Templated); in onEndOfTranslationUnit()
894 Reporter->reportDeclaration(QualifiedName, "Enum", Templated); in onEndOfTranslationUnit()
897 Reporter->reportDeclaration(QualifiedName, "TypeAlias", Templated); in onEndOfTranslationUnit()
/external/llvm-project/clang/test/PCH/
Drdar10830559.cpp17 class Templated class
37 friend class Templated< Bar::BarImpl >::s;
/external/clang/test/PCH/
Drdar10830559.cpp14 class Templated class
34 friend class Templated< Bar::BarImpl >::s;
/external/clang/test/SemaTemplate/
Dinstantiate-try-catch.cpp18 class Templated { class
30 …template class Templated<int>; // expected-note{{in instantiation of member function 'PR10232::Tem… variable
/external/llvm-project/clang/test/SemaTemplate/
Dinstantiate-try-catch.cpp18 class Templated { class
30 …template class Templated<int>; // expected-note{{in instantiation of member function 'PR10232::Tem… variable
/external/llvm-project/clang-tools-extra/clang-move/tool/
DClangMove.cpp144 llvm::outs() << " \"Templated\": " << (I->Templated ? "true" : "false") in main()
/external/llvm-project/clang-tools-extra/clangd/
DSemanticHighlighting.cpp55 if (auto *Templated = TD->getTemplatedDecl()) in kindForDecl() local
56 D = Templated; in kindForDecl()
/external/clang/test/SemaCXX/
Dcxx1y-deduced-return-type.cpp437 namespace Templated { namespace
/external/llvm-project/clang/lib/Sema/
DSemaOverload.cpp10696 static TemplateDecl *getDescribedTemplate(Decl *Templated) { in getDescribedTemplate() argument
10697 if (TemplateDecl *TD = Templated->getDescribedTemplate()) in getDescribedTemplate()
10704 static void DiagnoseBadDeduction(Sema &S, NamedDecl *Found, Decl *Templated, in DiagnoseBadDeduction() argument
10719 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
10728 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
10756 S.Diag(Templated->getLocation(), diag::note_ovl_candidate_underqualified) in DiagnoseBadDeduction()
10776 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
10799 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
10810 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
10822 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
[all …]
/external/clang/lib/Sema/
DSemaOverload.cpp9375 static TemplateDecl *getDescribedTemplate(Decl *Templated) { in getDescribedTemplate() argument
9376 if (TemplateDecl *TD = Templated->getDescribedTemplate()) in getDescribedTemplate()
9383 static void DiagnoseBadDeduction(Sema &S, NamedDecl *Found, Decl *Templated, in DiagnoseBadDeduction() argument
9398 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
9424 S.Diag(Templated->getLocation(), diag::note_ovl_candidate_underqualified) in DiagnoseBadDeduction()
9441 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
9452 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
9464 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
9473 DiagnoseArityMismatch(S, Found, Templated, NumArgs); in DiagnoseBadDeduction()
9477 S.Diag(Templated->getLocation(), in DiagnoseBadDeduction()
[all …]
/external/llvm-project/clang/test/SemaCXX/
Dcxx1y-deduced-return-type.cpp484 namespace Templated { namespace
/external/libcxx/utils/google-benchmark/
DREADME.md261 ### Templated benchmarks
262 Templated benchmarks work the same way: This example produces and consumes
636 ### Templated fixtures
/external/llvm-project/llvm/utils/benchmark/
DREADME.md249 ### Templated benchmarks
250 Templated benchmarks work the same way: This example produces and consumes
604 ### Templated fixtures
/external/llvm-project/libcxx/utils/google-benchmark/
DREADME.md261 ### Templated benchmarks
262 Templated benchmarks work the same way: This example produces and consumes
636 ### Templated fixtures
/external/eigen/doc/
DAsciiQuickReference.txt51 // Templated size versions are faster. Note that Matlab is 1-based (a size N
/external/google-benchmark/
DREADME.md283 [Templated Benchmarks](#templated-benchmarks)
653 ### Templated Benchmarks
727 #### Templated Fixtures
/external/llvm-project/mlir/docs/Rationale/
DUsageOfConst.md161 ### Templated accessors
/external/catch2/docs/
Drelease-notes.md107 * Templated tests will now compile with ICC (#1748)
112 * Templated tests no longer trigger `-Wunused-templates` (#1762)
222 * Templated test cases no longer check whether the provided types are unique (#1628)
/external/fmtlib/support/
DC++.sublime-syntax740 # Templated member function call
/external/rust/crates/clap/
DCHANGELOG.md1418 …* Add a Templated Help system. ([81e121ed](https://github.com/kbknapp/clap-rs/commit/81e121edd616…