/external/llvm-project/clang/test/CodeCompletion/ |
D | member-access.cpp | 216 struct Overloads { struct 224 void testLValue(Overloads& Ref) { in testLValue() 227 void testConstLValue(const Overloads& ConstRef) { in testConstLValue() 231 Overloads(). in testRValue() 233 void testXValue(Overloads& X) { in testXValue() 234 static_cast<Overloads&&>(X). in testXValue()
|
/external/llvm-project/libcxx/test/libcxx/utilities/meta/stress_tests/ |
D | stress_test_variant_overloads_impl.sh.cpp | 75 using Overloads = typename MakeOverloads< typedef 95 using Overloads = Overload<Types...>; typedef 101 using Overloads = std::__variant_detail::_MakeOverloads<Types...>; typedef 109 using T1 = TEST_NS::Overloads<REPEAT_1000(TEST_TYPE) TestType<1>, TestType<1>, int>;
|
/external/llvm-project/clang/test/Modules/ |
D | no-linkage.cpp | 15 static int Overloads; // expected-note {{candidate}} variable 40 use(Overloads); in use_things() 55 use(Overloads); // expected-error {{ambiguous}} in use_things_again()
|
/external/clang/test/Modules/ |
D | no-linkage.cpp | 15 static int Overloads; // expected-note {{candidate}} variable 40 use(Overloads); in use_things() 55 use(Overloads); // expected-error {{ambiguous}} in use_things_again()
|
/external/clang/test/Modules/Inputs/no-linkage/ |
D | decls.h | 10 void Overloads(); 11 void Overloads(int);
|
/external/llvm-project/clang/test/Modules/Inputs/no-linkage/ |
D | decls.h | 10 void Overloads(); 11 void Overloads(int);
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | Marshallers.h | 513 : Overloads(Callbacks.begin(), Callbacks.end()) {} 522 for (const auto &O : Overloads) { 541 bool Overload0Variadic = Overloads[0]->isVariadic(); 543 for (const auto &O : Overloads) { 551 unsigned Overload0NumArgs = Overloads[0]->getNumArgs(); 553 for (const auto &O : Overloads) { 562 for (const auto &O : Overloads) { 571 for (const auto &O : Overloads) { 579 std::vector<std::unique_ptr<MatcherDescriptor>> Overloads; 706 std::vector<MatcherDescriptor *> Overloads; [all …]
|
/external/clang/lib/Sema/ |
D | Sema.cpp | 1302 const OverloadExpr *Overloads = nullptr; in tryExprAsCall() local 1311 Overloads = FR.Expression; in tryExprAsCall() 1313 Overloads = dyn_cast<UnresolvedMemberExpr>(E.IgnoreParens()); in tryExprAsCall() 1319 if (Overloads) { in tryExprAsCall() 1320 for (OverloadExpr::decls_iterator it = Overloads->decls_begin(), in tryExprAsCall() 1321 DeclsEnd = Overloads->decls_end(); it != DeclsEnd; ++it) { in tryExprAsCall() 1400 static void noteOverloads(Sema &S, const UnresolvedSetImpl &Overloads, in noteOverloads() argument 1404 for (UnresolvedSetImpl::iterator It = Overloads.begin(), in noteOverloads() 1405 DeclsEnd = Overloads.end(); It != DeclsEnd; ++It) { in noteOverloads() 1424 const UnresolvedSetImpl &Overloads, in notePlausibleOverloads() argument [all …]
|
/external/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
D | Marshallers.h | 718 : Overloads(std::make_move_iterator(Callbacks.begin()), 728 for (const auto &O : Overloads) { 747 bool Overload0Variadic = Overloads[0]->isVariadic(); 749 for (const auto &O : Overloads) { 757 unsigned Overload0NumArgs = Overloads[0]->getNumArgs(); 759 for (const auto &O : Overloads) { 768 for (const auto &O : Overloads) { 776 for (const auto &O : Overloads) { 784 std::vector<std::unique_ptr<MatcherDescriptor>> Overloads; 1000 std::vector<std::unique_ptr<MatcherDescriptor>> Overloads; [all …]
|
/external/llvm-project/clang-tools-extra/clang-tidy/misc/ |
D | NewDeleteOverloadsCheck.cpp | 158 Overloads[RD].push_back(FD); in check() 167 for (const auto &RP : Overloads) { in onEndOfTranslationUnit()
|
D | NewDeleteOverloadsCheck.h | 23 Overloads; variable
|
/external/llvm-project/clang/lib/Sema/ |
D | Sema.cpp | 2166 const OverloadExpr *Overloads = nullptr; in tryExprAsCall() local 2175 Overloads = FR.Expression; in tryExprAsCall() 2177 Overloads = dyn_cast<UnresolvedMemberExpr>(E.IgnoreParens()); in tryExprAsCall() 2184 if (Overloads) { in tryExprAsCall() 2185 for (OverloadExpr::decls_iterator it = Overloads->decls_begin(), in tryExprAsCall() 2186 DeclsEnd = Overloads->decls_end(); it != DeclsEnd; ++it) { in tryExprAsCall() 2268 static void noteOverloads(Sema &S, const UnresolvedSetImpl &Overloads, in noteOverloads() argument 2272 for (UnresolvedSetImpl::iterator It = Overloads.begin(), in noteOverloads() 2273 DeclsEnd = Overloads.end(); It != DeclsEnd; ++It) { in noteOverloads() 2298 const UnresolvedSetImpl &Overloads, in notePlausibleOverloads() argument [all …]
|
/external/angle/src/compiler/translator/TranslatorMetalDirect/ |
D | SymbolEnv.h | 137 using Overloads = std::map<TemplateName, SigToFunc>; 206 Overloads mOverloads;
|
/external/llvm-project/clang-tools-extra/clangd/unittests/ |
D | LoggerTests.cpp | 18 TEST(ErrorTest, Overloads) { in TEST() argument
|
D | CodeCompleteTests.cpp | 1182 TEST(SignatureHelpTest, Overloads) { in TEST() argument
|
/external/llvm-project/clang/lib/Headers/openmp_wrappers/ |
D | cmath | 39 // Overloads not provided by the CUDA wrappers but by the CUDA system headers.
|
/external/llvm-project/llvm/tools/llvm-pdbutil/ |
D | MinimalTypeDumper.cpp | 478 CVType &CVR, MethodOverloadListRecord &Overloads) { in visitKnownRecord() argument 479 for (auto &M : Overloads.Methods) in visitKnownRecord()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | RecordName.cpp | 226 MethodOverloadListRecord &Overloads) { in visitKnownRecord() argument
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | RecordName.cpp | 228 MethodOverloadListRecord &Overloads) { in visitKnownRecord() argument
|
/external/llvm-project/libcxx/docs/ |
D | Cxx1zStatusPaperStatus.csv | 105 …wg21.link/P0574R1>`__","LWG","Algorithm Complexity Constraints and Parallel Overloads","Kona","",""
|
/external/clang/docs/ |
D | InternalsManual.rst | 1069 where present (see the section :ref:`Redeclarations and Overloads 1109 Redeclarations and Overloads
|
/external/llvm-project/clang/docs/ |
D | InternalsManual.rst | 1169 where present (see the section :ref:`Redeclarations and Overloads 1209 Redeclarations and Overloads
|
/external/doclava/res/assets/templates-sdk/assets/js/ |
D | android_3p-bundle.js | 2323 …t|Not|NotInheritable|NotOverridable|Object|On|Option|Optional|Or|OrElse|Overloads|Overridable|Over…
|