Home
last modified time | relevance | path

Searched refs:defaulted (Results 1 – 25 of 84) sorted by relevance

1234

/external/llvm-project/flang/test/Semantics/
Dmodfile17.f9015 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
/external/jackson-databind/src/test/java/com/fasterxml/jackson/failing/
DExternalTypeId96Test.java56 ExternalBeanWithDefault defaulted = MAPPER.readValue("{\"bean\":{\"value\":13}}", in testWithDefaultAndMissing() local
58 assertNotNull(defaulted); in testWithDefaultAndMissing()
59 assertNotNull(defaulted.bean); in testWithDefaultAndMissing()
60 assertSame(ValueBean.class, defaulted.bean.getClass()); in testWithDefaultAndMissing()
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
Dtest_lazy_sfinae.pass.cpp29 bool defaulted; member
30 CtorAssertsT() : defaulted(true) {} in CtorAssertsT()
32 constexpr CtorAssertsT(T) : defaulted(false) { in CtorAssertsT()
64 assert(std::get<1>(t).defaulted); in test_tuple_like_lazy_sfinae()
/external/llvm-project/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
Dtest_lazy_sfinae.pass.cpp30 bool defaulted; member
31 CtorAssertsT() : defaulted(true) {} in CtorAssertsT()
33 constexpr CtorAssertsT(T) : defaulted(false) { in CtorAssertsT()
65 assert(std::get<1>(t).defaulted); in test_tuple_like_lazy_sfinae()
/external/llvm-project/flang/lib/Parser/
Dexecutable-parsers.cpp201 defaulted("," >> nonemptyList(Parser<CoarrayAssociation>{})),
202 defaulted("," >> nonemptyList(statOrErrmsg))) /
213 "END TEAM" >> defaulted(parenthesized(optionalList(statOrErrmsg))),
220 "CRITICAL" >> defaulted(parenthesized(optionalList(statOrErrmsg)))))
452 defaulted(parenthesized(optionalList(statOrErrmsg))))) in TYPE_PARSER()
460 defaulted("," >> nonemptyList(statOrErrmsg))))) in TYPE_PARSER()
465 defaulted(parenthesized(optionalList(statOrErrmsg))))) in TYPE_PARSER()
470 defaulted("," >> nonemptyList(statOrErrmsg)) / ")")) in TYPE_PARSER()
476 defaulted("," >> nonemptyList(statOrErrmsg)) / ")")) in TYPE_PARSER()
482 defaulted("," >> nonemptyList(Parser<EventWaitStmt::EventWaitSpec>{})) / in TYPE_PARSER()
[all …]
DFortran-parsers.cpp362 defaulted(parenthesized(nonemptyList(name)))))
545 defaulted(parenthesized(nonemptyList(
601 defaulted("," >> nonemptyList(Parser<AttrSpec>{})) / "::",
610 declarationTypeSpec, defaulted("," >> nonemptyList(Parser<AttrSpec>{})),
735 defaulted(maybe("::"_tok) >> in TYPE_PARSER()
892 "SAVE" >> defaulted(maybe("::"_tok) >> in TYPE_PARSER()
925 defaulted(parenthesized(optionalList(implicitNameSpec)))))
994 construct<CommonStmt>("COMMON" >> defaulted("/" >> maybe(name) / "/"), in TYPE_PARSER()
1065 defaulted(
1094 defaulted("," >> nonemptyList(Parser<ImageSelectorSpec>{})) / "]"))
[all …]
Dio-parsers.cpp155 defaulted("," >> nonemptyList(ioControlSpec)) / ")", inputItemList) ||
159 defaulted("," >> nonemptyList(ioControlSpec)) / ")",
236 defaulted("," >> nonemptyList(ioControlSpec)) / ")", outputItemList) ||
240 defaulted("," >> nonemptyList(ioControlSpec)) / ")",
249 "PRINT" >> format, defaulted("," >> nonemptyList(outputItem))))
547 defaulted(formatItems / maybe(","_tok)),
549 construct<format::FormatSpecification>(defaulted(formatItems))))
618 "D" >> "T"_tok >> defaulted(charLiteralConstantWithoutKind),
619 defaulted(parenthesized(nonemptyList(scaleFactor)))))
Dmisc-parsers.h34 return defaulted(nonemptySeparated(p, ","_tok)); // [p-list] in optionalList()
/external/llvm-project/llvm/test/Bitcode/
DDITemplateParameter-5.0.ll47 ; 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)
/external/llvm-project/llvm/test/Assembler/
DDIDefaultTemplateParam.ll58 ; 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)
/external/llvm-project/clang/test/SemaObjCXX/
Darc-0x.mm124 … 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
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dmodernize-use-equals-default.rst7 default;``. The explicitly defaulted function declarations enable more
9 defaulted functions as trivial.
Dcppcoreguidelines-special-member-functions.rst13 and it is advised that all five are defaulted or explicitly defined.
29 defaulted destructor. An example for such a class is:
Dperformance-trivially-destructible.rst7 defaulted destructor declarations.
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/
DEnumAliasDeser2352Test.java84 MyEnum2352_3 defaulted = reader.readValue(quote("unknownValue")); in testEnumWithAliasAndDefaultForUnknownValueEnabled() local
85 assertEquals(MyEnum2352_3.B, defaulted); in testEnumWithAliasAndDefaultForUnknownValueEnabled()
DEnumAltIdTest.java209 MyEnum2352_3 defaulted = reader.readValue(quote("unknownValue")); in testEnumWithAliasAndDefaultForUnknownValueEnabled() local
210 assertEquals(MyEnum2352_3.B, defaulted); in testEnumWithAliasAndDefaultForUnknownValueEnabled()
/external/llvm-project/clang/include/clang/AST/
DCXXRecordDeclDefinitionBits.def138 /// These flags are \c true if a defaulted corresponding special
148 /// These flags are \c true if an implicit defaulted corresponding
192 /// True if this class has a (possibly implicit) defaulted default
196 /// True if a defaulted default constructor for this class would
206 /// True if a defaulted destructor for this class would be constexpr.
217 /// explicitly deleted or defaulted).
/external/llvm-project/llvm/test/DebugInfo/X86/
Ddebug-info-template-parameter.ll86 !20 = !DITemplateTypeParameter(name: "T", type: !21, defaulted: true)
88 !22 = !DITemplateValueParameter(name: "i", type: !10, defaulted: true, value: i32 3)
/external/libaom/libaom/build/cmake/
Dutil.cmake102 # The names of variables defaulted through this macro are added to
132 # The names of variables defaulted through this macro are added to
156 # The names of variables defaulted through this macro are added to
/external/clang/test/Analysis/inlining/
Dpath-notes.cpp59 namespace defaulted { namespace
/external/llvm-project/clang/test/Analysis/inlining/
Dpath-notes.cpp59 namespace defaulted { namespace
/external/freetype/docs/
DINSTALL.MAC11 10.5. In previous versions of Mac OS X, this defaulted to 10.1. If
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDebugInfoFlags.def91 // for defaulted functions
/external/llvm-project/llvm/include/llvm/IR/
DDebugInfoFlags.def91 // for defaulted functions
/external/llvm-project/clang/include/clang/Basic/
DDiagnosticSerializationKinds.td196 "is %select{not defaulted|defaulted}6|"
267 "is %select{not defaulted|defaulted}4|"

1234