Home
last modified time | relevance | path

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

12345678910>>...40

/dports/devel/kdbg/kdbg-kdbg-3.0.0/kdbg/testprogs/
H A Dmultibrkpt.cpp5 struct Templated struct
8 Templated(T aval) : val(aval) { in Templated() argument
11 ~Templated() { in ~Templated() argument
22 struct MostDerived : Templated<int>, Templated<double> argument
24 MostDerived() : Templated<int>(12), Templated<double>(3.14) { in MostDerived()
31 Templated<int>::PrintV(); in PrintV()
32 Templated<double>::PrintV(); in PrintV()
44 void (Templated<int>::*pmf1)(); in main() local
45 void (Templated<double>::*pmf2)(); in main() local
51 pmf3 = &Templated<double>::PrintV; in main()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
H A 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()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/tools/extra/test/clang-tidy/checkers/
H A 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()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang-tools-extra/test/clang-tidy/checkers/
H A 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()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/tools/extra/test/clang-tidy/
H A 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()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang-tools-extra/test/clang-tidy/checkers/
H A 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()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/tools/extra/test/clang-tidy/checkers/
H A 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()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang-tools-extra/test/clang-tidy/checkers/
H A 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()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang-tools-extra/test/clang-tidy/checkers/
H A 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()
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/tools/extra/test/clang-tidy/
H A 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()
/dports/devel/llvm70/llvm-7.0.1.src/tools/clang/tools/extra/test/clang-tidy/
H A Dreadability-deleted-default.cpp61 template <typename T> class Templated {
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;
124 Templated<int>::InnerTemplated V2;
125 Templated<float>::InnerNotTemplated V3;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang-tools-extra/clang-move/
H A 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
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang-tools-extra/clang-move/
H A 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
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang-tools-extra/clang-move/
H A 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
/dports/devel/llvm12/llvm-project-12.0.1.src/clang-tools-extra/clang-move/
H A 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
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/tools/extra/clang-move/
H A 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
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang-tools-extra/clang-move/
H A 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
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/tools/extra/clang-move/
H A 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
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/tools/extra/clang-move/
H A 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
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang-tools-extra/clang-move/
H A 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
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang-tools-extra/clang-move/
H A 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
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang-tools-extra/clang-move/
H A 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
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang-tools-extra/clang-move/
H A 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
/dports/devel/llvm13/llvm-project-13.0.1.src/clang-tools-extra/clang-move/
H A 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
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/tools/extra/clang-move/
H A DClangMove.h36 bool Templated) { in reportDeclaration() argument
37 DeclarationList.emplace_back(DeclarationName, Type, Templated); in reportDeclaration()
41 Declaration(llvm::StringRef QName, llvm::StringRef Kind, bool Templated) in Declaration()
42 : QualifiedName(QName), Kind(Kind), Templated(Templated) {} in Declaration()
45 return std::tie(LHS.QualifiedName, LHS.Kind, LHS.Templated) ==
46 std::tie(RHS.QualifiedName, RHS.Kind, RHS.Templated);
50 bool Templated = false; // Whether the declaration is templated. member

12345678910>>...40