| /llvm-project-15.0.7/flang/test/Semantics/ |
| H A D | modfile17.f90 | 15 type :: defaulted(n1,n2,n4,n8) type 21 end type defaulted 22 type, extends(defaulted) :: extension(k5) 46 type(defaulted) :: x1248 51 type(defaulted(2)) :: x2484 56 type(defaulted(n8=2)) :: x1242 62 integer(kind=x11111%defaulted%cap%j1%kind) :: res29_1 68 integer(kind=x28418%defaulted%cap%j1%kind) :: res34_2 74 integer(kind=x84812%defaulted%cap%j1%kind) :: res39_8 80 integer(kind=x12482%defaulted%cap%j1%kind) :: res44_1
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | executable-parsers.cpp | 202 defaulted("," >> nonemptyList(Parser<CoarrayAssociation>{})), 203 defaulted("," >> nonemptyList(statOrErrmsg))) / 214 "END TEAM" >> defaulted(parenthesized(optionalList(statOrErrmsg))), 221 "CRITICAL" >> defaulted(parenthesized(optionalList(statOrErrmsg))))) 453 defaulted(parenthesized(optionalList(statOrErrmsg))))) in TYPE_PARSER() 461 defaulted("," >> nonemptyList(statOrErrmsg))))) in TYPE_PARSER() 466 defaulted(parenthesized(optionalList(statOrErrmsg))))) in TYPE_PARSER() 471 defaulted("," >> nonemptyList(statOrErrmsg)) / ")")) in TYPE_PARSER() 477 defaulted("," >> nonemptyList(statOrErrmsg)) / ")")) in TYPE_PARSER() 516 defaulted("," >> nonemptyList(Parser<LockStmt::LockStat>{})) / ")")) [all …]
|
| H A D | Fortran-parsers.cpp | 371 defaulted(parenthesized(nonemptyList(name))))) 564 defaulted(parenthesized(nonemptyList( 620 defaulted("," >> nonemptyList(Parser<AttrSpec>{})) / "::", 631 defaulted("," >> nonemptyList(Parser<AttrSpec>{})), 756 defaulted(maybe("::"_tok) >> in TYPE_PARSER() 916 "SAVE" >> defaulted(maybe("::"_tok) >> in TYPE_PARSER() 1093 defaulted( 1140 defaulted("," >> nonemptyList(Parser<AllocOpt>{})) / ")")) 1173 defaulted(nonemptyList(Parser<AllocateShapeSpec>{}) / ","), 1191 defaulted("," >> nonemptyList(statOrErrmsg)) / ")")) [all …]
|
| H A D | io-parsers.cpp | 161 defaulted("," >> nonemptyList(ioControlSpec)) / ")", inputItemList) || 165 defaulted("," >> nonemptyList(ioControlSpec)) / ")", 243 defaulted("," >> nonemptyList(ioControlSpec)) / ")", outputItemList) || 247 defaulted("," >> nonemptyList(ioControlSpec)) / ")", 256 "PRINT" >> format, defaulted("," >> nonemptyList(outputItem)))) 559 defaulted(formatItems / maybe(","_tok)), 561 construct<format::FormatSpecification>(defaulted(formatItems)))) 637 "D T" >> defaulted(charLiteralConstantWithoutKind), 638 defaulted(parenthesized(nonemptyList(scaleFactor)))))
|
| H A D | misc-parsers.h | 34 return defaulted(nonemptySeparated(p, ","_tok)); // [p-list] in optionalList()
|
| H A D | program-parsers.cpp | 260 defaulted("," >> 434 defaulted(parenthesized(optionalList(actualArgSpec)))))))
|
| H A D | expr-parsers.cpp | 443 defaulted(parenthesized(nonemptyList(Parser<BoundsSpec>{}))),
|
| /llvm-project-15.0.7/llvm/test/Bitcode/ |
| H A D | DITemplateParameter-5.0.ll | 47 ; upgraded to include defaulted flag. 60 ; CHECK: !DITemplateTypeParameter({{.*}} defaulted: true 61 !20 = !DITemplateTypeParameter(name: "T", type: !21, defaulted: true) 65 ; CHECK: !DITemplateValueParameter({{.*}} defaulted: true 66 !22 = !DITemplateValueParameter(name: "i", type: !10, defaulted: true, value: i32 3)
|
| /llvm-project-15.0.7/llvm/test/Assembler/ |
| H A D | DIDefaultTemplateParam.ll | 58 ; CHECK: 20 = !DITemplateTypeParameter({{.*}}, defaulted: true 59 !20 = !DITemplateTypeParameter(name: "T", type: !21, defaulted: true) 62 ; CHECK: 22 = !DITemplateValueParameter({{.*}}, defaulted: true 63 !22 = !DITemplateValueParameter(name: "i", type: !10, defaulted: true, value: i32 3)
|
| /llvm-project-15.0.7/clang/test/SemaObjCXX/ |
| H A D | arc-0x.mm | 124 … expected-warning {{explicitly defaulted default constructor is implicitly deleted}} expected-note… 125 …t; // expected-warning {{explicitly defaulted destructor is implicitly deleted}} expected-note {{e… 126 …/ expected-warning {{explicitly defaulted copy constructor is implicitly deleted}} expected-note 2… 127 …U1(U1 &&) = default; // expected-warning {{explicitly defaulted move constructor is implicitly del… 128 …pected-warning {{explicitly defaulted copy assignment operator is implicitly deleted}} expected-no… 129 …U1 & operator=(U1 &&) = default; // expected-warning {{explicitly defaulted move assignment operat… 153 // ObjC pointer fields in anonymous union fields delete the defaulted special 248 // operators since defaulted move constructors and assignment operators that are
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/ |
| H A D | use-equals-default.rst | 7 default;``. The explicitly defaulted function declarations enable more 9 defaulted functions as trivial.
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | CXXRecordDeclDefinitionBits.def | 145 /// These flags are \c true if a defaulted corresponding special 155 /// These flags are \c true if an implicit defaulted corresponding 199 /// True if this class has a (possibly implicit) defaulted default 203 /// True if a defaulted default constructor for this class would 213 /// True if a defaulted destructor for this class would be constexpr. 224 /// explicitly deleted or defaulted).
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/ |
| H A D | special-member-functions.rst | 13 and it is advised that all five are defaulted or explicitly defined. 29 defaulted destructor. An example for such a class is:
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/performance/ |
| H A D | trivially-destructible.rst | 7 defaulted destructor declarations.
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/X86/ |
| H A D | debug-info-template-parameter.ll | 86 !20 = !DITemplateTypeParameter(name: "T", type: !21, defaulted: true) 88 !22 = !DITemplateValueParameter(name: "i", type: !10, defaulted: true, value: i32 3)
|
| /llvm-project-15.0.7/clang/test/Analysis/inlining/ |
| H A D | path-notes.cpp | 59 namespace defaulted { namespace
|
| /llvm-project-15.0.7/clang/test/SemaOpenCLCXX/ |
| H A D | addrspace-constructors.clcpp | 57 …constexpr W() __constant = default; // expected-error {{defaulted definition of default constructo…
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | DiagnosticSerializationKinds.td | 191 "is %select{not defaulted|defaulted}6|" 248 "is %select{not defaulted|defaulted}4|"
|
| H A D | DiagnosticSemaKinds.td | 1923 "in defaulted %sub{select_defaulted_comparison_kind}0 for %1 " 9201 // C++11 defaulted functions 9218 "the parameter for an explicitly-defaulted move " 9221 "the parameter for this explicitly-defaulted copy " 9228 "defaulted definition of %sub{select_special_member_kind}0 " 9253 // C++20 defaulted comparisons 9264 "comparison operator template cannot be defaulted">; 9272 "invalid parameter type for non-member defaulted" 9298 "defaulted %0 is implicitly deleted because " 9301 "defaulted %0 is implicitly deleted because " [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | DebugInfoFlags.def | 91 // for defaulted functions
|
| /llvm-project-15.0.7/libcxx/docs/DesignDocs/ |
| H A D | ExtendedCXX03Support.rst | 28 * defaulted and deleted Functions.
|
| /llvm-project-15.0.7/llvm/unittests/IR/ |
| H A D | MetadataTest.cpp | 2599 bool defaulted = false; in TEST_F() local 2601 auto *N = DITemplateTypeParameter::get(Context, Name, Type, defaulted); in TEST_F() 2606 EXPECT_EQ(N, DITemplateTypeParameter::get(Context, Name, Type, defaulted)); in TEST_F() 2608 EXPECT_NE(N, DITemplateTypeParameter::get(Context, "other", Type, defaulted)); in TEST_F() 2610 getBasicType("other"), defaulted)); in TEST_F() 2623 bool defaulted = false; in TEST_F() local 2633 defaulted, Value)); in TEST_F() 2637 Type, defaulted, Value)); in TEST_F() 2639 defaulted, Value)); in TEST_F() 2641 getBasicType("other"), defaulted, in TEST_F() [all …]
|
| /llvm-project-15.0.7/llvm/test/TableGen/ |
| H A D | DefaultOpsGlobalISel.td | 161 // Immediate used for first defaulted operand
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/COFF/ |
| H A D | function-options.ll | 21 ; C1Class() = default; // Note: Clang generates one defaulted ctor (FO = None) while MSVC doesn't. 50 ; union BUnion { BUnion() = default; }; // Note: Clang generates one defaulted ctor (FO = None) whi…
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | HLSLSupport.rst | 193 parameter lists when all template parameters are defaulted. This is an ambiguous
|